兩臺主機之間的通信過程:
首先A主機發送數據包給B,B收到數據包後應答,應答完成後,創建連接網絡
查看路由條目信息方法: [root@oldboyedu-sh01 ~]# route -n Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 10.0.0.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 1002 0 0 eth0 0.0.0.0 10.0.0.2 0.0.0.0 UG 0 0 0 eth0
說明:路由表中最後一條爲靜態默認網關路由 [root@oldboyedu-sh01 ~]# netstat -rn Kernel IP routing table Destination Gateway Genmask Flags MSS Window irtt Iface 10.0.0.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 0 0 0 eth0
[root@chenleilei ~]# netstat -rn Kernel IP routing table Destination Gateway Genmask Flags MSS Window irtt Iface 10.0.0.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0 0.0.0.0 10.0.0.2 0.0.0.0 UG 0 0 0 eth0 [root@chenleilei ~]# route -n Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 10.0.0.0 0.0.0.0 255.255.255.0 U 1 0 0 eth0 0.0.0.0 10.0.0.2 0.0.0.0 UG 0 0 0 eth0
想要取其餘網段 可是沒有路由條目,如何增長:
1.靜態添加路由條目
靜態路由:ide
2.動態添加路由條目
動態路由:加密
OSI參考模型:
應用層 應用程序和接口
表示層 數據轉換,加密壓縮
會話層 創建,管理終止會話
傳輸層 提供可靠的端到端的保溫傳輸和差異控制
網絡層 分組從源端傳輸到目的端,提供網絡互連
數據鏈路層 將分組數據封裝成幀,提供點到點方式傳輸
物理層 在媒體上創數比特;提供機械和電氣規約code