diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2014-06-08 11:00:22 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2014-06-08 11:30:55 +0200 |
commit | 4175b68a175ddb06b68e1619dbff70ef3cda1bc9 (patch) | |
tree | 6dfd534e574e9aa94ccb966844dc02563adebd99 /net/openconnect/README | |
parent | 53f33536c02b1a7ad1f94536b414295b3fd3f24e (diff) |
openconnect: Added README file
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
Diffstat (limited to 'net/openconnect/README')
-rw-r--r-- | net/openconnect/README | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/net/openconnect/README b/net/openconnect/README new file mode 100644 index 000000000..8563d2b1c --- /dev/null +++ b/net/openconnect/README @@ -0,0 +1,30 @@ +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 _orig_ifname 'vpnc' + option _orig_bridge 'false' + option proto 'openconnect' + option server 'vpn.example.com' + option port '4443' + option username 'test' + option password 'secret' + option serverhash 'AE7FF6A0426F0A0CD0A02EB9EC3C5066FAEB0B25' + +The additional files are also used: +/etc/openconnect/user-cert-vpn-MYVPN.pem: The user certificate +/etc/openconnect/user-key-vpn-MYVPN.pem: The user private key +/etc/openconnect/ca-cert-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 -> AVPN 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, available as patch over luci at +https://github.com/nmav/luci-openconnect/tree/openconnect |