-
Notifications
You must be signed in to change notification settings - Fork 257
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make it clear that the default port for ETH2 is 9000 udp/tcp #2421
Make it clear that the default port for ETH2 is 9000 udp/tcp #2421
Conversation
Update, the port is indeed 9000, see network.nim. Thanks for checking @jclapis. |
Thank you for pointing out that it is not clear what the default used port is. |
docs/the_nimbus_book/src/options.md
Outdated
@@ -44,8 +44,8 @@ The following options are available: | |||
addresses. | |||
--listen-address Listening address for the Ethereum LibP2P and Discovery v5 | |||
traffic. | |||
--tcp-port Listening TCP port for Ethereum LibP2P traffic. | |||
--udp-port Listening UDP port for node discovery. | |||
--tcp-port Override default listening TCP port 9000 TCP port for Ethereum LibP2P traffic. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As this is a dump of the --help
command, I wouldn't really alter the documentation here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@deme we can actually change the help docs in conf.nim
manually for the time being, until proper support is added in confutils
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yup, that was what I was implying on, rather change it there for now then just in these docs here.
I see. Do I understand from that conversation there is already a PR for it or should I do that? |
if you can update the help text in nimbus-eth2/beacon_chain/conf.nim Line 157 in f3fc551
|
@arnetheduck I just edited the descriptions in |
Hello team!
The only place where the default port is explicitly mentioned is in a troubleshooting section which is suboptimal for people trying to find the right ports for firewall configuration.
Please confirm that
9000
on bothudp/tcp
is the default, right now I am only going on that troubleshooting section.