Culvert VPN

VPN on university and campus Wi-Fi

Campus Wi-Fi is a managed network that often filters ports and sometimes blocks VPN protocols. What the university can see, and how a VPN connects there.

Public and restrictive Wi-Fi · 4 min read · By Culvert VPN

A university network is a private network with a professional IT team, an acceptable-use policy and a firewall built to keep tens of thousands of devices from causing trouble. That usually means it filters ports, often drops UDP outside a short allow-list, and sometimes blocks recognisable VPN protocols outright. A VPN still has a job there, hiding your traffic from a network that is logged by design, but it has to be an app that tries more than one way to connect, and you should know what the policy says before relying on it.

What a campus network looks like from your phone

Most universities run at least two networks. One is an enterprise Wi-Fi that asks for your student username and password, often shared across institutions under a scheme like eduroam. The other is an open or guest network that puts a sign-in page in front of you.

The enterprise network encrypts the radio link individually for each user, which is better than a café. The guest network usually does not. Either way, everything you send passes through the university's routers, and a university, unlike a café, keeps records. It has to: it is responsible for what leaves its address space, and when a complaint arrives it needs to know which login was behind it.

So the honest picture is that the university can see which servers your phone talks to, tied to your name, for as long as its retention policy says. The employer and school post goes into what that looks like with and without a VPN.

Why campus firewalls get in the way

Campus IT filters for three reasons, none of which is about you personally.

Load. A residence hall at nine in the evening is one of the heaviest Wi-Fi environments anywhere. Dropping UDP that is not DNS, or limiting bandwidth per device, keeps the network usable.

Abuse handling. If traffic from the network cannot be attributed to a login, the university cannot answer a complaint. Some institutions restrict VPNs for that reason alone.

Security policy. Enterprise firewalls can recognise VPN protocol handshakes and are often configured to drop them by default, because the default rule set was written for a corporate office rather than a campus.

The effect on a VPN app is the same in each case: the first connection attempt goes out and nothing answers.

How a well-built app connects on a filtering network

The approach that works is to try several connection methods in order, each with a short time limit, and keep the first one that carries traffic:

  1. WireGuard over UDP, on several ports including 443, since some campus firewalls allow UDP on that port for video calls.
  2. A TLS-wrapped transport on TCP port 443. The firewall treats this like any other HTTPS connection, which is the one kind of traffic every campus network is built to carry.
  3. IKEv2, a last attempt for networks where the earlier methods fail for an unusual reason.

On most campus networks the second method is what ends up carrying traffic. It costs some speed compared with WireGuard, but campus links are usually fast enough that the loss is hard to notice. The post on why VPN apps try port 443 explains what makes that port different.

Read the acceptable-use policy first

Every university publishes one, and you agreed to it when you were issued a login. Some say nothing about VPNs. Some permit them. Some restrict them on the residence-hall network but not on the academic one, and a few prohibit them altogether, usually because of the attribution problem above.

If the policy prohibits VPN use, the right answer is mobile data. Losing a campus login over a network setting is a bad trade, and the network still belongs to the university.

What the VPN changes, and what it does not

Without a VPNWith a VPN connected
The university seesEvery server your phone contacts, tied to your loginOne encrypted stream to one server, tied to your login
Other students on the guest network seeYour traffic patterns, on a weakly secured networkOne encrypted stream
Websites seeThe university's public addressThe VPN server's address
Sign-in to the Wi-FiUses your student accountStill uses your student account

The last row is the important one. A VPN does not make you an unknown device on campus. The university still knows the phone is yours, still knows when it was connected and how much data it moved. What it no longer sees is where the traffic went.

Campus services that need the local network

Library databases, printers, lab machines and some learning platforms check that you are on the campus network and refuse connections from outside it. With a VPN connected, your traffic exits from the VPN server, so those services see an outside address and may say no. Excluding the relevant app from the VPN, or disconnecting for the few minutes you need the printer, is the practical fix; the split tunnelling post covers how an exclude list works on Android.

Culvert VPN works through its connection methods automatically on campus networks that filter ports, settling on a TLS transport over port 443 when UDP is dropped, and it is on Google Play.

Questions people also ask

Can the university see what I do if I use a VPN?

It sees that your device is connected to one VPN server and how much data goes through, and it knows which student account signed in to the Wi-Fi. It does not see the sites or the contents inside the tunnel.

Is using a VPN on campus against the rules?

It depends on the university's acceptable-use policy, which is a document you agreed to when you got your login. Read it; some allow VPNs, some restrict them on certain networks, and a few prohibit them.

Why does the VPN work on my phone's data but not on the campus Wi-Fi?

Because the campus firewall is filtering the ports or protocol the VPN tried first. A good app moves on to a TCP transport on port 443, which campus networks allow because it is what HTTPS uses.