久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

靜態(tài)路由也能勝任多網(wǎng)段之間進(jìn)行通信

 隱者黑鷹88 2015-04-07
靜態(tài)路由也能勝任多網(wǎng)段之間進(jìn)行通信

昨天,和朋友在機(jī)房討論組網(wǎng)問(wèn)題,,當(dāng)討論到路由器間通信時(shí),,朋友問(wèn)起為什么非要配置路由選擇協(xié)議。以前一般是根據(jù)配置手冊(cè)或者經(jīng)驗(yàn)配置也沒(méi)有仔細(xì)考慮過(guò)這個(gè)問(wèn)題,。想了想,,應(yīng)該是這樣理解的(如下)。

如果多個(gè)網(wǎng)段之間要實(shí)現(xiàn)通信,,必須使用路由器,,這個(gè)毫無(wú)疑問(wèn)。如果多個(gè)網(wǎng)段之間存在多個(gè)可選擇的路徑,,最方便的是采取配置路由選擇協(xié)議的方法,,簡(jiǎn)單點(diǎn)的網(wǎng)絡(luò)可以采用RIP協(xié)議,如果是復(fù)雜的網(wǎng)絡(luò)則可以采用OSPF,。當(dāng)然在選擇的路徑不多時(shí)也可以采用靜態(tài)路由的方法,。

但是,當(dāng)多個(gè)網(wǎng)段之間只有一條路徑時(shí),,那么僅僅是配置靜態(tài)路由就足夠了,。如果是在企業(yè)中工作,那么往往配置簡(jiǎn)單的靜態(tài)路由就足夠了,。

為了更有說(shuō)服力和便于理解我用CPT(Cisco Packet Tracer)演示了一下,。

拓?fù)鋱D如下圖所示:

靜態(tài)路由也能勝任多網(wǎng)段之間進(jìn)行通信

分別有四個(gè)網(wǎng)段,10.0.0.0/8,、112.237.228.0/24,、192.168.10.0/24,、211.86.104.0/24。

靜態(tài)路由設(shè)置如下:

  1. ip route 192.168.10.0 255.255.255.0 112.237.228.1    
  2. ip route 211.86.104.0 255.255.255.0 112.237.228.1   
  3.   
  4.   
  5. ip route 10.0.0.0 255.0.0.0 112.237.228.244    
  6. ip route 211.86.104.0 255.255.255.0 192.168.10.1   
  7.   
  8.   
  9. ip route 112.237.228.0 255.255.255.0 192.168.10.2    
  10. ip route 10.0.0.0 255.0.0.0 192.168.10.2    

配置如下:

1.PC0的IP配置:

Packet Tracer PC Command Line 1.0

PC>ipconfig

IP Address......................: 10.0.0.3

Subnet Mask.....................: 255.0.0.0

Default Gateway.................: 10.0.0.1

PC>

2.PC1的IP配置:

Packet Tracer PC Command Line 1.0

PC>ipconfig

IP Address......................: 211.86.104.52

Subnet Mask.....................: 255.255.255.0

Default Gateway.................: 211.86.104.254

PC>

3.R1的配置:

  1. Router>enable    
  2. Router#configure terminal    
  3. Enter configuration commands, one per line.  End with CNTL/Z.    
  4. Router(config)#hostname R1    
  5. R1(config)#interface FastEthernet0/1    
  6. R1(config-if)#ip address 10.0.0.1 255.0.0.0    
  7. R1(config-if)#no shutdown   
  8.   
  9.   
  10. %LINK-5-CHANGED: Interface FastEthernet0/1, changed state to up    
  11. R1(config-if)#end    
  12. R1#    
  13. %SYS-5-CONFIG_I: Configured from console by console   
  14.   
  15. R1#conf t    
  16. Enter configuration commands, one per line.  End with CNTL/Z.    
  17. R1(config)#int f0/0    
  18. R1(config-if)#ip addr 112.237.228.244 255.255.255.0    
  19. R1(config-if)#no shutdown   
  20.   
  21.   
  22. %LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up    
  23. R1(config-if)#end    
  24. R1#    
  25. %SYS-5-CONFIG_I: Configured from console by console   
  26.   
  27.   
  28. R1#conf t    
  29. Enter configuration commands, one per line.  End with CNTL/Z.    
  30. R1(config)#ip route 192.168.10.0 255.255.255.0 112.237.228.1    
  31. R1(config)#ip route 211.86.104.0 255.255.255.0 112.237.228.1    
  32. R1(config)#end    
  33. R1#    
  34. %SYS-5-CONFIG_I: Configured from console by console   
  35.   
  36. R1#  

