diff options
author | Christian Pointner <equinox@anytun.org> | 2009-02-05 19:02:37 +0000 |
---|---|---|
committer | Christian Pointner <equinox@anytun.org> | 2009-02-05 19:02:37 +0000 |
commit | a4cab19e1cade3ef7dc867b481a7c00055bdd35d (patch) | |
tree | dd3cea48a1aac9105c1af8652af1ee85a84e4ff3 /openwrt/kamikaze/uanytun/files/uanytun.config | |
parent | added openwrt initscript and config (diff) |
moved uanytun-sslcrypt kamikaze package to default (uanytun)
Diffstat (limited to 'openwrt/kamikaze/uanytun/files/uanytun.config')
-rw-r--r-- | openwrt/kamikaze/uanytun/files/uanytun.config | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/openwrt/kamikaze/uanytun/files/uanytun.config b/openwrt/kamikaze/uanytun/files/uanytun.config new file mode 100644 index 0000000..e71bb9d --- /dev/null +++ b/openwrt/kamikaze/uanytun/files/uanytun.config @@ -0,0 +1,73 @@ +config "client1" + option disabled 0 + option username 'nobody' + option groupname 'nogroup' +# option chroot "/var/run/uanytun" + +# option interface '<ip-address>' +# option port '4444' +# option sender_id '1' + + option cipher 'aes-ctr' +# option cipher 'null' +# option cipher 'aes-ctr-128' +# option cipher 'aes-ctr-192' +# option cipher 'aes-ctr-256' + option auth_algo 'sha1' +# option auth_algo 'null' + +# option dev 'anytun0' + option type 'tun' + option ifconfig '192.168.123.1/24' + + option remote_host 'example.com' + option remote_port '4444' + + option window_size 0 + option mux 1 + +# option kd_prf 'null' +# option kd_prf 'aes-ctr' +# option kd_prf 'aes-ctr-128' +# option kd_prf 'aes-ctr-192' +# option kd_prf 'aes-ctr-256' +# option ld_kdr '0' +# option key '0123456789ABCDEF0123456789ABCDEF' +# option salt '0123456789ABCD0123456789ABCD' + option passphrase 'hello-world-one' + + +config "client2" + option disabled 1 + option username 'nobody' + option groupname 'nogroup' + + option cipher 'aes-ctr' + option auth_algo 'sha1' + option type 'tun' + option ifconfig '192.168.123.2/24' + + option remote_host 'example.com' + option remote_port '4444' + + option window_size 0 + option mux 2 + option passphrase 'hello-world-two' + + +config "client3" + option disabled 1 + option username 'nobody' + option groupname 'nogroup' + + option cipher 'aes-ctr' + option auth_algo 'sha1' + option type 'tun' + option ifconfig '192.168.123.3/24' + + option remote_host 'example.com' + option remote_port '4444' + + option window_size 0 + option mux 3 + option passphrase 'hello-world-three' |