Domain Operator
Testnet
Domain operators run the execution layer of Autonomys Network, processing transactions and smart contracts in parallel domains.
Network Architecture
Required Ports
| Port | Протокол | Direction | Компонент | Назначение | Security Level |
|---|---|---|---|---|---|
| 30333 | TCP | Inbound/Outbound | Consensus Node | Consensus chain P2P | Public |
| 30334 | TCP | Inbound/Outbound | Domain Node | Domain execution P2P | Public |
| 30433 | TCP | Inbound/Outbound | Consensus Node | DSN communication | Public |
| 40333 | TCP | Inbound/Outbound | Domain Operator | Operator coordination | Public |
| 9944 | TCP | Local only | Consensus RPC | Node-operator communication | Private |
| 9945 | TCP | Local only | Domain RPC | Domain state queries | Private |
Critical Security
RPC ports (9944, 9945) must NEVER be exposed to the internet. These provide full control over your operator and could lead to stake slashing if compromised.
Complete Setup Guide
Step 1: Network Information
- Command Line
- Browser Method
# Get public IP
echo "Public IP: $(curl -s https://api.ipify.org)"
# Get local network info
ip addr show | grep "inet " | grep -v 127.0.0.1
ip route | grep default
# Test current connectivity
ping -c 4 1.1.1.1
- Visit whatismyip.com for public IP
- Access router admin panel (usually
192.168.1.1) - Note your computer's local IP from DHCP client list
Step 2: Router Configuration
Configure these port forwarding rules in your router:
| Service Name | External Port | Internal IP | Internal Port | Протокол |
|---|---|---|---|---|
| Autonomys-Consensus | 30333 | Your IP | 30333 | TCP |
| Autonomys-Domain | 30334 | Your IP | 30334 | TCP |
| Autonomys-DSN | 30433 | Your IP | 30433 | TCP |
| Autonomys-Operator | 40333 | Your IP | 40333 | TCP |