Changes between Initial Version and Version 1 of Ticket #294, comment 4
- Timestamp:
- 06/24/13 19:29:43 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #294, comment 4
initial v1 1 1 Work has been keeping me away. Meanwhile, however, I have been trying the same openvpn config/setup on a different machine running FreeBSD 9.1-release, with no change in behavior. Different OS and different config of the OS, but OpenVPN 2.3.2 is still keeping the machine heavily stalled in terms of system/interrupt in the exact same way as on OpenBSD 5.2/5.3. 2 3 OpenVPN config, for what it's worth: 4 5 --- 6 7 daemon 8 server 192.168.128.0 255.255.255.0 9 port 5555 10 proto udp 11 dev tun 12 13 ca /etc/openvpn/ca.crt 14 cert /etc/openvpn/server.crt 15 key /etc/openvpn/server.key 16 dh /etc/openvpn/dh3072.pem 17 18 client-config-dir /etc/openvpn/clientcfg/ 19 20 push "dhcp-option DNS 208.67.222.222" 21 push "redirect-gateway def1" 22 23 cipher BF-CBC 24 keysize 256 25 comp-lzo 26 max-clients 5 27 connect-freq 3 3 28 user nobody 29 group nobody 30 persist-key 31 persist-tun 32 33 tun-mtu 1500 34 fragment 1390 35 mssfix 1390 36 keepalive 3 60 37 38 log /dev/null 39 status /dev/null 40 verb 3 41 mute 4 42 43 --- 44