cisco路由器ping不通

2024-12-14 04:37:26
推荐回答(2个)
回答1:

R1

    int f0/0 

    ip add 192.168.1.1 255.255.255.0

    no shut

    int f0/1

    ip add 192.168.2.1 255.255.255.0 

    no shut

    ip route 192.168.3.0 255.255.255.0 192.168.2.2

R2

    int f0/0 

    ip add 192.168.2.2 255.255.255.0

    no shut

    int f0/1

    ip add 192.168.3.1 255.255.255.0 

    no shut

    ip route 192.168.1.0 255.255.255.0 192.168.2.1

 

 

 

 

 

回答2:

ip route 192.168.3.0 255.255.255.0 192.168.2.2 一定注意下一跳是一个固定的IP地址,而不能是一个网络地址,是到达目标的下一步由谁去转发。
同样R2上的路由ip route 192.168.1.0 255.255.255.0 192.168.2.1

我怎么看着这个配置不像是路由器的配置,而像三层交换机的配置 ,也许是我落伍了,新版本的IOS会成为一样的??