Changes between Initial Version and Version 1 of Ticket #294, comment 4


Ignore:
Timestamp:
06/24/13 19:29:43 (11 years ago)
Author:
mattison
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #294, comment 4

    initial v1  
    11Work 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
     3OpenVPN config, for what it's worth:
     4
     5---
     6
     7daemon
     8server 192.168.128.0 255.255.255.0
     9port 5555
     10proto udp
     11dev tun
     12
     13ca /etc/openvpn/ca.crt
     14cert /etc/openvpn/server.crt
     15key /etc/openvpn/server.key
     16dh /etc/openvpn/dh3072.pem
     17
     18client-config-dir /etc/openvpn/clientcfg/
     19
     20push "dhcp-option DNS 208.67.222.222"
     21push "redirect-gateway def1"
     22
     23cipher BF-CBC
     24keysize 256
     25comp-lzo
     26max-clients 5
     27connect-freq 3 3
     28user nobody
     29group nobody
     30persist-key
     31persist-tun
     32
     33tun-mtu 1500
     34fragment 1390
     35mssfix 1390
     36keepalive 3 60
     37
     38log /dev/null
     39status /dev/null
     40verb 3
     41mute 4
     42
     43---
     44