首页 > 代码库 > route ubuntu配置IP,通过路由到内网

route ubuntu配置IP,通过路由到内网

首先,手动配置好内网的固定IP

sudo ifconfig eth0 10.2.98.98 netmask 255.255.255.0 up

然后

// sudo route add -net 10.23.0.0 netmask 255.255.0.0 eth0
sudo route add -net 10.23.0.0 netmask 255.255.0.0 gw 10.2.98.1

 

route ubuntu配置IP,通过路由到内网