linux 双线ip设置(不需额外增加路由表,只需修改下面就ok了)修改 vi /etc/iproute2/rt_tables (增加电信和网通两个路由表) 增加252 tel (电信)251 cnc (网通)(设置电信和网通路由表内容) vi /etc/rc.d/rc.local 增加 ip route replace default via 电信网关 dev eth0 ( 默认路由线路) ip route flush table te…
通过访问 /etc/network/interfaces 实现动态IP 或者静态IP 的设置. vim /et/network/interfaces 1.设置动态IP auto lo iface lo inet loopback // 设置回环 auto eth0 iface eth0 inet dhcp // 设置为动态获取IP 2.设置静态IP auto lo iface lo inet loopback auto eth0 iface eth0 inet static // 设…
1.网卡设置 vim /etc/udev/rules.d/70-persistent-net.rules 将新生成的eth1改名为eth0,并将原来的eth0注释或删除,同时复制mac地址 2.IP设置 vim /etc/sysconfig/network-scripts/ifcfg-eth0 重启下network服务,如果失败重启系统I后设置的IP地址就会生效 3.更改主机名 vim /etc/sysconfig/network 重启后执行hostname生效 4.更改映射关系(便于远程登录)…