码迷,mamicode.com
首页 > 其他好文 > 详细

(一)IP协议

时间:2018-09-11 11:28:10      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:5.0   udp   不能   bond   服务   独立   icmp   kernel   可靠   

IP是TCP/IP协议族中最为核心的协议。所有的TCP、UDP、ICMP、IGMP数据都是以IP数据报格式传输。

1. IP协议特点

IP协议的特点是,提供不可靠、无连接的数据报传送服务。

  • 不可靠,它不能保证IP数据报能成功地到达目的地。任何要求的可靠性必须由上层来提供(如TCP)。
  • 无连接,IP并不维护任何关于后续数据报的状态信息。每个数据报的处理是相互独立的。

三个有用的命令:ifconfignetstatroute

IP协议要求在网络中传输时要求以 big endian 字节序,即网络字节序。在传输数据前必须转换成网络字节序。

2. IP路由选择

2.1 路由表

# 查看和修改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

2.2 IP路由选择过程

(一)IP协议

标签:5.0   udp   不能   bond   服务   独立   icmp   kernel   可靠   

原文地址:https://www.cnblogs.com/walkinginthesun/p/9625501.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!