linux 方式:
1.ip 命令
ip addr show 查看IP地址 简写为 ip ad sh
ip route sh 查看路由 简写为 ip ro sh
ip neigh sh 查看静态ARP 简写为 ip ne sh
ipv6中取消了ARP 改用ICMP
2.具体配置:
ip ad add dev ip地址/掩码长度
ip route add ip地址/掩码长度 dev 网卡
ip route add ip地址/掩码长度 via 网关地址
3.激活/禁止某网卡
ip link set up dev eth0
ip link set down dev eth0
4.此设置都是临时的,固化网络配置,在linux下 主机名/缺省网关:
修改路径/etc/sysconfig/network
如果修改主机名顺便把hosts文件也得改 /etc/hosts否则有时服务会启动时挂
起死等~
固化IP 地址 /etc/sysconfig/network-scripts下的ifcfg-网卡名
例如: /etc/sysconfig/network-scripts/ifcfg-eth0
bootprotocol= static ##如果用动态IP则改成DHCP
ONBOOT=yes ##启动时激活,设置思想:作为外网网卡应该为NO,因
防火墙启动之前将网卡先期启动会有被攻击的危险
5.静态ARP固化
/etc/ethers
写法: mac ip 例如 : 01:02:03:04:05:06 10.0.0.2