Skip to content

Commit a0fee78

Browse files
author
EchoBT
committed
docs: add network requirements (port 9000/tcp)
1 parent ce793c3 commit a0fee78

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,23 @@ If validators run different versions:
8181

8282
**Do not disable Watchtower.** All validators must update at the same time to maintain consensus.
8383

84+
## Network Requirements
85+
86+
**Port 9000/tcp must be open** for P2P communication between validators.
87+
88+
```bash
89+
# Open port (ufw)
90+
sudo ufw allow 9000/tcp
91+
92+
# Or iptables
93+
sudo iptables -A INPUT -p tcp --dport 9000 -j ACCEPT
94+
```
95+
96+
| Port | Protocol | Usage |
97+
|------|----------|-------|
98+
| 9000/tcp | P2P (libp2p) | Validator communication (required) |
99+
| 8080/tcp | HTTP | RPC API (optional) |
100+
84101
## Configuration
85102

86103
| Variable | Description | Required |

0 commit comments

Comments
 (0)