When I start a VPN connection, a new default route is added on the utun0 interface:
Destination Gateway Flags Refs Use Netif Expire
default utun0 UCS 21 0 utun0
default 192.168.43.1 UGScI 14 0 en1
I'd like to get rid of the default/utun0 route. When using route with the -ifscope modifier, I get the following error:
$ sudo route delete -ifscope utun0 -net 0.0.0.0
route: writing to routing socket: not in table
delete net 0.0.0.0: not in table
What am I doing wrong? What's the correct syntax of the route command in order to delete the default route?