计时器
Timekeepers run the Proof-of-Time chain and maintain the randomness beacon that secures the consensus chain. They require high-performance hardware and low-latency connections.
Network Architecture
Required Ports
Port | 协议 | Direction | 组件 | 作用 | Impact if Blocked |
---|---|---|---|---|---|
30333 | TCP | Inbound/Outbound | Node (Consensus + PoT) | Consensus chain P2P and Proof-of-Time coordination | Disconnected from PoT chain, cannot contribute to randomness beacon |
30433 | TCP | Inbound/Outbound | 节点 (DSN) | DSN communication for archival data | Reduced network participation |
9944 | TCP | Local only | Node RPC | Local management and monitoring | Never expose to internet |
Complete Setup Guide
Step 1: Router Configuration
Configure these port forwarding rules:
Service Name | External Port | Internal IP | Internal Port | 协议 |
---|---|---|---|---|
Autonomys-Consensus-PoT | 30333 | Your IP | 30333 | TCP |
Autonomys-DSN | 30433 | Your IP | 30433 | TCP |
Step 2: Firewall Configuration
- Linux
- Windows
UFW Configuration:
# Enable firewall
sudo ufw enable
# Add timekeeper ports
sudo ufw allow 30333/tcp comment 'Autonomys Consensus PoT'
sudo ufw allow 30433/tcp comment 'Autonomys DSN'
# RPC port - local only
sudo ufw allow from 127.0.0.1 to any port 9944 proto tcp comment 'Node RPC Local'
# Verify configuration
sudo ufw status numbered