带上源地址的ping有什么意义?做回程路由又有什么意义? 比如下面的这个场景下
测试图
运行下面的命令(R4上)
ping 192.168.1.2 source 4.4.4.4 ping 5.5.5.5 source 4.4.4.4
这两个都能ping通,有什么意义? 那么假如 ping 192.168.1.2 source 4.4.4.4
这一跳ping不通又可能是因为什么?
假如我不在R4与R5上运行ospf协议,这两个就ping不同,这是为什么? R4上有4.4.4.4与192.168.1.1的路由, R5上有4.4.4.4与192.168.1.1的路由, 这两个又是直连的,理应R4把所有的路由都发给R5才对呀. 但未什么会ping不通?
//附上我现在的配置文件
//R4上的配置 conf ter interface loop 1 ip address 4.4.4.4 255.255.255.255 no shutdown ! conf ter interface fa0/1 ip address 192.168.1.1 255.255.255.0 no shutdown ! router ospf 1 network 4.4.4.4 0.0.0.0 area 0 network 192.168.1.1 0.0.0.255 area 0 !
//R5上的配置 conf ter interface loop 1 ip address 5.5.5.5 255.255.255.255 no shutdown ! conf ter interface fa0/1 ip address 192.168.1.2 255.255.255.0 no shutdown ! router ospf 1 network 5.5.5.5 0.0.0.0 area 0 network 192.168.1.2 0.0.0.255 area 0 !
|