diff --git a/iprbench/util.py b/iprbench/util.py index 0098685..8360657 100644 --- a/iprbench/util.py +++ b/iprbench/util.py @@ -86,6 +86,9 @@ def get_vlan() -> VlanId: 27: 'SIMPA', 79: 'REC-PHYS', }[ip_address[2]] + elif ip_address[0] == 10 and ip_address[1] == 100: + # using univ-rennes' vpn + vlan_id = 'REC-PHYS' else: assert False return vlan_id