Port 8444 is the Chia blockchain full node P2P port. Chia nodes communicate on port 8444 to synchronize the blockchain, propagate transactions, and participate in consensus (proof-of-space-and-time). Port 8444 exposure is required for farming. The Chia RPC/wallet interface runs on port 8555 (localhost only).
Port Number
8444
Protocol
TCP
Service
Chia Blockchain Full Node
Range
IANA Registered (1024–49151)
Show sync status and connected peers on port 8444
chia show -s -cVerify port 8444 is active for P2P
chia show -s | grep 'Full Node Port'Verify RPC port binds to 127.0.0.1 (should NOT be 0.0.0.0)
ss -tnlp sport = :8555Audit: only 8444 should be reachable from outside
nmap -p 8444,8555,9256 targetchia show -s -c (shows connections on port 8444)
chia configure --set-farmer-peer host:8444
ufw allow 8444/tcpChia Network was founded by Bram Cohen (BitTorrent creator) in 2017 and launched mainnet in March 2021. Port 8444 was chosen as the P2P port. Chia uses proof-of-space-and-time instead of proof-of-work, storing cryptographic plots on hard drives rather than running GPUs. The blockchain uses a custom CLVM (Chialisp Virtual Machine) for smart contracts. Network peaked at 35 EiB of storage committed to farming.
Do I need port 8444 open to farm Chia?
Not strictly – your node can farm with only outbound connections. But opening port 8444 inbound means more peers connect to you (up to 40 inbound), improving sync speed, reducing missed signage points, and strengthening the network. For optimal farming rewards, port 8444 should be forwarded through your router/firewall.
Port 8444 vs 8555 – which is dangerous?
Port 8444 (P2P): safe to expose, serves only blockchain gossip protocol. Port 8555 (RPC): dangerous, provides full node control including block farming settings. Port 9256 (wallet RPC): critical, controls fund transfers, key export, and transaction signing. The rule is identical to Bitcoin: P2P port = public, RPC/wallet ports = localhost only.