1) OpenVPN on Ubuntu terminal sits there with no final return prompt (is this normal?) as you can see in a copy of the open VPN dialog below.
Yes, this is normal because you run client manually and it's running in foreground. To get the return prompt, you should use system init script (
/etc/init.d/openvpn start/stop/status) to start/stop/check status of openVPN client. (In this case you should remove/rename unneeded *.conf files fom /etc/openvpn/).
2) When I try to go to any web site with Firefox, I get a Server Not Found message. AFter that happens, the only way I know to connect using Firefox with this openVPN state is to reboot.2) When I try to go to any web site with Firefox, I get a Server Not Found message. AFter that happens, the only way I know to connect using Firefox with this openVPN state is to reboot.
You should define the DNS server that you're using by openVPN connection.
Try to add the following line into
/etc/openvpn/free_client.conf:
route DNS_IP 255.255.255.255 DEF_ROUTE_IPwhere
DNS_IP - your DNS server's IP (see /etc/resolv.conf)
and
DEF_ROUTE_IP - IP of your default router.
example:
route 192.168.1.77 255.255.255.255 192.168.1.1Also you may add in this file the line:
log /var/log/openvpn.log to log the openvpn's messages.