Cisco网络协议:EIGRP向本区域下放默认路由的设置方法

EIGRP的定义

EIGRP:Enhanced Interior Gateway Routing Protocol 即 增强内部网关路由线路协议。也翻译为 加强型内部网关路由协议。 EIGRP是Cisco公司的私有协议。Cisco公司是该协议的发明者和唯一具备该协议解释和修改权的厂商。 EIGRP结合了链路状态和距离矢量型路由选择协议的Cisco专用协议,采用弥散修正算法(DUAL)来实现快速收敛,可以不发送定期的路由更新信息以减少带宽的占用,支持Appletalk、IP、Novell和NetWare等多种网络层协议。

默认路由

默认路由是一种特殊的静态路由,指的是当路由表中与包的目的地址之间没有匹配的表项时路由器能够做出的选择·如果没有默认路由,那么目的地址在路由表中没有匹配表项的包将被丢弃· 默认路由在某些时候非常有效,当存在末梢网络时,默认路由会大大简化路由器的配置,减轻管理员的工作负担,提高网络性能。

实验拓扑如下,路由器R1、R2、R3为内部路由器,而R4为外部路由,实验目的为AS内部路由器发放默认路由,那么如何实现呢,请看下面步骤。

基础配置如下:

R1:

interface Loopback0

ip address 1.1.1.1 255.255.255.0

!

interface FastEthernet0/0

ip address 12.1.1.1 255.255.255.0

!

router eigrp 90

network 0.0.0.0

no auto-summary

!

========================================================

R2:

interface Loopback0

ip address 2.2.2.2 255.255.255.0

!

interface FastEthernet0/0

ip address 23.1.1.2 255.255.255.0

!

interface FastEthernet0/1

ip address 12.1.1.2 255.255.255.0

!

router eigrp 90

network 0.0.0.0

no auto-summary

========================================================

R3:

interface Loopback0

ip address 3.3.3.3 255.255.255.0

!

interface FastEthernet0/1

ip address 23.1.1.3 255.255.255.0

!

interface Serial1/0

ip address 34.1.1.3 255.255.255.0

!

router eigrp 90

network 23.1.1.3 0.0.0.0

no auto-summary

=========================================================

R4:

interface Loopback0

ip address 4.4.4.4 255.255.255.0

!

interface Serial1/1

ip address 34.1.1.4 255.255.255.0

!

ip route 0.0.0.0 0.0.0.0 Serial1/1 34.1.1.3

方法1:通过在AS边界路由器R3上重分发静态的方式引入默认路由

在R3配置如下:

R3:

ip route 0.0.0.0 0.0.0.0 Serial1/0 34.1.1.4

Router eigrp 90

Redistribute static

R1:

R1#show ip rou

Gateway of last resort is 12.1.1.2 to network 0.0.0.0

1.0.0.0/24 is subnetted, 1 subnets

C 1.1.1.0 is directly connected, Loopback0

2.0.0.0/24 is subnetted, 1 subnets

D 2.2.2.0 [90/409600] via 12.1.1.2, 00:15:47, FastEthernet0/0

23.0.0.0/24 is subnetted, 1 subnets

D 23.1.1.0 [90/307200] via 12.1.1.2, 00:14:57, FastEthernet0/0

12.0.0.0/24 is subnetted, 1 subnets

C 12.1.1.0 is directly connected, FastEthernet0/0

D*EX 0.0.0.0/0 [170/2221056] via 12.1.1.2, 00:03:44, FastEthernet0/0

方法2:通过手工宣告默认静态路由,只是该路由不能指定下一跳

R3:

Ip route 0.0.0.0 0.0.0.0 serial 1/0

Router eigrp 90

Network 0.0.0.0

R1:

R1#show ip rou

Gateway of last resort is 12.1.1.2 to network 0.0.0.0

34.0.0.0/24 is subnetted, 1 subnets

D 34.1.1.0 [90/2221056] via 12.1.1.2, 00:02:57, FastEthernet0/0

