You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/the_nimbus_book/src/networking.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,7 +60,7 @@ If there are no `dir=in` ChronosStreams, incoming connections are not working.
60
60
61
61
## Set an explicit external IP
62
62
63
-
If you have a static public IP address, use the `--nat:extip:$EXT_IP_ADDRESS` option to pass it to the client, where `$EXT_IP_ADDRESS` is your public IP.
63
+
If you have a static public IP address, use the `--nat=extip:$EXT_IP_ADDRESS` option to pass it to the client, where `$EXT_IP_ADDRESS` is your public IP.
64
64
See [here](./networking.md#determine-your-public-ip-address) for how to determine your public IP address.
65
65
66
66
!!! note
@@ -71,7 +71,7 @@ See [here](./networking.md#determine-your-public-ip-address) for how to determin
71
71
The `--enr-auto-update` feature keeps your external IP address up to date based on information received from other peers on the network.
72
72
This option is useful with ISPs that assign IP addresses dynamically.
73
73
74
-
In practice this means relaunching the beacon node with `--enr-auto-update:true` (pass it as an option in the command line).
74
+
In practice this means relaunching the beacon node with `--enr-auto-update` (pass it as an option in the command line).
75
75
76
76
## Set up port forwarding
77
77
@@ -147,7 +147,7 @@ Use the [open ports tool](https://www.yougetsignal.com/tools/open-ports/) to che
147
147
-`Discovered new external address but ENR auto update is off...`
148
148
149
149
It's possible that your ISP has changed your IP address without you knowing.
150
-
The first thing to do it to try relaunching the beacon node with with `--enr-auto-update:true` (pass it as an option in the command line).
150
+
The first thing to do it to try relaunching the beacon node with with `--enr-auto-update` (pass it as an option in the command line).
151
151
152
152
If this doesn't fix the problem, the next thing to do is to check your external (public) IP address and detect open ports on your connection - you can use [this site](https://www.yougetsignal.com/tools/open-ports/).
153
153
Note that Nimbus `TCP` and `UDP` ports are both set to `9000` by default.
Copy file name to clipboardExpand all lines: docs/the_nimbus_book/src/troubleshooting.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,10 +30,10 @@ Peer count low, no new peers discovered...
30
30
31
31
Your node is finding it hard to find peers.
32
32
It's possible that you may be behind a firewall.
33
-
Try restarting your client and passing `--nat:extip:$EXT_IP_ADDRESS` as an option to `./run-mainnet-beacon-node.sh`, where `$EXT_IP_ADDRESS` is your real IP. For example, if your real IP address is `1.2.3.4`, you'd run:
33
+
Try restarting your client and passing `--nat=extip:$EXT_IP_ADDRESS` as an option to `./run-mainnet-beacon-node.sh`, where `$EXT_IP_ADDRESS` is your real IP. For example, if your real IP address is `1.2.3.4`, you'd run:
34
34
35
35
```
36
-
./run-mainnet-beacon-node.sh --nat:extip:1.2.3.4
36
+
./run-mainnet-beacon-node.sh --nat=extip:1.2.3.4
37
37
```
38
38
39
39
If this doesn't improve things, you may need to [set enr-auto-update](./networking.md#set-enr-auto-update) and/or [set up port forwarding](./networking.md#set-up-port-forwarding).
0 commit comments