From fbcc684e7cedb41686c660bb7ba3f3193477f10c Mon Sep 17 00:00:00 2001
From: "L. Ellenbeck" <ellenbeck@itc.rwth-aachen.de>
Date: Fri, 8 Nov 2024 10:39:00 +0100
Subject: [PATCH] RUB Ips

---
 ipconnectivitychecker.ps1 | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/ipconnectivitychecker.ps1 b/ipconnectivitychecker.ps1
index fc2500d..3e9e9d1 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)
-- 
GitLab