如何使三层交换机下的PC机和两个路由器下的PC机ping通

2024-11-15 06:45:14
推荐回答(2个)
回答(1):

你的router1的f0/1是lan口还是wan口?如果lan口用vlanif300 两端同一个网段即可。
如果wan口,那要把switch2的f0/1口设为access 此口属于300,或者混合模式,混合模式的话要pvid 300,untagged vlan 30。
要在switch2上写静态路由:ip route-static 0.0.0.0 0 192.168.30.1
在router1上写静态路由:
ip route-static 192.168.10.0 0.0.0.255 192.168.30.2
ip route-static 192.168.20.0 0.0.0.255 192.168.30.2
要在rip里引入静态路由 import-route static cost 60
或者直接在switch2上也运行RIP协议。
NAT在s0/0
nat static global 192.168.30.100 inside 192.168.20.2

回答(2):

二层三层之间做trunk,三层与router1之间互写静态路由。