1. 网络配置
1.1 临时网络配置
1 ifconfig eth0 //查看eth0网卡信息 2 route add -net 192.168.0.0/24 gw 192.168.40.1 eth0 //添加路由 3 route -n //显示路由表 4 netstat -nr //显示路由表
1.2 永久变更网络配置
1 auto eth0 2 iface eth0 inet static //静态IP地址 3 address 192.168.40.200 //IP地址配置 4 netmask 255.255.255.0 //掩码配置 5 network 192.168.40.0 //网络号配置 6 broadcast 192.168.40.255 //广播地址配置 7 gateway 192.168.40.1 //网关配置 8 dns-nameservers 61.177.7.1 8.8.8.8 //dns配置 9 up route add-net 172.16.0.0/24 gw 192.168.40.1 eth0 //启动时自动添加路由 10 down route del-net 172.24.0.0/24 //关闭时自动删除路由
1 /etc/init.d/networking restart //重启网络
2. 更新升级