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 1131 known online nodes.

Here are 20 random nodes to get you started:

176.193.71.242
114.35.174.76
78.130.255.170
99.229.187.13
74.120.204.26
88.170.200.81
93.41.149.232
178.63.183.123
83.215.53.12
125.176.198.16
91.107.85.244
78.131.11.120
20.190.193.98
24.196.236.14
92.247.4.30
66.43.9.253
122.116.240.33
96.73.65.233
95.83.124.234
71.60.131.83

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" }