diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-12-11 20:27:50 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-12-11 20:27:50 +0100 |
commit | 4df8182dfb2e5988d333db1052bb4379b8326527 (patch) | |
tree | f43b289db8073adc10a67607d6e043c18acd764d /src/op_mode | |
parent | 15828b9e86f46ca7f5cfa06be59f87055c4e3fef (diff) | |
parent | ff56aeefddaad2d37d3ea32626e1adf3960eaf26 (diff) | |
download | vyos-1x-4df8182dfb2e5988d333db1052bb4379b8326527.tar.gz vyos-1x-4df8182dfb2e5988d333db1052bb4379b8326527.zip |
Merge branch 't4792-sstpc' into current
* t4792-sstpc:
sstp: T4384: initial implementation of SSTP client CLI
pppoe: T4384: remove unused import of leaf_node_changed
pppoe: xml: T4792: split "no-peer-dns" CLI node into building block
xml: ddns: T4792: split "server" CLI node into building block
Diffstat (limited to 'src/op_mode')
-rwxr-xr-x | src/op_mode/connect_disconnect.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/op_mode/connect_disconnect.py b/src/op_mode/connect_disconnect.py index 936c20bcb..d39e88bf3 100755 --- a/src/op_mode/connect_disconnect.py +++ b/src/op_mode/connect_disconnect.py @@ -41,7 +41,7 @@ def check_ppp_running(interface): def connect(interface): """ Connect dialer interface """ - if interface.startswith('ppp'): + if interface.startswith('pppoe') or interface.startswith('sstpc'): check_ppp_interface(interface) # Check if interface is already dialed if os.path.isdir(f'/sys/class/net/{interface}'): @@ -62,7 +62,7 @@ def connect(interface): def disconnect(interface): """ Disconnect dialer interface """ - if interface.startswith('ppp'): + if interface.startswith('pppoe') or interface.startswith('sstpc'): check_ppp_interface(interface) # Check if interface is already down |