Remove default route 0.0.0.0/0

I am using the open source free version. I want to route partial traffic through Priturl and the rest of the traffic through my wifi. I removed the default 0.0.0.0/0 route from the pritunl server as descried in the documentation but I am still seeing the route once I am connected to the VPN on my laptop’s routing table.

I am on ubuntu 22.04 and using the gnome VPN settings.

Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 192.168.226.1 0.0.0.0 UG 50 0 0 tun0

How do I troubleshoot this?

The Gnome client will always route all traffic. This must be disabled in the settings or with the commands below.

nmcli connection modify org_linux_dev ipv4.never-default true
nmcli connection modify org_linux_dev ipv6.never-default true
1 Like

Thanks that helped.