diff --git a/ipconnectivitychecker.ps1 b/ipconnectivitychecker.ps1 index fc2500d032a7beb472da11a21e4f22fbc66f8b6e..3e9e9d1bdcd6bb8d9ae526e720f2e515182cf802 100644 --- a/ipconnectivitychecker.ps1 +++ b/ipconnectivitychecker.ps1 @@ -55,6 +55,20 @@ foreach($ip in $ips){ echo "$($ip):$port $(testport $ip -p $port)"; } +echo "=== RUB Management ===" +$ips = @("134.147.97.101", "134.147.97.102", "134.147.97.103", "134.147.97.104", "134.147.97.105", "134.147.97.106", "134.147.97.107", "134.147.97.108", "134.147.97.109", "134.147.97.110", "134.147.97.111", "134.147.2.130", "134.147.2.131", "134.147.2.132", "134.147.2.133", "134.147.2.134", "134.147.2.135", "134.147.2.136", "134.147.2.137", "134.147.2.138", "134.147.2.139", "134.147.2.140") +$port ="4443"; +foreach($ip in $ips){ + echo "$($ip):$port $(testport $ip -p $port)"; +} + +echo "=== RUB Data ===" +$ips = @("134.147.98.197", "134.147.98.198", "134.147.98.199", "134.147.98.200", "134.147.98.201", "134.147.98.202", "134.147.98.203", "134.147.98.204", "134.147.98.205", "134.147.98.206", "134.147.98.207", "134.147.2.194", "134.147.2.195", "134.147.2.196", "134.147.2.197", "134.147.2.198", "134.147.2.199", "134.147.2.200", "134.147.2.201", "134.147.2.202", "134.147.2.203", "134.147.2.204") +$port ="4443"; +foreach($ip in $ips){ + echo "$($ip):$port $(testport $ip -p $port)"; +} + if($pipelineFails) { echo "IP connectivity check fails at least once" $Host.SetShouldExit(-1)