openwrt-packages/net/openconnect
Nikos Mavrogiannopoulos 1a5a2dd446 openconnect: openconnect-wrapper would trap signals and send the correct one to server
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
2014-09-01 01:10:14 +02:00
..
files openconnect: openconnect-wrapper would trap signals and send the correct one to server 2014-09-01 01:10:14 +02:00
patches openconnect: added fix for handshake timeout 2014-07-26 10:13:46 +02:00
Config.in Added openconnect 2014-06-03 18:18:17 +02:00
Makefile openconnect: set config variable on teardown and correctly pass the password 2014-09-01 00:28:32 +02:00
README ocserv/openconnect: updated documentation on the luci components 2014-06-18 21:32:05 +02:00

README

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; see the luci-protocol-openconnect package.