标签:5.0 udp 不能 bond 服务 独立 icmp kernel 可靠
IP是TCP/IP协议族中最为核心的协议。所有的TCP、UDP、ICMP、IGMP数据都是以IP数据报格式传输。
IP协议的特点是,提供不可靠、无连接的数据报传送服务。
三个有用的命令:ifconfig
、netstat
、route
IP协议要求在网络中传输时要求以 big endian 字节序,即网络字节序。在传输数据前必须转换成网络字节序。
# 查看和修改IP路由表
route - show / manipulate the IP routing table
1) route
命令
[root@thor ]# route
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
default 10.66.91.254 0.0.0.0 UG 0 0 0 bond0
10.66.91.0 0.0.0.0 255.255.255.0 U 0 0 0 bond0
link-local 0.0.0.0 255.255.0.0 U 1004 0 0 bond0
192.168.122.0 0.0.0.0 255.255.255.0 U 0 0 0 virbr0
2)netstat -r
命令
[root@thor ]# netstat -r
Kernel IP routing table
Destination Gateway Genmask Flags MSS Window irtt Iface
default 10.66.91.254 0.0.0.0 UG 0 0 0 bond0
10.66.91.0 0.0.0.0 255.255.255.0 U 0 0 0 bond0
link-local 0.0.0.0 255.255.0.0 U 0 0 0 bond0
192.168.122.0 0.0.0.0 255.255.255.0 U 0 0 0 virbr0
标签:5.0 udp 不能 bond 服务 独立 icmp kernel 可靠
原文地址:https://www.cnblogs.com/walkinginthesun/p/9625501.html