scuro
New Around Here
I'm trying to push a route to a family asus router so they can access a VM that I have on a different subnet from my router/openvpn.
I am using a pfsense firewall to lock down all my VMs (192.168.3.109).
I can push the route without issue with
however it uses the vlan interface as the gateway (192.168.10.1).
If I use
the route is never added because it errors out.
When I check logs I can see that it is getting pushed but it just says:
I tried changing the metric to 500. It makes no difference.
I am using a pfsense firewall to lock down all my VMs (192.168.3.109).
I can push the route without issue with
Code:
push "route 192.168.6.0 255.255.255.0"
If I use
Code:
push "route 192.168.6.0 255.255.255.0 192.168.3.109 1"
When I check logs I can see that it is getting pushed but it just says:
Code:
vpnclient5[5690]: /sbin/route add -net 192.168.3.0 netmask 255.255.255.0 metric 500 gw 192.168.10.1
vpnclient5[5690]: /sbin/route add -net 192.168.6.0 netmask 255.255.255.0 metric 1 gw 192.168.3.109
vpnclient5[5690]: ERROR: Linux route add command failed: external program exited with error status: 1
vpnclient5[5690]: Initialization Sequence Completed
I tried changing the metric to 500. It makes no difference.