加入收藏 | 设为首页 | 会员中心 | 我要投稿 PHP编程网 - 黄冈站长网 (http://www.0713zz.com/)- 数据应用、建站、人体识别、智能机器人、语音技术!
当前位置: 首页 > 运营中心 > 网站设计 > 教程 > 正文

企业网数通方案实战之EIGRP

发布时间:2019-09-13 06:20:19 所属栏目:教程 来源:佚名
导读:副标题#e# 实战目标: 通过实战应用,掌握EIGRP的工作原理和实际操作能力。 案例需求说明及业务部署规划: 公司建有两个办公点,分别为总部和分支; 决定全网使用EIGRP作为动态路由协议,自治系统号码为 666; 其中总部和分支的R1和R3两台设备通过运营商提供

R5:

  1. access-list 2 permit 10.1.201.0 0.0.0.255 
  2.  
  3. route-map LEAK permit 10 
  4.   match ip address 1 
  5.  
  6. router eigrp QYT 
  7.   address-family ipv4 unicast autonomous-system 666 
  8.    af-interface Serial1/1 
  9.     summary-address 10.2.0.0 255.255.0.0 leak-map LEAK 

验证:

  1. R2#show ip eigrp topology 10.1.201.0/24 | include from 
  2.    10.12.25.5 (Serial1/1), from 10.12.25.5, Send flag is 0x0 
  3.    10.2.12.1 (Serial1/0), from 10.2.12.1, Send flag is 0x0 
  4.  
  5.  
  6. R5#show ip eigrp topology 10.2.201.0/24 | include from 
  7.    10.12.25.2 (Serial1/1), from 10.12.25.2, Send flag is 0x0 

测试:

  1. R2#traceroute 10.1.201.100 source 10.2.201.100 numeric 
  2. Type escape sequence to abort. 
  3. Tracing the route to 10.1.201.100 
  4. VRF info: (vrf in name/id, vrf out name/id) 
  5.    1 10.12.25.5 9 msec *  9 msec 
  6.  
  7.  
  8. R5#traceroute 10.2.201.100 source 10.1.201.100 numeric 
  9. Type escape sequence to abort. 
  10. Tracing the route to 10.2.201.100 
  11. VRF info: (vrf in name/id, vrf out name/id) 
  12.    1 10.12.25.2 9 msec *  9 msec 

七、配置NAT

此部分不作为本案例研究重点,配置部分仅作示例

  1. R3(config)#int e0/2 
  2. R3(config-if)#ip nat outside 
  3.  
  4. R3(config)#int e0/3 
  5. R3(config-if)#ip nat inside 
  6.  
  7. access-list 1 permit 10.0.0.0 0.0.0.255 
  8.  
  9. ip nat inside source list 1 interface 【XXX】 overload 

八、合理分配R3和R4的上行链路资源

在R3和R4上配置静态默认路由,并以不同度量值引入EIGRP,尽量体现网络上行链路实际情况

  1. R3(config)#ip route 0.0.0.0 0.0.0.0 36.1.1.6  
  2. R4(config)#ip route 0.0.0.0 0.0.0.0 s1/0 

R3:

  1. router eigrp QYT 
  2.   address-family ipv4 unicast autonomous-system 666 
  3.    topology base 
  4.     redistribute static metric 10000 100 255 1 1500 

R4:

  1. router eigrp QYT 
  2.   address-family ipv4 unicast autonomous-system 666 
  3.    topology base 
  4.     redistribute static metric 1544 2000 255 1 1500 

九、在R5上实现去往互联网的业务流量非等价负载均衡

查看拓扑表,仅有一个后继,没有发现可行后继,说明要么只收到一个路径,要么就是有其它路径,但并不符合可行条件;

  1. R5#show ip eigrp topology 
  2.  
  3. P 0.0.0.0/0, 1 successors, FD is 196608000 
  4.          via 10.1.35.3 (196608000/131072000), Ethernet0/1 

(编辑:PHP编程网 - 黄冈站长网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

热点阅读