成人免费xxxxx在线视频软件_久久精品久久久_亚洲国产精品久久久_天天色天天色_亚洲人成一区_欧美一级欧美三级在线观看

幀中繼交換機和路由器模擬配置

網絡
本文介紹了路由器和交換機中幀中繼的迷你配置實例,這個實例可以很明白的為大家說明配置過程,比較經典,對于初學者來說是個很好的參考資料。

幀中繼拓撲連接:

幀中繼交換機和路由器模擬配置

router1的s0/0端口與FR的s0/0端口連接!

router2的s0/0端口與FR的s0/1端口連接!

router3的s0/0端口與FR的s0/2端口連接!

幀中繼交換機的模擬配置:

  1. Router>enable  
  2. Router# config term  
  3. Router(config)# hostname FR  
  4. FR(config)# frame-relay switching  
  5. FR(config)# interface s0/0  
  6. FR(config-if)# encapsulation frame  
  7. FR(config-if)# frame lmi-type cisco  
  8. FR(config-if)# frame intf-type dce  
  9. FR(config-if)# frame route 102 interface s0/1 201  
  10. FR(config-if)# frame route 103 interface s0/2 301  
  11. FR(config-if)# clock rate 128000  
  12. FR(config-if)# no shutdown  
  13. FR(config-if)# exit  
  14. FR(config)# interface s0/1  
  15. FR(config-if)# encapsulation frame  
  16. FR(config-if)# frame lmi-type cisco  
  17. FR(config-if)# frame intf-type dce  
  18. FR(config-if)# frame route 201 interface s0/1 102  
  19. FR(config-if)# frame route 203 interface s0/2 302  
  20. FR(config-if)# clock rate 64000  
  21. FR(config-if)# no shutdown  
  22. FR(config-if)# exit  
  23. FR(config)# interface s0/2  
  24. FR(config-if)# encapsulation frame  
  25. FR(config-if)# frame lmi-type cisco  
  26. FR(config-if)# frame intf-type dce  
  27. FR(config-if)# frame route 301 interface s0/1 103  
  28. FR(config-if)# frame route 302 interface s0/2 203  
  29. FR(config-if)# clock rate 64000  
  30. FR(config-if)# no shutdown  
  31. FR(config-if)# exit 

驗證:

這里Status為Inactive的原因是對端路由器還沒有配置。

  1. FR#show fram route  
  2. Input Intf      Input Dlci      Output Intf     Output Dlci     Status  
  3. Serial0/0       102             Serial0/1       201             inactive  
  4. Serial0/0       103             Serial0/2       301             inactive  
  5. Serial0/1       201             Serial0/0       102             inactive  
  6. Serial0/1       203             Serial0/2       302             inactive  
  7. Serial0/2       301             Serial0/0       103             inactive  
  8. Serial0/2       302             Serial0/1       203             inactive 

幀中繼交換機和路由器模擬配置

路由器的幀中繼基本配置

  1. R1(config)# interface s0/0  
  2. R1(config-if)# encapsulation frame  //封裝為幀中繼  
  3. R1(config-if)# no frame inverse-arp  //關閉自動獲取  
  4. R1(config-if)# ip address 192.168.1.1 255.255.255.0  
  5. R1(config-if)# frame map ip 192.168.1.2 102  
  6. R1(config-if)# frame map ip 192.168.1.3 103  
  7. R1(config-if)# no shutdown  
  8.  
  9. R2(config)# interface s0/0  
  10. R2(config-if)# encapsulation frame //封裝為幀中繼  
  11. R2(config-if)# no frame inverse-arp //關閉自動獲取  
  12. R2(config-if)# ip address 192.168.1.2 255.255.255.0  
  13. R2(config-if)# frame map ip 192.168.1.1 201 //手工指定DLCI 和IP 的映射  
  14. R2(config-if)# no shutdown  
  15. R2(config-if)# interface lo 0  
  16. R2(config-if)# ip address 10.1.0.1 255.255.255.0  
  17. R2(config-if)# interface lo 1  
  18. R2(config-if)# ip address 10.1.1.1 255.255.255.0  
  19. R2(config-if)# interface lo 2  
  20. R2(config-if)# ip address 10.1.2.1 255.255.255.0  
  21. R2(config-if)# interface lo 3  
  22. R2(config-if)# ip address 10.1.3.1 255.255.255.0  
  23.  
  24. R3(config)# interface s0/0  
  25. R3(config-if)# encapsulation frame //封裝為幀中繼  
  26. R3(config-if)# no frame inverse-arp //關閉自動獲取  
  27. R3(config-if)# ip address 192.168.1.3 255.255.255.0  
  28. R3(config-if)# frame map ip 192.168.1.3 301 //手工指定DLCI 和IP 的映射  
  29. R3(config-if)# no shutdown  
  30. R3(config-if)# interface lo 0  
  31. R3(config-if)# ip address 172.16.0.1 255.255.255.0  
  32. R3(config-if)# interface lo 1  
  33. R3(config-if)# ip address 172.16.1.1 255.255.255.0  
  34. R3(config-if)# interface lo 2  
  35. R3(config-if)# ip address 172.16.2.1 255.255.255.0  
  36. R3(config-if)# interface lo 3  
  37. R3(config-if)# ip address 172.16.3.1 255.255.255.0 

