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
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
(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!