Realm Filtering
It's a requirement of Govroam to avoid sending inappropriate authentication requests to the NRPS. There are a number of ways a request could have badly formatted realms (missing realm, '..', '@@', etc.).
One way is to put a regex into the proxy policy to the NRPS '^[^@]*@([a-zA-Z0-9-]+\.)+[a-zA-Z]{2,6}$'. This only allows correctly formatted realms to be proxied.
How to stop proxying your own realm when handling both eduroam and govroam on the same server
There's a particular case where this is handy. If a RADIUS server is being used for both eduroam and govroam traffic then the rule logic becomes a bit harder.
Stepping back a bit: if a RADIUS server that just handles eduroam then the rules are easy:
- If realm matches our own, authenticate locally.
- Proxy all other valid realms to Jisc.
- Reject the rest.
When you add govroam then you need to keep the traffic separate so that eduroam traffic goes to the Jisc eduroam NRPS and the govroam traffic goes to the Jisc govroam NRPS/Federation Operator. The way to do this is to match the SSID portion of the CSI for 'eduroam' or 'govroam' and include this in the rules. Thus, for the case of a University adding govroam:
- If realm matches our own and SSID is 'eduroam' then authenticate locally.
- If realm is valid and SSID is 'eduroam' then proxy to Jisc eduroam NRPS.
- If realm is valid and SSID is 'govroam' then proxy to Jisc govroam NRPS/Federation ORPS.
- Reject the rest.
However, here you can see a case that's inappropriate: if the realm is their own and the SSID is 'govroam' then the traffic is proxied to the Jisc govroam NRPS. So, for a site 'camford.ac.uk', users such as 'fred@camford.ac.uk' who use the govroam SSID by mistake have their traffic sent to the Jisc govroam NRPS. It's risky (and specifically banned in the Tech Spec) if sites are sending their own user traffic to Jisc. We're not likely to try to send it back because such sites are Visited Only for govroam but stopping it would eliminate any risks. It would also help sites to spot patterns of behaviour with their users.
If the RADIUS server is capable of doing explicit rejects then a rule can be added that says:
- If the SSID is 'govroam' and the realm is ours then Reject
otherwise the third rule becomes:
- If realm is valid, is not our own and the SSID is 'govroam' then proxy to Jisc govroam NPRS.
which means that, in the above case, inappropriate auths are now rejected by default.