How do I give permission to multiple ip addresses

Is it possible to specify multiple addresses in the jupyter_notebook_config.py , as in the example below?

c.NotebookApp.ip = ‘192.168.1.15 192.168.1.17’

How do I set it if possible?

Sorry I don’t see c.NotebookApp.ip setting anywhere in the docs. Did you mean to use NotebookApp.local_hostnames to allow remote access?

Reference: https://jupyter-notebook.readthedocs.io/en/stable/config.html#options

1 Like