1.网络拓扑
![图片[1]-1.2 静态路由-大赛人网](https://www.dsrw.com/wp-content/uploads/2023/03/图片7-13.png)
![图片[2]-1.2 静态路由-大赛人网](https://www.dsrw.com/wp-content/uploads/2023/03/图片8-14.png)
![图片[3]-1.2 静态路由-大赛人网](https://www.dsrw.com/wp-content/uploads/2023/03/图片9-13.png)
2.基本配置
1)R1配置
<Huawei>system-view
[Huawei]sysname R1
[R1]interface GigabitEthernet 0/0/0
[R1-GigabitEthernet0/0/0]ip address 12.1.1.1 255.255.255.0
[R1-GigabitEthernet0/0/0]quit
[R1]interface GigabitEthernet 0/0/1
[R1-GigabitEthernet0/0/1]ip address 192.168.1.254 255.255.255.0
[R1]ip route-static 192.168.2.0 255.255.255.0 12.1.1.2
[R1]display ip routing-table protocol static
Destination/Mask Proto Pre Cost Flags NextHop Interface
192.168.2.0/24 Static 60 0 RD 12.1.1.2 GigabitEthernet0/0/0
2)R1配置
<Huawei>system-view
[Huawei]sysname R2
[R2]interface GigabitEthernet 0/0/0
[R2-GigabitEthernet0/0/0]ip address 12.1.1.2 255.255.255.0
[R2-GigabitEthernet0/0/1]quit
[R2]interface GigabitEthernet 0/0/1
[R2-GigabitEthernet0/0/1]ip address 192.168.2.254 255.255.255.0
[R2]ip route-static 192.168.1.0 24 12.1.1.1
[R2]display ip routing-table protocol static
Destination/Mask Proto Pre Cost Flags NextHop Interface
192.168.1.0/24 Static 60 0 RD 12.1.1.1 GigabitEthernet0/0/0
3)测试
![图片[4]-1.2 静态路由-大赛人网](https://www.dsrw.com/wp-content/uploads/2023/03/图片10-11.png)
![图片[5]-1.2 静态路由-大赛人网](https://www.dsrw.com/wp-content/uploads/2023/03/图片11-13.png)
4.静态路由配置注意点
1)出接口为BMA(广播型多路访问)网络类型(以太网),需要指定下一条IP地址。
[R2]ip route-static 192.168.1.0 24 12.1.1.1
2)如果出接口为点对点(P2P)网络类型,仅需指定出接口。
![图片[6]-1.2 静态路由-大赛人网](https://www.dsrw.com/wp-content/uploads/2023/03/图片12-11.png)
[R1]ip route-static 192.168.2.0 255.255.255.0 Serial 0/0/0
[R2]ip route-static 192.168.1.0 24 Serial 0/0/0
3)出接口为NBMA(非广播多路访问)网络类型,需要指定下一条IP地址。
![图片[7]-1.2 静态路由-大赛人网](https://www.dsrw.com/wp-content/uploads/2023/03/图片13-11-1024x338.png)
[R1]ip route-static 3.3.3.0 255.255.255.0 13.1.1.3
4.默认路由
缺省路由是替补路由,只有当其他的路由都不可达时才会使用缺省路由,缺省路由适合用于边缘路由器。
![图片[8]-1.2 静态路由-大赛人网](https://www.dsrw.com/wp-content/uploads/2023/03/图片14-9-1024x268.png)
1 2
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
请登录后查看评论内容