here are the command lines for this portion:port 1194
proto udp
dev tun
ca /etc/openvpn/easy-rsa/2.0/keys/ca.crt
cert /etc/openvpn/easy-rsa/2.0/keys/cimsdeu.crt
key /etc/openvpn/easy-rsa/2.0/keys/cimsdeu.key
dh /etc/openvpn/easy-rsa/2.0/keys/dh1024.pem
server 10.8.0.0 255.255.255.0
keepalive 10 120
comp-lzo
persist-key
persist-tun
status openvpn-status.log
verb 3
Next I went and made sure that port 1194 was open. I am not sure but I feel like there is something with the IP addresses in the server.conf that is part of the problem (I am just as much of a novice on networking so I may be way off but when I pull up my router settings it gives me 192.168.1.0 which doesn't seem to have much in common with the sample server addresses).[root@Ismaros sample-config-files]# cp server.conf /etc/openvpn/
[root@Ismaros sample-config-files]# vi /etc/openvpn/server.conf
[root@Ismaros sample-config-files]# service openvpn start
Starting openvpn: [FAILED]
After opening the port I typed "# system-config-firewall" in the terminal and got the following messages:
[root@Ismaros sample-config-files]# system-config-firewall
(system-config-firewall:7211): GVFS-RemoteVolumeMonitor-WARNING **: cannot connect to the session bus: org.freedesktop.DBus.Error.NoReply: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.
(system-config-firewall:7211): GVFS-RemoteVolumeMonitor-WARNING **: cannot connect to the session bus: org.freedesktop.DBus.Error.NoReply: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.
(system-config-firewall:7211): GVFS-RemoteVolumeMonitor-WARNING **: cannot connect to the session bus: org.freedesktop.DBus.Error.NoReply: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.
Next I ran the server configuration and got the following:
I have been through the two books I have and the howto pieces on the web and am only just now starting to look through the forums but if anyone has any ideas I would greatly appreciate it. Thanks.[root@Ismaros sample-config-files]# openvpn server.conf
Thu Aug 4 12:52:36 2011 OpenVPN 2.1.1 x86_64-redhat-linux-gnu [SSL] [LZO2] [EPOLL] [PKCS11] built on Jan 5 2010
Thu Aug 4 12:52:36 2011 NOTE: your local LAN uses the extremely common subnet address 192.168.0.x or 192.168.1.x. Be aware that this might create routing conflicts if you connect to the VPN server from public locations such as internet cafes that use the same subnet.
Thu Aug 4 12:52:36 2011 NOTE: OpenVPN 2.1 requires '--script-security 2' or higher to call user-defined scripts or executables
Thu Aug 4 12:52:36 2011 Cannot open dh1024.pem for DH parameters: error:02001002:system library:fopen:No such file or directory: error:2006D080:BIO routines:BIO_new_file:no such file
Thu Aug 4 12:52:36 2011 Exiting
[root@Ismaros sample-config-files]#
Andy