diff --git a/apps/rego-tunnel/vpn_scripts/start.sh b/apps/rego-tunnel/vpn_scripts/start.sh index 3be8f24..bdd1997 100755 --- a/apps/rego-tunnel/vpn_scripts/start.sh +++ b/apps/rego-tunnel/vpn_scripts/start.sh @@ -28,8 +28,8 @@ get_windows_ip() { } get_container_ip() { - # Get container's external IP (tipi_main_network - eth1) - ip -4 addr show eth1 2>/dev/null | awk '/inet / {print $2}' | cut -d/ -f1 + # Get container's external IP (vpn_static-rego - eth0) + ip -4 addr show eth0 2>/dev/null | awk '/inet / {print $2}' | cut -d/ -f1 } (