#|HCIP---网络类型实验

一、实验要求 #|HCIP---网络类型实验
文章图片

二、实验拓扑 #|HCIP---网络类型实验
文章图片

三、实验配置 1.配置各个接口上的IP地址

[r1]int g0/0/0 [r1-GigabitEthernet0/0/0]ip address 192.168.1.1 24 [r1-GigabitEthernet0/0/0]int s4/0/0 [r1-Serial4/0/0]ip address 15.1.1.1 24[r2]int g0/0/0 [r2-GigabitEthernet0/0/0]ip address 192.168.2.1 24 [r2-GigabitEthernet0/0/0]int s4/0/0 [r2-Serial4/0/0]ip address 25.1.1.1 24[r3]int g0/0/0 [r3-GigabitEthernet0/0/0]ip address 192.168.3.1 24 [r3-GigabitEthernet0/0/0]int s4/0/0 [r3-Serial4/0/0]ip address 35.1.1.1 24[r4]int g0/0/1 [r4-GigabitEthernet0/0/1]ip address 192.168.4.1 24 [r4-GigabitEthernet0/0/1]int g0/0/0 [r4-GigabitEthernet0/0/0]ip address 45.1.1.1 24[r5]int l0 [r5-LoopBack0]ip address5.5.5.5 24 [r5-LoopBack0]int g0/0/0 [r5-GigabitEthernet0/0/0]ip address 45.1.1.2 24 [r5-GigabitEthernet0/0/0]int s3/0/0 [r5-Serial3/0/0]ip address 15.1.1.2 24 [r5-Serial3/0/0]int s3/0/1 [r5-Serial3/0/1]ip address 25.1.1.2 24 [r5-Serial3/0/1]int s4/0/0 [r5-Serial4/0/0]ip address 35.1.1.2 24

2.写出各个私网的缺省全部指R5公网区域
[r1]ip route-static 0.0.0.00 15.1.1.2 [r2]ip route-static 0.0.0.0 0 25.1.1.2 [r3]ip route-static 0.0.0.0 0 35.1.1.2 [r4]ip route-static 0.0.0.0 0 45.1.1.2

#|HCIP---网络类型实验
文章图片

简单测试一下公网,已经全部通了,养成做好一个配置就测试一次 ,避免到最后所有配置做完了在测试,遇到错误不好排错。
3.做pap chap认证
[r1]interfaces4/0/0 [r1-Serial4/0/0]ppppaplocal-usera password cipher 123456

#|HCIP---网络类型实验
文章图片

这里先关闭R5上对应的接口,然后再打开,这样协议才能通
[r5-aaa]local-user b privilege level15 password cipher 123456 [r5-aaa]local-user b service-type ppp [r5]int s3/0/1 [r5-Serial3/0/1]ppp authentication-mode chap [r5-Serial3/0/1]shutdown [r5-Serial3/0/1]undo shutdown [r2-Serial4/0/0]ppp chap user b [r2-Serial4/0/0]ppp chap passwordcipher 123456

4.改hdlc封装
[r3]interfaces4/0/0 [r3-Serial4/0/0]link-protocol hdlc Warning: The encapsulation protocol of the link will be changed. Continue? [Y/N] :y Apr2 2022 22:07:53-08:00 r3 %%01IFNET/4/CHANGE_ENCAP(l)[0]:The user performed the configuration that will change the encapsulation protocol of the link and th en selected Y. [r5]int Serial 4/0/0 [r5-Serial4/0/0]link-protocol hdlc Warning: The encapsulation protocol of the link will be changed. Continue? [Y/N] :y

#|HCIP---网络类型实验
文章图片

5.做GRE ,MGRE
R1: interface Tunnel0/0/0 ip address 10.1.1.1 255.255.255.0 undo rip split-horizon tunnel-protocol gre p2mp source 15.1.1.1 nhrp entry multicast dynamic nhrp network-id 100[r1]interfaceTunnel 0/0/1 [V200R003C00] # interface Tunnel0/0/1 ip address 10.1.2.1 255.255.255.0 tunnel-protocol gre source 15.1.1.1 destination 45.1.1.1 #

R2: interface Tunnel0/0/0 ip address 10.1.1.2 255.255.255.0 tunnel-protocol gre p2mp source Serial4/0/0 nhrp network-id 100 nhrp entry 10.1.1.1 15.1.1.1 register #

[r3]interfaceTunnel 0/0/0 [V200R003C00] # interface Tunnel0/0/0 ip address 10.1.1.3 255.255.255.0 tunnel-protocol gre p2mp source Serial4/0/0 nhrp network-id 100 nhrp entry 10.1.1.1 15.1.1.1 register #

R4:
[r4]interface Tunnel 0/0/0 [V200R003C00] # interface Tunnel0/0/0 ip address 10.1.2.2 255.255.255.0 tunnel-protocol gre source 45.1.1.1 destination 15.1.1.1 #

6.跑rip协议
[r1]rip 1 [r1-rip-1]v 2 [V200R003C00] # rip 1 version 2 network 192.168.1.0 network 10.0.0.0

[r2]rip 1 [r2-rip-1]v 2 [V200R003C00] # rip 1 version 2 network 192.168.2.0 network 10.0.0.0 #

[r3]rip 1 [r3-rip-1]v [r3-rip-1]version 2 [V200R003C00] # rip 1 version 2 network 10.0.0.0 network 192.168.3.0

7.手动配置电脑的IP
#|HCIP---网络类型实验
文章图片

其余的就按照网关,掩码,IP地址配就完了。
#|HCIP---网络类型实验
文章图片

四、测试信息 #|HCIP---网络类型实验
文章图片

【#|HCIP---网络类型实验】大学生活也基本上过了一半了,在寝室玩游戏的始终是玩游戏的,他们的聊天里面也只有游戏,都是摆的自己今天打游戏遇到的什么队友 ,遇到什么好看的皮肤。。。 现在跟宿舍里玩游戏的同学越走越远了,也许注定我们不是同一个世界的人吧,始终坚信道不同吧,三观也各不相同,不强求。大学四年,还剩俩年,渐渐地对专业、班级没有了归属感,我宁愿在我的小圈子里努力做好自己的事情。室友都是年纪比我大的,都是二十几岁的人,每天就指望着游戏来满足自己的成就感,这种生活我实在不喜欢。人还是应该努力一点的。不然你在这干嘛,人生就这么一次,不要浪费呀!你不努力,永远有别人比你更努力。生活总得有点向往吧。 在学习过程发现同龄人还有很多很优秀的同学,他们才是志同道合的人,唉,算了,发什么牢骚啊,做好自己即可了。该睡觉了,大家晚安吧!

    推荐阅读