1.0.0.0/24 is subnetted, 1 subnets

C 1.1.1.0 is directly connected, Loopback0

2.0.0.0/24 is subnetted, 1 subnets

D 2.2.2.0 [90/409600] via 12.1.1.2, 00:23:44, FastEthernet0/0

3.0.0.0/24 is subnetted, 1 subnets

D 3.3.3.0 [90/435200] via 12.1.1.2, 00:02:57, FastEthernet0/0

23.0.0.0/24 is subnetted, 1 subnets

D 23.1.1.0 [90/307200] via 12.1.1.2, 00:22:55, FastEthernet0/0

12.0.0.0/24 is subnetted, 1 subnets

C 12.1.1.0 is directly connected, FastEthernet0/0

D* 0.0.0.0/0 [90/2221056] via 12.1.1.2, 00:00:03, FastEthernet0/0

方法3:使用ip default-network x.x.x.x,注意在使用该方法时边界路由器上要满足三个条件,条件一:路由表中必须要有该主类路由条目(该主类的子网路由不算),条件二:宣告时要同RIP一样宣告该主类网络,条件三:ip default-netwok 后的网络也必须是主类网络

D* 0.0.0.0/0 [90/2221056] via 12.1.1.2, 00:00:03, FastEthernet0/0

R3:

Ip default-network 34.0.0.0

Ip route 34.0.0.0 255.0.0.0 serial 1/0 34.1.1.4 //R3并没有该主类网络路由

Router eigrp 90

Network 34.0.0.0

R1:

R1#show ip route

Gateway of last resort is 12.1.1.2 to network 34.0.0.0

34.0.0.0/8 is variably subnetted, 2 subnets, 2 masks

D 34.1.1.0/24 [90/2221056] via 12.1.1.2, 00:02:11, FastEthernet0/0

D* 34.0.0.0/8 [90/2221056] via 12.1.1.2, 00:00:14, FastEthernet0/0

1.0.0.0/24 is subnetted, 1 subnets

C 1.1.1.0 is directly connected, Loopback0

2.0.0.0/24 is subnetted, 1 subnets

D 2.2.2.0 [90/409600] via 12.1.1.2, 00:02:11, FastEthernet0/0

23.0.0.0/24 is subnetted, 1 subnets

D 23.1.1.0 [90/307200] via 12.1.1.2, 00:02:11, FastEthernet0/0

12.0.0.0/24 is subnetted, 1 subnets

C 12.1.1.0 is directly connected, FastEthernet0/0

其实我们不一定非要指定外网出接口作为默认网络,可以使用环回接口作默认网络可可控性也很强,只写出简单配置:

C 12.1.1.0 is directly connected, FastEthernet0/0

R3:

Ip default-network 192.168.10.0

Interface loopback 1

Ip address 192.168.10.1 255.255.255.0

Router eigrp 90

Network 192.168.10.0

R1:

R1#show ip rou

Gateway of last resort is 12.1.1.2 to network 192.168.10.0

1.0.0.0/24 is subnetted, 1 subnets

C 1.1.1.0 is directly connected, Loopback0

2.0.0.0/24 is subnetted, 1 subnets

D 2.2.2.0 [90/409600] via 12.1.1.2, 00:08:12, FastEthernet0/0

D* 192.168.10.0/24 [90/435200] via 12.1.1.2, 00:00:08, FastEthernet0/0

23.0.0.0/24 is subnetted, 1 subnets

D 23.1.1.0 [90/307200] via 12.1.1.2, 00:08:12, FastEthernet0/0

12.0.0.0/24 is subnetted, 1 subnets

C 12.1.1.0 is directly connected, FastEthernet0/0

和上面做出比较,环回接口更加稳定,此外可以减小一个路由条目,内网不需要公网的参与,编址也有所优化,在网络中只有使用ip defaul-netwok下放的不是全0的默认路由

方法4:由于EIGRP支持CIDR,而CIDR的极限就是0.0.0.0/0

