router 0(x=2)--------以下为命令
en
conf t
int f0/0 !进入端口f0/0
ip add 160.68.30.1 255.255.255.252 !配置IP地址和子网掩码
no sh !激活端口
int f0/1
ip add 192.168.2.254 255.255.255.0
no sh
int f1/0
ip add 160.65.30.2 255.255.255.252
no sh
exit
ip route 192.168.1.0 255.255.255.0 160.68.30.2 !配置到192.168.1.0/24网段的下一跳路由是160.68.30.2
ip route 192.168.3.0 255.255.255.0 160.65.30.1
end
wr
R1--------以下为命令
en
conf t
int f0/1
ip add 160.68.30.2 255.255.255.252
no sh
int f0/0
ip add 192.168.1.254 255.255.255.0
no sh
exit
ip route 192.168.2.0 255.255.255.0 160.68.30.1
ip route 192.168.3.0 255.255.255.0 160.68.30.1
end
wr
R2(x+1=3)--------以下为命令
en
conf t
int f0/1
ip add 160.65.30.1 255.255.255.252
no sh
int f0/0
ip add 192.168.3.254 255.255.255.0
no sh
exit
ip route 192.168.2.0 255.255.255.0 160.65.30.2
ip route 192.168.1.0 255.255.255.0 160.65.30.2
end
wr
PC0配置
ip地址:192.168.1.11
子网掩码:255.255.255.0
网关:192.168.1.254
PC1配置
ip地址:192.168.2.11
子网掩码:255.255.255.0
网关:192.168.2.254
PC2配置
ip地址:192.168.3.11
子网掩码:255.255.255.0
网关:192.168.3.254
配好路由接口地址后
在路由器全局模式下
ip route a.b.c.d netmask interface
你的拓扑图
r1配置
ip route 160.65.30.0 255.255.255.252 f0/1
ip route 192.168.x.0 255.255.255.0 f0/1
ip route 192.168.x+1.0 255.255.255.0 f0/1
r2配置
ip route 192.168.1.0 255.255.255.0 f0/0
ip route 192.168.x+1.0 255.255.255.0 f1/0
r3配置
ip route 192.168.x.0 255.255.255.0 f0/1
ip route 160.68.30.0 255.255.255.252 f0/1
ip route 192.168.1.0 255.255.255.0 f0/1
记得给pc分配地址跟网关
简单来说,在所有路由器上配置其非直连路由。针对这个拓扑图,在每一个路由器上分别配置两条非直连路由。注意一定配置的是非直连路由,直连路由是可以自动获得的,不需要配置
在每个路由器上配置其非直连路由。ip route 目标网段 子网掩码 下一跳地址。
在配置模式下输入 no ip routing 禁用路由功能
2:在接口模式下输入 switchport 启用二层交换端口
2步即可。