Installed OpenVPN behind school's VPN can SSH but no Web

This forum is for all inquiries relating to the installation of OpenVPN from source and with binaries.

Moderators: TinCanTech, TinCanTech, TinCanTech, TinCanTech, TinCanTech, TinCanTech

Forum rules
Please visit (and READ) the OpenVPN HowTo http://openvpn.net/howto prior to asking any questions in here!
Post Reply
jgassens
OpenVpn Newbie
Posts: 1
Joined: Sat Dec 21, 2013 4:33 pm

Installed OpenVPN behind school's VPN can SSH but no Web

Post by jgassens » Sat Dec 21, 2013 4:44 pm

Hi guys,

I'm basically a super noob to this. I've got OpenVPN running on a Raspi in my office at school so I can access some journals. I have to login to the school's VPN to SSH into the Raspi and I use Tunnelblick to connect to my VPN but once I connect with tunnelblick, I can't SSH or load web pages.

The kicker is that when I'm on campus (and connected to the real network) if I connect using Tunnelblick it works fine. It's only when I'm connected to their VPN trying to connect to my VPN that things go down hill.

What files would be helpful to diagnose this issue? Here is my ovpn file:

Code: Select all

dev tun
client
proto udp
remote 10.160.xxx.155 1194
resolv-retry infinite
nobind
persist-key
persist-tun
ca ca.crt
cert client1.crt
key client1.key
comp-lzo
verb 3
And here is my openvpn.conf file:

Code: Select all

dev tun
proto udp
port 1194
ca /etc/openvpn/easy-rsa/keys/ca.crt
cert /etc/openvpn/easy-rsa/keys/server.crt
key /etc/openvpn/easy-rsa/keys/server.key
dh /etc/openvpn/easy-rsa/keys/dh1024.pem
user nobody
group nogroup
server 10.8.0.0 255.255.255.0
persist-key
persist-tun
status /var/log/openvpn-status.log
verb 3
client-to-client
push "redirect-gateway def1"
#set the dns servers
push "dhcp-option DNS 8.8.8.8"
push "dhcp-option DNS 8.8.4.4"
log-append /var/log/openvpn
comp-lzo
Here is the log for the day
(when I tried to SSH into the Raspi while on both my school's VPN and connected by Tunnelblick) http://tny.cz/1e3ad59d

Any help would be appreciated!
Last edited by debbie10t on Sat Dec 21, 2013 5:20 pm, edited 2 times in total.
Reason: For privacy

Post Reply