am trying to set up the OpenVPN, and am getting a siocdelrt: No Such Process alert. I've done everything according to the howto, but I'm not sure if I've missed something. The clients can't connect with a"No Server Vertification Method has been enabled" error.
Here is my server.conf config file:
port 1194
dev tap
tls-server
dh dh1024.pem
ca ca.crt
cert server.crt
key server.key
auth-user-pass-verify ./validate.sh via-env
client-disconnect ./logoff.sh
up ./openvpn.up
mode server
duplicate-cn
ifconfig 192.168.100.1 255.255.255.0
ifconfig-pool 192.168.100.100 192.168.100.200 255.255.255.0 # IP range for openvpn client
mtu-test
tun-mtu 1500
tun-mtu-extra 32
mssfix 1450
ping 10
ping-restart 120
push "ping 10"
push "ping-restart 60"
push "dhcp-option DOMAIN hseq.net" # push the DNS domain suffix
push "dhcp-option DNS 192.168.0.254" # push DNS entries to openvpn client
push "route 192.168.0.0 255.255.255.0 192.168.100.1" # add route to to protected network
comp-lzo
status-version 2
status openvpn-status.log
verb 3
Is there any more info required to troubleshoot?