思科路由模拟器操作 来大神,急求 !1 高分!!
发布网友
发布时间:2022-05-10 20:37
我来回答
共2个回答
热心网友
时间:2023-10-29 21:57
PC1---192.168.10.1/24
pc 2---192.168.10.2/24
pc3---192.168.10.3/24
pc4---192.168.20.1/24
pc5--192.168.20.2/24
pc6-- 192.168.20.3/24
R1----f0/0--192.168.10.254/24
s0/0 10.1.1.1/24
R2----f0/0--192.168.20.254/24
s0/0 10.1.1.2/24
在R1上配条静态路由,
ip route 192.168.20.0 255.255.255.0 10.1.1.2
在R2 上同样配条静态。
ip route 192.168.10.0 255.255.255.0 10.1.1.1
pc 上在网关地址就是路由的f0/0 地址,
我相信这已经是非常清楚了,再不知道怎么弄我也没有办法了
热心网友
时间:2023-10-29 21:58
R1:
enable
configure terminal
interface f0/0
ip add 192.168.1.1 255.255.255.0
no shutdown
interface s1/0
ip add 192.168.2.1 255.255.255.0
no shutdown
exit
ip dhcp pool xxx
network 192.168.1.0 255.255.255.0
exit
ip route 0.0.0.0 0.0.0.0 192.168.2.2
exit
copy running-config start-config
R2:
enable
configure terminal
interface f0/0
ip add 192.168.3.1 255.255.255.0
no shutdown
interface s1/0
ip add 192.168.2.2 255.255.255.0
no shutdown
interface f0/1
ip add 192.168.4.1 255.255.255.0
no shutdown
exit
ip dhcp pool xxx
network 192.168.3.0 255.255.255.0
exit
ip route 0.0.0.0 0.0.0.0 192.168.2.1
exit
copy running-config start-config