静态路由的组成
在华为路由器中,使用ip route-static命令配置静态路由
静态路由主要包含以下要素:
- 目的地址:数据包要到达的目标网络地址
- 子网掩码:指定目的地址的网络掩码
- 下一路地址:数据包转发到的下一个路由器的接口IP地址,通常指定给对端接口地址
拓扑需要:
如图中所示,使用静态路由使PC1、PC2、PC3可以互相通信
AR1配置
1 2 3 4 5 6 7 8 9 10
| sysname R1 interface GigabitEthernet 0/0/0 ip address 10.1.1.1 255.255.255.0 interface GigabitEthernet 0/0/1 ip address 192.168.1.1 255.255.255.0
# 静态路由配置 ip route-static 20.1.1.0 255.255.255.0 10.1.1.2 ip route-static 192.168.2.0 255.255.255.0 10.1.1.2 ip route-static 192.168.3.0 255.255.255.0 10.1.1.2
|
AR2配置
1 2 3 4 5 6 7 8 9 10 11 12
| sysname R2 interface GigabitEthernet 0/0/0 ip address 10.1.1.2 255.255.255.0 interface GigabitEthernet 0/0/1 ip address 20.1.1.1 255.255.255.0 interface GigabitEthernet 0/0/2 ip address 192.168.2.1 255.255.255.0
# 静态路由配置 ip route-static 192.168.1.0 255.255.255.0 10.1.1.1 ip route-static 192.168.3.0 255.255.255.0 20.1.1.2
|
SW1配置
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| sysname SW1 vlan batch 10 20 interface Vlanif 10 ip address 20.1.1.2 255.255.255.0 interface Vlanif20 ip address 192.168.3.1 255.255.255.0 interface GigabitEthernet 0/0/1 port link-type access port default vlan 10 interface GigabitEthernet0/0/2 port link-type access port default vlan 20 # 静态路由配置 ip route-static 192.168.1.0 255.255.255.0 20.1.1.1 ip route-static 192.168.2.0 255.255.255.0 20.1.1.1
|