4.R2的配置:

  1. Router>enable    
  2. Router#configure terminal    
  3. Enter configuration commands, one per line.  End with CNTL/Z.    
  4. Router(config)#hostname R2    
  5. R2(config)#    
  6. R2(config)#interface FastEthernet0/1    
  7. R2(config-if)#ip address 112.237.228.1 255.255.255.0    
  8. R2(config-if)#no shutdown   
  9.   
  10.   
  11. %LINK-5-CHANGED: Interface FastEthernet0/1, changed state to up    
  12. R2(config-if)#    
  13. R2(config-if)#exit    
  14. R2(config)#interface FastEthernet0/0    
  15. R2(config-if)#ip address 192.168.10.2 255.255.255.0    
  16. R2(config-if)#no shutdown   
  17.   
  18.   
  19. %LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up    
  20. R2(config-if)#end    
  21. R2#conf t    
  22. Enter configuration commands, one per line.  End with CNTL/Z.    
  23. R2(config)#ip route 10.0.0.0 255.0.0.0 112.237.228.244    
  24. R2(config)#ip route 211.86.104.0 255.255.255.0 192.168.10.1    
  25. R2(config)#end    
  26. R2#    
  27. %SYS-5-CONFIG_I: Configured from console by console   
  28.   
  29. R2#   

5.R3的配置:

  1. Router>enable    
  2. Router#configure terminal    
  3. Enter configuration commands, one per line.  End with CNTL/Z.    
  4. Router(config)#hostname R3    
  5. R3(config)#    
  6. R3(config)#interface FastEthernet0/1    
  7. R3(config-if)#ip address 192.168.10.1 255.255.255.0    
  8. R3(config-if)#no shutdown   
  9.   
  10.   
  11. %LINK-5-CHANGED: Interface FastEthernet0/1, changed state to up    
  12. R3(config-if)#    
  13. R3(config-if)#exit    
  14. R3(config)#interface FastEthernet0/0    
  15. R3(config-if)#ip address 211.86.104.254 255.255.255.0    
  16. R3(config-if)#no shutdown   
  17.   
  18. R3(config-if)#    
  19. %LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up   
  20.   
  21.   
  22. R3>enable    
  23. R3#conf t    
  24. Enter configuration commands, one per line.  End with CNTL/Z.    
  25. R3(config)#ip route 112.237.228.0 255.255.255.0 192.168.10.2    
  26. R3(config)#ip route 10.0.0.0 255.0.0.0 192.168.10.2       
  27. R3(config)#end    
  28. R3#    
  29. %SYS-5-CONFIG_I: Configured from console by console   
  30.   
  31. R3#   

6.使用tracert進(jìn)行測(cè)試:

測(cè)試從PC0能否路由到PC1,。

使用tracert進(jìn)行測(cè)試

結(jié)果表明測(cè)試成功,。

測(cè)試從PC1能否路由到PC0。

測(cè)試從pc1能否路由到pc0


    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,,所有內(nèi)容均由用戶(hù)發(fā)布,,不代表本站觀點(diǎn),。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式,、誘導(dǎo)購(gòu)買(mǎi)等信息,謹(jǐn)防詐騙,。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,,請(qǐng)點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶(hù) 評(píng)論公約

    類(lèi)似文章 更多