How can I connect to a VPN with a restrictive network?

0

I have recently relocated and the network I have been provided blocks every outgoing TCP port except for

80          (http)
443         (https)
465         (smtps?)
587         (submission)
993         (imaps)
25565       (minecraft?)
27014-27050 (steam?)

I have been trying to use PIA's VPN client which I assume is trying to use PPTP (correct me if I'm wrong). How can I connect to it?

In a possibly misguided attempt, I have tried using sshuttle to redirect all of my traffic. It still wouldn't let me connect to the VPN.

Jeffrey

Posted 2014-05-29T03:38:07.680

Reputation: 195

Have you checked UDP ports? OpenVPN uses UDP firstly (it can also use TCP, as a second best). – MariusMatutiae – 2014-05-29T15:03:09.837

@MariusMatutiae UDP ports appear to be open – Jeffrey – 2014-05-29T22:24:52.477

Answers

0

If outgoing VPN ports have been blocked and you need to connect to remote ports that can't be changed then you're pretty stuck. Our workplace does this and there's nothing I can do about it - they've given a valid security reason so I've got to lump it. Unless... Your VPN server is Microsoft and uses SSTP - this uses HTTPS to connect over the usually open port 443... Not many places have this due to the cost...

Kinnectus

Posted 2014-05-29T03:38:07.680

Reputation: 9 411

0

PPTP has a different transport layer protocol, which is neither UDP nor TCP and is thus likely to be blocked.

The simplest way to go around the limitations of your network would be to use a VPN service that uses one of the allowed ports. One such solution is OpenVPN, which uses an SSL based protocol and can be configured to use port 443, making it look more or less like a regular HTTPS connection.

user2313067

Posted 2014-05-29T03:38:07.680

Reputation: 2 160

How can I check to see if GRE is blocked on the network? – Jeffrey – 2014-05-29T11:45:10.273

0

I was wrong! The VPN client tries to use OpenVPN by default. I had it set to use a UDP port and I guess the UDP connections were taking too long to connect. I changed the settings to use TCP 443 and now it works.

Jeffrey

Posted 2014-05-29T03:38:07.680

Reputation: 195