This site keeps track of all Chia Nodes participating on the Chia Network.
Each node has been verified to be listenting on port 8444.

There are currently 1313 known online nodes.

Here are 20 random nodes to get you started:

176.231.104.78
82.84.222.48
31.134.157.243
208.59.40.77
185.9.77.249
14.137.218.30
103.150.114.202
73.221.1.100
71.112.170.34
173.215.38.143
80.177.26.141
82.15.5.193
83.246.217.117
60.127.154.133
23.84.76.45
78.131.11.120
114.230.221.2
98.245.90.254
114.230.221.35
213.222.148.86

To add 20 random nodes to your Chia client, run the following commands:
Linux Terminal:
curl https://ChiaNodes.com | grep -Eo '[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}' | while read line; do timeout 2s chia peer full_node -a $line:8444 ;done

Windows Powershell:
Invoke-WebRequest -Uri 'https://ChiaNodes.com' | Select-String -Pattern '\b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\b' -AllMatches | %{ $_.Matches } | %{ $_.Value } | %{ Start-Sleep -Seconds 2; chia peer full_node -a $_":8444" }