##// END OF EJS Templates
Merge pull request #6967 from regdoug/document-server-ports...
Kyle Kelley -
r19009:fc1fb5ad merge
parent child Browse files
Show More
@@ -107,6 +107,18 b' You can then start the notebook and access it later by pointing your browser'
107 to ``https://your.host.com:9999`` with ``ipython notebook
107 to ``https://your.host.com:9999`` with ``ipython notebook
108 --profile=nbserver``.
108 --profile=nbserver``.
109
109
110
111 Firewall Setup
112 ``````````````
113
114 To function correctly, the firewall on the computer running the ipython server must be
115 configured to allow connections from client machines on the ``c.NotebookApp.port``
116 port to allow connections to the web interface. The firewall must also allow
117 connections from 127.0.0.1 (localhost) on ports from 49152 to 65535.
118 These ports are used by the server to communicate with the notebook kernels.
119 The kernel communication ports are chosen randomly by ZeroMQ, and may require
120 multiple connections per kernel, so a large range of ports must be accessible.
121
110 Running with a different URL prefix
122 Running with a different URL prefix
111 -----------------------------------
123 -----------------------------------
112
124
General Comments 0
You need to be logged in to leave comments. Login now