In windows I add to the routing table:
route add 159.182.151.0 MASK 255.255.255.0 159.182.152.110
How to add similar to ubuntu ?
thanks.
In windows I add to the routing table:
route add 159.182.151.0 MASK 255.255.255.0 159.182.152.110
How to add similar to ubuntu ?
thanks.
sudo route add -net 159.182.151.0 netmask 255.255.255.0 gw 159.182.152.110
sudo ip route add 159.182.151.0/24 via 159.182.152.110
– Pilot6 Mar 04 '19 at 15:36