Browse Source

Fix issue of gateway interface detection in the case of VPN usage

Lab-8916100448256 1 year ago
parent
commit
e725d58f7b
1 changed files with 1 additions and 2 deletions
  1. 1 2
      conf/ynh-hotspot

+ 1 - 2
conf/ynh-hotspot

@@ -236,8 +236,7 @@ if [ "$1" != restart ]; then
     ip4_nat_prefix=$(ynh_app_setting_get --app=$app --key=ip4_nat_prefix)
 
     old_gateway_interface=$(ynh_app_setting_get --app=$app --key=gateway_interface)
-    new_gateway_interface=$(ip route get 1.2.3.4 | awk '{ print $5; }')
-
+    new_gateway_interface=$(ip route get 1.2.3.4 | awk '$2 ~ /^dev$/ { print $3; } $4 ~ /^dev$/ { print $5; }')
     echo "OK"
 fi