修改ip以及掩码
1、使用ifconfig修改ip以及网关
ifconfig eth0 192.168.0.156
netmask 255.255.255.0
其中eth0后面为你想要修改的ip地址,netmask后面为该网络的子网掩码
2修改路由
route add default gw 192.168.0.134
dev eth0
其中标红的地方为你要设置的默认网关
3、网口重启命令:
网口断开: ifconfig eth0 down
网口启动:ifconfig eth0 up