C 12.1.1.0 is directly connected, FastEthernet0/0

R3:

Interface fastethernet 0/1

Ip summary-address eigrp 90 0.0.0.0 0.0.0.0

R1:

R1#show ip rou

Gateway of last resort is 12.1.1.2 to network 0.0.0.0

1.0.0.0/24 is subnetted, 1 subnets

C 1.1.1.0 is directly connected, Loopback0

2.0.0.0/24 is subnetted, 1 subnets

D 2.2.2.0 [90/409600] via 12.1.1.2, 00:16:44, FastEthernet0/0

23.0.0.0/24 is subnetted, 1 subnets

D 23.1.1.0 [90/307200] via 12.1.1.2, 00:16:44, FastEthernet0/0

12.0.0.0/24 is subnetted, 1 subnets

C 12.1.1.0 is directly connected, FastEthernet0/0

D* 0.0.0.0/0 [90/332800] via 12.1.1.2, 00:00:02, FastEthernet0/0

以上就是Cisco网络协议EIGRP向本区域下放默认路由的设置方法,谢谢阅读,希望能帮到大家,请继续关注,我们会努力分享更多优秀的文章。

(0)

相关推荐

  • Cisco网络协议:EIGRP中生成默认路由的4种方法

    EIGRP的定义 EIGRP:Enhanced Interior Gateway Routing Protocol 即 增强内部网关路由线路协议。也翻译为 加强型内部网关路由协议。 EIGRP是Cis ...

  • 网络协议之OSPF的NSSA区域原理与配置

    OSPF路由协议在因特网的发展历程上正起着越来越重大的作用。而NSSA则是在该协议发展过程中产生的一种新的属性。而关于NSSA区域的理解,一直是广大网络爱好者的心头之痒。这篇文章,从NSSA区域的产生 ...

  • 网络协议之内部网关协议OSPF

    要想认识OSPF首先得区分OSPF于RIP的不同,有很多人都搞不清楚两者之间的关系与区别,下面我们先从定义来看看他们的区别。 OSPF(Open Shortest Path First开放式最短路径优 ...

  • 常用的网络协议小结

    常用的网络协议有哪些 ARP(Address Resolution Protocol)地址解析协议 它是用于映射计算机的物理地址和临时指定的网络地址。启动时它选择一个协议(网络层)地址,并检查这个地址 ...

  • 网络协议是什么?网络协议三要素是什么?

    本文向大家详细介绍网络协议是什么以及网络协议三要素是什么的基础知识,不懂的朋友可以通过本文了解学习! 网络协议是什么 网络协议的定义:为计算机网络中进行数据交换而建立的规则、标准或约定的集合。 一个网 ...

  • 如何定义网络协议?网络协议有哪些意义?

    本文将向大家详细介绍如何定义网络协议以及网络协议有哪些意义的基础知识,不明白的朋友可以过来学习一下 如何定义网络协议,它有哪些意义? 网络是一个相互联结的大群体,因此要想加入到这个群体中来,就不能随心 ...

  • linux网络协议是什么?该如何去理解?

    网络协议有很多,但大多是针对windows的,那么linux网络协议你是怎么样理解的呢?本文和大家一起探讨这个问题。 Linux网络协议栈基于分层的设计思想,总共分为四层,从下往上依次是:物理层,链路 ...

  • 常见的无线网络协议介绍 全面认识无线网络协议的作用

     虽然大家对于网络方面已经很熟悉了,但是大家对于无线网络协议又了解多少,知道无线网络协议都有哪些,他们的各自的作用是什么吗?本文小编就带着我们进行了解网络协议的特性,希望对大家在网络知识方面有所帮助。 ...

  • 网吧网络协议故障的排除方法

    有时候网络协议会发生各种问题,很多网管在面对问题时无从下手。本篇说说网吧网络协议故障的排除方法。 一、网吧网络协议故障的表现 协议故障通常表现为以下几种情况: 1.网吧电脑无法登录到服务器; 2.电脑 ...