diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2008-10-09 22:24:21 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2008-10-09 22:24:21 +0000 |
commit | 7fe7d6d5e654d2092f89d81b0e1627fb99eb1a74 (patch) | |
tree | 42f908c838a40c252943469fdf9326228be494cb /applications/luci-openvpn/root/etc/config | |
parent | 8815b6a7dd24a481606db03c5980bc310709a103 (diff) |
* luci/app/openvpn: controller, model and template updates
Diffstat (limited to 'applications/luci-openvpn/root/etc/config')
-rw-r--r-- | applications/luci-openvpn/root/etc/config/openvpn_recipes | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/applications/luci-openvpn/root/etc/config/openvpn_recipes b/applications/luci-openvpn/root/etc/config/openvpn_recipes index 0f2ee4ff8..94e879b91 100644 --- a/applications/luci-openvpn/root/etc/config/openvpn_recipes +++ b/applications/luci-openvpn/root/etc/config/openvpn_recipes @@ -16,7 +16,7 @@ config openvpn_recipe client_tun_ptp option _description "Simple client configuration for a routed point-to-point VPN" option _role "client" option dev "tun" - option remote "mypeer.dyndns.org" + list remote "mypeer.dyndns.org" option port "1194" option ifconfig "10.0.0.2 10.0.0.1" option secret "shared-secret.key" @@ -48,7 +48,7 @@ config openvpn_recipe client_tun option _role "client" option client "1" option dev "tun" - option remote "vpnserver.example.org 1194" + list remote "vpnserver.example.org 1194" option ca "ca.crt" option cert "my_client.crt" option key "my_client.key" @@ -84,7 +84,7 @@ config openvpn_recipe client_tap_bridge option _role "client" option client "1" option dev "tap" - option remote "vpnserver.example.org 1194" + list remote "vpnserver.example.org 1194" option ca "ca.crt" option cert "my_client.crt" option key "my_client.key" |