侧边栏壁纸
博主头像
落叶人生博主等级

走进秋风,寻找秋天的落叶

  • 累计撰写 130562 篇文章
  • 累计创建 28 个标签
  • 累计收到 9 条评论
标签搜索

目 录CONTENT

文章目录

CCNP(BSCI)实验:配置EIGRP的帧中继Hub and Spoke点到点子接口

2023-04-05 星期三 / 0 评论 / 0 点赞 / 70 阅读 / 5644 字

实验过程:第一步:在R1上进行配置R1(config)#int s3/0R1(config-if)#en frR1(config-if)#no shR1(config-if)#no fr invers

.


实验过程:
第一步:在R1上进行配置
R1(config)#int s3/0
R1(config-if)#en fr
R1(config-if)#no sh
R1(config-if)#no fr inverse-arp
R1(config-if)#exit
R1(config)#int s3/0.1 point-to-point
R1(config-subif)#ip add 12.0.0.1 255.255.255.0
R1(config-subif)#frame-relay interface-dlci 102(指定dlci号,这是必须的)
R1(config-fr-dlci)#exit
R1(config)#int s3/0.2 point-to-point
R1(config-subif)#ip add 13.0.0.1 255.255.255.0
R1(config-subif)#frame-relay interface-dlci 103
R1(config-subif)#end
第二步:现在查看Frame-relay映射关系
R1#sh fr map
Serial3/0.1 (up): point-to-point dlci, dlci 102(0x66,0x1860), broadcast
status defined, active
Serial3/0.2 (up): point-to-point dlci, dlci 103(0x67,0x1870), broadcast
status defined, active
R1#

第三步:在R2上进行配置
R2(config)#int s3/0
R2(config-if)#en fr
R2(config-if)#no fr inverse-arp
R2(config-if)#frame-relay map ip 12.0.0.1 201 b
R2(config-if)#ip add 12.0.0.2 255.255.255.0
R2(config-if)#no sh
R2(config-if)#exit
第四步:在R3上进行配置
R3(config)#int s3/0
R3(config-if)#en fr
R3(config-if)#no sh
R3(config-if)#no frame-relay inverse-arp
R3(config-if)#frame-relay map ip 13.0.0.1 301 b
R3(config-if)#ip add 13.0.0.3 255.255.255.0
R3(config-if)#exit
第五步:在R1、R2、R3上配置EIGRP协议并关闭自动汇总
R1(config)#router eigrp 11
R1(config-router)#net 12.0.0.0
R1(config-router)#net 13.0.0.0
R1(config-router)#net 1.1.1.0

R2(config)#router eigrp 11
R2(config-router)#net 12.0.0.0
R2(config-router)#net 2.2.2.0

R3(config)#router eigrp 11
R3(config-router)#net 3.3.3.0
R3(config-router)#net 13.0.0.0
第六步:查看R1、R2、R3的路由表
R1#sh ip rou
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
ia - IS-IS inter area, * - candidate default, U - per-user static route
o - ODR, P - periodic downloaded static route

Gateway of last resort is not set

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/2297856] via 12.0.0.2, 00:00:17, Serial3/0.1
3.0.0.0/24 is subnetted, 1 subnets
D 3.3.3.0 [90/2297856] via 13.0.0.3, 00:00:09, Serial3/0.2
12.0.0.0/24 is subnetted, 1 subnets
C 12.0.0.0 is directly connected, Serial3/0.1
13.0.0.0/24 is subnetted, 1 subnets
C 13.0.0.0 is directly connected, Serial3/0.2

R2#sh ip rou
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
ia - IS-IS inter area, * - candidate default, U - per-user static route
o - ODR, P - periodic downloaded static route

Gateway of last resort is not set

1.0.0.0/24 is subnetted, 1 subnets
D 1.1.1.0 [90/2297856] via 12.0.0.1, 00:00:27, Serial3/0
2.0.0.0/24 is subnetted, 1 subnets
C 2.2.2.0 is directly connected, Loopback0
3.0.0.0/24 is subnetted, 1 subnets
D 3.3.3.0 [90/2809856] via 12.0.0.1, 00:00:14, Serial3/0
12.0.0.0/24 is subnetted, 1 subnets
C 12.0.0.0 is directly connected, Serial3/0
13.0.0.0/24 is subnetted, 1 subnets
D 13.0.0.0 [90/2681856] via 12.0.0.1, 00:00:27, Serial3/0

R3#sh ip rou
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
ia - IS-IS inter area, * - candidate default, U - per-user static route
o - ODR, P - periodic downloaded static route

Gateway of last resort is not set

1.0.0.0/24 is subnetted, 1 subnets
D 1.1.1.0 [90/2297856] via 13.0.0.1, 00:00:19, Serial3/0
2.0.0.0/24 is subnetted, 1 subnets
D 2.2.2.0 [90/2809856] via 13.0.0.1, 00:00:19, Serial3/0
3.0.0.0/24 is subnetted, 1 subnets
C 3.3.3.0 is directly connected, Loopback0
12.0.0.0/24 is subnetted, 1 subnets
D 12.0.0.0 [90/2681856] via 13.0.0.1, 00:00:19, Serial3/0
13.0.0.0/24 is subnetted, 1 subnets
C 13.0.0.0 is directly connected, Serial3/0
第七步:测试
R2#ping
Protocol [ip]:
Target IP address: 3.3.3.3
Repeat count [5]:
Datagram size [100]:
Timeout in seconds [2]:
Extended commands [n]: y
Source address or interface: 2.2.2.2
Type of service [0]:
Set DF bit in IP header? [no]:
Validate reply data? [no]:
Data pattern [0xABCD]:
Loose, Strict, Record, Timestamp, Verbose[none]:
Sweep range of sizes [n]:
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 3.3.3.3, timeout is 2 seconds:
Packet sent with a source address of 2.2.2.2
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 12/29/60 ms

.

广告 广告

评论区