We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce793c3 commit a0fee78Copy full SHA for a0fee78
README.md
@@ -81,6 +81,23 @@ If validators run different versions:
81
82
**Do not disable Watchtower.** All validators must update at the same time to maintain consensus.
83
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
101
## Configuration
102
103
| Variable | Description | Required |
0 commit comments