Sat, 06 Oct 2012 16:24:01 +0200
Update to new vendor software version and adjust patch code accordingly.
Unfortunately the vendor has apparently failed to properly test this
release which depends on missing object symbols in libsasl2.a(common.o):
undefined reference to `sasl_randcreate'
undefined reference to `sasl_mkchal'
undefined reference to `sasl_utf8verify'
undefined reference to `sasl_rand'
undefined reference to `sasl_churn'
undefined reference to `sasl_encode64'
undefined reference to `sasl_decode64'
undefined reference to `sasl_erasebuffer'
undefined reference to `sasl_randfree'
undefined reference to `sasl_strlower'
undefined reference to `get_fqhostname'
...yet to be patched.
michael@666 | 1 | ## |
michael@666 | 2 | ## openvpn.conf -- OpenVPN Server Configuration |
michael@666 | 3 | ## |
michael@666 | 4 | |
michael@666 | 5 | # use a dynamic tun(4) device |
michael@666 | 6 | dev tun |
michael@666 | 7 | |
michael@666 | 8 | # the remote peer |
michael@666 | 9 | remote 192.168.0.1 |
michael@666 | 10 | |
michael@666 | 11 | # 10.0.0.1 is the local VPN endpoint |
michael@666 | 12 | # 10.0.0.2 is the remote VPN endpoint |
michael@666 | 13 | ifconfig 10.0.0.1 10.0.0.2 |
michael@666 | 14 | |
michael@666 | 15 | # the pre-shared static key |
michael@666 | 16 | secret openvpn.key |
michael@666 | 17 |