source: freewrt/package/openvpn/Config.in@ 18c227bd

freewrt_2_0
Last change on this file since 18c227bd was 4f7135c, checked in by Markus Wigge <markus@…>, 17 years ago
  • added separate example configurations for client and server mode
  • added feature to enable management interface by menuconfig

git-svn-id: svn://www.freewrt.org/branches/freewrt_1_0@3775 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100644
File size: 1.8 KB
Line 
1
2config FWRT_PACKAGE_OPENVPN
3 prompt "openvpn........................... Open source VPN solution using SSL"
4 tristate
5 default n
6 select FWRT_PACKAGE_KMOD_TUN
7 help
8 Open Source VPN solution using SSL
9
10 http://openvpn.net/
11
12 Depends: kmod-tun, libpthread
13
14config FWRT_COMPILE_OPENVPN_WITH_SERVER
15 prompt "server support.................. enable to use OpenVPN as server"
16 bool
17 default y
18 depends FWRT_PACKAGE_OPENVPN
19
20config FWRT_COMPILE_OPENVPN_WITH_MANAGEMENT
21 prompt "enable management............... Enable management interface"
22 bool
23 default n
24 depends FWRT_COMPILE_OPENVPN_WITH_SERVER
25
26config FWRT_COMPILE_OPENVPN_WITH_HTTP
27 prompt "enable http proxy support....... allow tunneling through http-proxy"
28 bool
29 default y
30 depends FWRT_PACKAGE_OPENVPN
31
32config FWRT_COMPILE_OPENVPN_WITH_OPENSSL
33 prompt "enable openssl.................. encryption support"
34 bool
35 default y
36 depends FWRT_PACKAGE_OPENVPN
37 select FWRT_PACKAGE_LIBOPENSSL
38 help
39 if unsure say "y" you really want that!
40
41config FWRT_COMPILE_OPENVPN_WITH_LZO
42 prompt "enable lzo...................... Enable transparent compression"
43 bool
44 default y
45 depends FWRT_PACKAGE_OPENVPN
46 select FWRT_PACKAGE_LIBLZO
47
48config FWRT_COMPILE_OPENVPN_WITH_PASSWORD_SAVE
49 prompt "Enable password saving.......... allow to read passwords for PKCS12 from file"
50 bool
51 default y
52 depends FWRT_PACKAGE_OPENVPN
53
54config FWRT_COMPILE_OPENVPN_WITH_SMALL
55 prompt "Reduce executable size.......... disable OCC, usage message, and verb 4 parm list"
56 bool
57 default n
58 depends FWRT_PACKAGE_OPENVPN
59
60config FWRT_PACKAGE_OPENVPN_EASY_RSA
61 prompt "openvpn-easy-rsa................ simple shell scripts to manage a Certificate Authority"
62 tristate
63 default n
64 select FWRT_PACKAGE_OPENSSL_UTIL
65 depends FWRT_PACKAGE_OPENVPN
66 help
67 collection of shell scripts to manage a simple CA infrastructure
68
69 Depends: openpvn, openssl-util
70
Note: See TracBrowser for help on using the repository browser.