注意,在作DLCI 和IP 映射時,我們沒有使用broadcast 參數!

驗證:

  1. R1#show frame-relay map  
  2. Serial0/0 (up): ip 192.168.1.2 dlci 102(0×66,0×1860), static,  
  3.               CISCO, status defined, active  
  4. Serial0/0 (up): ip 192.168.1.3 dlci 103(0×67,0×1870), static,  
  5.               CISCO, status defined, active  
  6. R1#ping 192.168.1.2  
  7.  
  8. Type escape sequence to abort.  
  9. Sending 5, 100-byte ICMP Echos to 192.168.1.2, timeout is 2 seconds:  
  10. !!!!!  
  11. Success rate is 100 percent (5/5), round-trip min/avg/max = 8/45/96 ms  
  12. R1#ping 192.168.1.3  
  13.  
  14. Type escape sequence to abort.  
  15. Sending 5, 100-byte ICMP Echos to 192.168.1.3, timeout is 2 seconds:  
  16. !!!!!  
  17. Success rate is 100 percent (5/5), round-trip min/avg/max = 16/51/100 ms 

 幀中繼的路由器和交換機模擬配置的過程就是以上這些內容,命令比較多,應用起來復雜,所以讀者需要認真和耐心了,關于EIGRP單播及帶寬配置請閱讀:

CCNP:EIGRP帶寬實例配置解析EIGRP路由協議的配置實例解析

 

責任編輯:佚名 來源: 咦哇噢博客
相關推薦

2012-11-26 13:46:17

路由器交換機

2017-06-01 14:33:04

交換機路由器網絡設備

2011-03-24 14:05:14

Nagios監控

2009-12-18 14:30:40

路由器與交換機

2011-08-16 13:55:03

交換機Cisco

2010-01-05 15:45:42

配置幀中繼交換機

2011-07-21 13:46:09

Cisco ACE

2014-06-05 14:36:53

SDN交換機服務器

2022-09-22 17:02:42

網絡硬件

2022-09-22 19:19:52

網絡硬件路由器交換機

2022-09-22 19:23:11

網絡硬件路由器交換機

2022-09-22 17:00:46

路由器

2022-09-23 10:02:35

網絡硬件路由器

2009-12-22 13:22:03

路由器與交換機

2010-08-26 10:45:59

DHCP端口

2011-03-31 09:09:00

2010-02-06 17:04:19

交換機和路由器

2009-12-03 13:24:46

路由器交換機區別

2009-11-26 09:56:39

Cisco路由器配置命交換機配置命令

2015-06-18 09:38:46

路由器交換機
點贊
收藏

51CTO技術棧公眾號

主站蜘蛛池模板: 黄网免费看| 欧美日韩专区 | 精区3d动漫一品二品精区 | 精品一区二区三区在线观看国产 | 九热在线 | 久久人人爽人人爽人人片av免费 | 在线2区| 欧美日韩在线综合 | 欧美成人免费在线视频 | 97色在线视频 | 91欧美| 一区免费 | 日韩精品一区二区三区在线观看 | 亚洲免费观看视频 | 色综合中文 | 亚洲网站在线观看 | 一区二区三区在线观看视频 | 日韩久久综合网 | 91久久久久久久 | 欧美淫片 | 日韩欧美在线观看视频网站 | 九九久久久 | 久久综合一区 | 国产超碰人人爽人人做人人爱 | 久久香蕉精品视频 | 国产欧美一区二区三区在线看 | 欧美久久久久久久久 | 色男人的天堂 | 在线亚洲欧美 | 亚洲欧美一区二区三区情侣bbw | 日韩影院在线观看 | 国产伦精品一区二区三区高清 | 久久久久黄色 | 国产免费一区二区三区最新6 | 国产999精品久久久 午夜天堂精品久久久久 | 一级毛片免费 | 黄色毛片网站在线观看 | 国内精品久久精品 | 在线观看欧美一区 | 亚洲精品一区二三区不卡 | 国产亚洲欧美另类一区二区三区 |