vim /etc/sysconfig/network-scripts/ifcfg-eth0
ifcfg-eth0
if -> interface
cfg -> configuration
eth -> ethernet 以太网
0 表示第几块网卡
CentOS7对应目录下没有ifcfg-eth0,但有ifcfg-em1
kernel: udev: renamed network interface eth0 to em1
[root@localhost ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth0
TYPE=Ethernet #网卡类型
DEVICE=eth0 #网卡接口名称
ONBOOT=yes #系统启动时是否自动加载
BOOTPROTO=static #启用地址协议 --static:静态协议 --bootp协议 --dhcp协议
IPADDR=192.168.10.11 #网卡IP地址
NETMASK=255.255.255.0 #网卡网络地址
GATEWAY=192.168.10.1 #网卡网关地址
DNS1=10.203.104.41 #网卡DNS地址
HWADDR=00:0C:29:13:5D:74 #网卡设备MAC地址
BROADCAST=192.168.1.255 #网卡广播地址
DNS域名解析
NETMASK掩码: 用掩码和IP地址做二进制的&运算,得出网络号192.168.10; 最后的4是主机位
[root@~]# route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.10.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
169.254.0.0 0.0.0.0 255.255.0.0 U 1008 0 0 eth0
0.0.0.0 192.168.10.1 0.0.0.0 UG 0 0 0 eth0
gateway就是下一跳地址
root ~$ ping www.baidu.com
PING www.a.shifen.com (36.152.44.95): 56 data bytes
64 bytes from 36.152.44.95: icmp_seq=0 ttl=56 time=10.188 ms
64 bytes from 36.152.44.95: icmp_seq=1 ttl=56 time=11.278 ms
..
针对不同的访问ip,ip与掩码做位与运算,通过“下一跳”机制来找.这层在网络层,再找需要下一层(链路层)来找
0.0.0.0表示同一局域网;
查看链路层
root ~$ arp -a
192.168.10.1 (192.168.10.1) at d4:b7:9:73:df:d0 on en0 ifscope [ethernet]
192.168.10.6 (192.168.10.6) at f4:5c:89:a6:29:8d on en0 ifscope permanent [ethernet]
? (224.0.0.251) at 1:0:5e:0:0:fb on en0 ifscope permanent [ethernet]
? (224.238.240.223) at 1:0:5e:6e:f0:df on en0 ifscope permanent [ethernet]
...
arp是一个协议
DNS解析全网域名和IP地址映射,arp会解析局域网内
IP和网卡硬件地址映射;
ifconfig eth0:3 192.168.33.33/24 # 增加虚拟网卡,ip为192.168.33.33
ifconfig # 查看
# 但如果重其它网络ping虚拟ip不能ping能,原因看路由表
route -n
# 如果要能需要在路由表中添加新规则
route add -host 192.168.33.33 gw 192.168.50.13 # 添加路由主机