diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-12-11 19:38:28 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-12-11 20:27:40 +0100 |
commit | ff56aeefddaad2d37d3ea32626e1adf3960eaf26 (patch) | |
tree | f43b289db8073adc10a67607d6e043c18acd764d /src/op_mode | |
parent | 3296a10dc27d2fb1c79db07b26d62c8abb6a51bc (diff) | |
download | vyos-1x-ff56aeefddaad2d37d3ea32626e1adf3960eaf26.tar.gz vyos-1x-ff56aeefddaad2d37d3ea32626e1adf3960eaf26.zip |
sstp: T4384: initial implementation of SSTP client CLI
vyos@vyos# show interfaces sstpc
sstpc sstpc10 {
authentication {
password vyos
user vyos
}
server sstp.vyos.net
ssl {
ca-certificate VyOS-CA
}
}
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 |