当前位置:网站首页>HCIA_RIP实验
HCIA_RIP实验
2022-07-17 00:16:00 【 ᝰꫛꫀꪝ】
实验需求
1、R3环回为3.3.3.0/24
2、其他基于192.168.1.0/24进行划分
3、r1/2 均存在两个环回
4、整个网络运行RIPV2,但不能直接宣告R3的环回
5、全网可达,保障更新安全,减少路由条目数量,避免环路
实验拓扑

分析过程
地址划分:
192.168.1.0/24
192.168.1.0/26
192.168.1.0/27
192.168.1.32/27
192.168.1.64/26
192.168.1.64/27
192.168.1.96/27
192.168.1.128/26
192.168.1.128/30
192.168.1.132/30
192.168.1.192/26
在R1、R2、R3上运行RIPV2协议,并且宣告对于网段
对于R3上面的环回进行缺省路由的设置
然后进行响应的路由汇总
在R1与R2之间做一种加密,R2与R3之间再做一种加密
配置内容
R1:
[r1]int g 0/0/0
[r1-GigabitEthernet0/0/0]ip add 192.168.1.129 30
[r1]int l0
[r1-LoopBack0]ip add 192.168.1.1 27
[r1-LoopBack0]int l1
[r1-LoopBack1]ip add 192.168.1.33 27
[r1]rip
[r1-rip-1]version 2
[r1-rip-1]network 192.168.1.0
[r1-GigabitEthernet0/0/0]rip summary-address 192.168.1.0 255.255.255.192
[r1-GigabitEthernet0/0/0]rip authentication-mode md5 usual cipher 123
R2:
[r2]int g 0/0/0
[r2-GigabitEthernet0/0/0]ip add 192.168.1.130 30
[r2-GigabitEthernet0/0/0]int g 0/0/1
[r2-GigabitEthernet0/0/1]ip add 192.168.1.133 30
[r2-GigabitEthernet0/0/1]int l0
[r2-LoopBack0]ip add 192.168.1.65 27
[r2-LoopBack0]int l1
[r2-LoopBack1]ip add 192.168.1.97 27
[r2]rip
[r2-rip-1]version 2
[r2-rip-1]network 192.168.1.0
[r2-GigabitEthernet0/0/0]rip authentication-mode md5 usual cipher 123
[r2-GigabitEthernet0/0/0]rip summary-address 192.168.1.64 255.255.255.192
[r2-GigabitEthernet0/0/1]rip summary-address 192.168.1.64 255.255.255.192
[r2-GigabitEthernet0/0/1]rip authentication-mode md5 usual cipher 456
R3:
[r3]int g 0/0/0
[r3-GigabitEthernet0/0/0]ip add 192.168.1.134 30
[r3-GigabitEthernet0/0/0]int l0
[r3-LoopBack0]ip add 3.3.3.3 24
[r3]rip
[r3-rip-1]version 2
[r3-rip-1]network 192.168.1.0
[r3-GigabitEthernet0/0/0]rip authentication-mode md5 usual cipher 456
[r3-rip-1]default-route originate
结果验证

R1路由表:

R2路由表:

R3路由表:

边栏推荐
- 性能瓶颈定位XMind
- 并发虚拟用户、RPS、TPS的解读
- Detailed explanation of metauniverse public chain caduceus: a creative platform specially built for metauniverse application
- 网络层协议和IP数据包的格式(详解)
- PowerStor500T报错0x01806803
- Find() (if the name is used by too many people, I will add words)
- String Full Permutation Problem
- MySQL差删改查用户登录修改密码
- "Visual C # from getting started to mastering" personal learning arrangement
- [unity Editor Extension] displays the memory size of all files in the resource directory
猜你喜欢
随机推荐
How to configure multiple SSH keys for novices (easy to understand hand-in-hand teaching)
Uniapp wechat applet login (authorize wechat first and then mobile phone number) - (1)
安装.NET提示“无法建立到信任根颁发机构的证书链”(方法简单有下载地址)
This article only commemorates the modulus of negative numbers
FTP服务
Performance bottleneck positioning XMIND
Performance traffic playback
Firewalld 防火墙
Sword finger offer 48 The longest substring without repeated characters
Nmon使用方法
安装软件提示无法定位程序输入点AddDllDirectory于动态链接库Kernel32.dll上(文末有下载地址)
[unity development tips] unity mixer mixer controls global volume
Dynamic programming - 01 knapsack problem
The solution to the bounce and offset of unity3d game characters when jumping to the ground
单片机之数码管秒表的动态显示
Image quality evaluation indicators: SNR, PSNR, MSE and SSIM
深入性能测试数据分析
If a hunter shoots a rabbit with a gun
WINRAR命令拷贝指定文件夹为压缩文件,调用计划任务进行备份。
Longest ascending subsequence - Optimization








