当前位置:网站首页>Router loopback port experiment
Router loopback port experiment
2022-07-19 05:20:00 【dafeng2773】

1. To configure IP
2. Realize the interconnection between the three devices , By enabling dynamic routing RIP
With R2 For example :
Router(config)#router rip // Enable RIP agreement
Router(config-router)#network 192.168.12.0 // Declare 192.168.12.0 Network segment
Router(config-router)#network 192.168.23.0 // Declare 192.168.23.0 Network segment
3. Add loopback port on three equipment
With R1 For example :
Router(config)#interface loopback 0
Router(config-if)#ip add 1.1.1.1 255.255.255.0
4. Add the route to the loopback port to the route table through static route
With R1 For example :
ip route 2.2.2.0 255.255.255.0 192.168.12.1
With R2 For example :
Router(config)#ip route 1.1.1.0 255.255.255.0 192.168.12.1
Router(config)#ip route 3.3.3.0 255.255.255.0 192.168.23.2
The whole network interworking between each loopback port can be realized
边栏推荐
- Baidu map realizes thermal map
- 2020-11-10
- vlookup函数的使用方法及实例
- cookie是否有效时间限定?如何设置cookie?手把手教你设置
- 获取数组中对象内部的数值最大与最小值多功能版及点名系统完整版并展示效果
- uni-app 条件编译#ifdef #endif 兼容多个终端
- Mongo DB aggregate operations and indexes
- 使用js实现安居客二级菜单及(注意事项和问题点演示)完整版
- Web3js development technology
- Continue from the previous issue: the remaining two methods of the rotation chart
猜你喜欢
随机推荐
web3js开发技术
Nacos configuration management
Excel计算本月剩余天数
Mongo DB aggregate operations and indexes
多功能(实现)封装函数
Excel imports long data and changes to 000 at the end
单臂路由配置
Continue from the previous issue: the remaining two methods of the rotation chart
路由器loopback口实验
Cesium 获取鼠标点击处经纬度的三种方法
es6新增-函数部分
uni-app 条件编译#ifdef #endif 兼容多个终端
H5如何获取内网IP和公网IP
ThreadLocal thread safety example and its principle
[AI] action recognition using simple neural network -- Based on coco key points
Wechat applet cloud development and use method-1
vlookup函数的使用方法及实例
指针进阶简单总结
BUUCTF 杂项——二维码
遍历的方法总结








