mirror of
https://github.com/novatiq/packages.git
synced 2026-07-11 22:39:27 +01:00
9cb5b3864d
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
29 lines
1.1 KiB
Plaintext
29 lines
1.1 KiB
Plaintext
The openconnect client expects to be configured using the uci interface.
|
|
|
|
To setup a VPN connection, add the following to /etc/config/network:
|
|
|
|
config interface 'MYVPN'
|
|
option proto 'openconnect'
|
|
option server 'vpn.example.com'
|
|
option port '4443'
|
|
option username 'test'
|
|
option password 'secret'
|
|
option serverhash 'AE7FF6A0426F0A0CD0A02EB9EC3C5066FAEB0B25'
|
|
option authgroup 'DEFAULT'
|
|
|
|
The additional files are also used:
|
|
/etc/config/openconnect-user-cert-vpn-MYVPN.pem: The user certificate
|
|
/etc/config/openconnect-user-key-vpn-MYVPN.pem: The user private key
|
|
/etc/config/openconnect-ca-vpn-MYVPN.pem: The CA certificate (instead of serverhash)
|
|
|
|
After these are setup you can initiate the VPN using "ifup MYVPN", and
|
|
deinitialize it using ifdown. You may also use the luci web interface
|
|
(Network -> Interfaces -> MYVPN Connect).
|
|
|
|
Note that you need to configure the firewall to allow communication between
|
|
the MYVPN interface and lan.
|
|
|
|
|
|
There is a luci plugin to allow configuring an openconnect interface from
|
|
the web environment; see the luci-proto-openconnect package.
|