mirror of
https://github.com/billz/raspap-webgui.git
synced 2023-10-10 13:37:24 +02:00
Improve active VPN detection
This commit is contained in:
parent
882535b130
commit
0886999055
@ -142,10 +142,10 @@ function ReadFirewallConf() {
|
|||||||
$conf["client-device"] = "";
|
$conf["client-device"] = "";
|
||||||
$conf["restricted-ips"] = "";
|
$conf["restricted-ips"] = "";
|
||||||
}
|
}
|
||||||
exec('ifconfig | grep -E -i "tun+"', $ret);
|
exec('ifconfig | grep -E -i "^tun[0-9]"', $ret);
|
||||||
$conf["openvpn-enable"] = !empty($ret);
|
$conf["openvpn-enable"] = !empty($ret);
|
||||||
unset($ret);
|
unset($ret);
|
||||||
exec('ifconfig | grep -E -i "wg+"', $ret);
|
exec('ifconfig | grep -E -i "^wg[0-9]"', $ret);
|
||||||
$conf["wireguard-enable"] = !empty($ret);
|
$conf["wireguard-enable"] = !empty($ret);
|
||||||
return $conf;
|
return $conf;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user