forked from Consensys/doc.teku
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add CLI option to disable built-in slashing protection for external signers. Signed-off-by: Byron Gravenorst <[email protected]> * Add instructions to connect to mainnet. Signed-off-by: Byron Gravenorst <[email protected]> * updating submodule to latest * Add instructions to connect to mainnet. Signed-off-by: Byron Gravenorst <[email protected]> * Fix markdown issue. Signed-off-by: Byron Gravenorst <[email protected]> * Add UPnP support. Signed-off-by: bgravenorst <[email protected]> * Fix markdown. Signed-off-by: bgravenorst <[email protected]> * Address tech review feedback. Signed-off-by: bgravenorst <[email protected]>
- Loading branch information
1 parent
fe0a287
commit 06205d7
Showing
3 changed files
with
75 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
--- | ||
description: Configuring NAT with Teku | ||
--- | ||
|
||
# Configuring NAT | ||
|
||
Use the [`--p2p-nat-method`](../../Reference/CLI/CLI-Syntax.md#p2p-nat-method) option to specify the | ||
NAT method. Options are [`NONE`](#none) and [`UPNP`](#upnp). | ||
|
||
You cannot change the NAT method while Teku is running. To change the NAT method restart the node | ||
with the [`--p2p-nat-method`](../../Reference/CLI/CLI-Syntax.md#p2p-nat-method) option. | ||
|
||
## UPnP | ||
|
||
Specify `UPNP` to quickly allow inbound peer connections without manual router configuration. Use | ||
UPnP in home or small office environments where a wireless router or modem provides NAT isolation. | ||
|
||
UPnP automatically detects if a node is running in a UPnP environment and provides port forwarding. | ||
UPnP might introduce delays during node startup, especially on networks without a UPnP gateway | ||
device. | ||
|
||
!!! tip | ||
|
||
UPnP support is often disabled by default in networking firmware. If disabled by default, you | ||
must explicitly enable UPnP support. | ||
|
||
## None | ||
|
||
Specify `NONE` to explicitly configure the external IP address and ports advertised using | ||
[`--p2p-advertised-ip`](../../Reference/CLI/CLI-Syntax.md#p2p-advertised-ip) and | ||
[`--p2p-advertised-port`](../../Reference/CLI/CLI-Syntax.md#p2p-advertised-port) for the P2P service. | ||
|
||
Manually configure your firewall to allow external hosts to create inbound connections to Teku. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters