Listening for ipython on all IP addresses?

When I start IPython / Jupyter Notebook, I get the following warnings:

WARNING: The notebook server is listening on all IP addresses and not using encryption. This is not recommended.
WARNING: The notebook server is listening on all IP addresses and not using authentication. This is highly insecure and not recommended.

What does it mean to listen on all IP addresses? And how to fix it?

+4
source share
1 answer

This means that someone knows your IP address and the port you used in jupyter will be able to visit your jupyter laptop. For example, if you connect to the Internet behind a router, other computers can visit your laptop via http: // [your_ip]: 8888 to visit your laptop. 8888 is the default jupyter port.

IP-, IP-, :

jupyter notebook --ip=x.x.x.x

x.x.x.x - IP, .

+1

Source: https://habr.com/ru/post/1628352/


All Articles