For lines 8, 10, and 11 what should the IP's be?You're already root. You don't sudo
Should I replace the ip in line 8 with the internal IP of the server? The IP in line 11 with the IP of the openvpn jail? And line 10 with?
Code:
- port 10011
 - proto udp
 - dev tun
 - ca /mnt/openvpn/keys/ca.crt
 - cert /mnt/openvpn/keys/openvpn-server.crt
 - key /mnt/openvpn/keys/openvpn-server.key
 - dh /mnt/openvpn/keys/dh1024.pem
 - server 10.8.0.0 255.255.255.0 #Purple network
 - ifconfig-pool-persist ipp.txt
 - push "route 10.0.0.0 255.255.255.0" #Yellow network
 - route 10.0.0.14 255.255.255.0 10.8.0.1 #Routes traffic from the Yellow network side (10.0.0.14/24)
 - to the Purple network side (10.8.0.1/24)
 - #tls-auth /mnt/openvpn/keys/auth.key 0
 - #crl-verify /mnt/openvpn/keys/crl.pem
 - keepalive 10 120
 - group nobody
 - user nobody
 - comp-lzo
 - persist-key
 - persist-tun
 - verb 3