Operating System Firewalls
After configuring your router, you must also configure your operating system's firewall to allow Autonomys Network traffic.
Quick Setup by OS
- Windows
- Linux
- macOS
Windows Firewall Configuration
Method 1: PowerShell (Recommended)
Run PowerShell as Administrator and execute:
# Space Acres users - only need these two
New-NetFirewallRule -DisplayName "Autonomys Consensus" `
-Direction Inbound -Protocol TCP -LocalPort 30333 -Action Allow
New-NetFirewallRule -DisplayName "Autonomys DSN" `
-Direction Inbound -Protocol TCP -LocalPort 30433 -Action Allow
# CLI Farmers - add this additional port
New-NetFirewallRule -DisplayName "Autonomys Farmer" `
-Direction Inbound -Protocol TCP -LocalPort 30533 -Action Allow
# Verify rules were created successfully
Get-NetFirewallRule -DisplayName "Autonomys*" |
Format-Table DisplayName, Enabled, Direction, Action
# Expected output:
# DisplayName Enabled Direction Action
# ----------- ------- --------- ------
# Autonomys Consensus True Inbound Allow
# Autonomys DSN True Inbound Allow
# Autonomys Farmer True Inbound Allow