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

Here are 20 random nodes to get you started:

73.83.115.60
76.82.225.151
209.252.169.94
93.159.184.83
70.188.130.47
86.233.124.191
99.240.28.26
192.228.172.164
189.130.160.137
92.9.55.29
142.126.34.232
66.8.144.151
208.111.73.196
45.138.43.10
176.139.37.122
77.117.167.237
185.19.1.58
24.77.201.151
158.174.146.209
162.231.223.157

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