首先說下這兩條命令的區別: www.2cto.com
1 :如果是填寫下一跳路由器直連線口的ip位址,則該 路由器的管理距離是1;如果是填寫本地路由器的外出介面則該路由器的管理距離是0。——這都不是重點。
2 :本地路由器出口命令僅能用在點對點的鏈路上,比如序列線路,序列線路在資料鏈路層封裝的協議一般用hdlc或者ppp;這兩個協議時點對點的協議。如果 封裝的幀中繼協議,因為幀中繼鏈路是非廣播多路訪問,也是多路訪問鏈路,還有乙太網這種多路訪問的鏈路,路由器將不知道把包發往那一台路由器,路由器不知 道要發往哪乙個ip位址,也就無法完成arp的解析過程,在不知道下一跳裝置的mac位址的情況下,肯定無法完成ping包的資料封裝。
www.2cto.com
原理是以上那兩個,但實際中填寫本地路由器的外出介面也可 以連通,這是因為思科有乙太網介面的**arp和靜態路由共同作用。如果清除掉**arp,這裡要注意如果是使用原來的裝置要清楚掉arp快取。
實際配置:模擬器裡並不支援no ip proxy-arp
實際裝置連線大致 如圖:
先做靜態路由並且都是填寫本地路由器的外出介面。都通了之後的……
router1上的配置:
router#show ip route ——一開始可以ping通時檢視下路由表
codes: c - connected, s - static, r - rip, m - mobile, b - bgp
d - eigrp, ex - eigrp external, o - ospf, ia - ospf inter area
n1 - ospf nssa external type 1, n2 - ospf nssa external type 2
e1 - ospf external type
i - is-is, su - is-is summary, l1 - is-is level-1, l2 - is-is level-2
ia - is-is inter area, * - candidate default, u - per-user static route
o - odr, p - periodic downloaded static route
gateway of last resort is not set
s 1.0.0.0/8 is directly connected, fastethernet0/1
c 2.0.0.0/8 is directly connected, fastethernet0/1
c 3.0.0.0/8 is directly connected, fastethernet0/0
router#clear arp ——清除arp快取
router(config)#int f0/1
router(config-if)#no ip proxy-arp—— 清除**arp
router(config-if)#exit
router(config-if)#no shut
router(config-if)#exit
router(config)#exit
router#show ip route
codes: c - connected, s - static, r - rip, m - mobile, b - bgp
d - eigrp, ex - eigrp external, o - ospf, ia - ospf inter area
n1 - ospf nssa external type 1, n2 - ospf nssa external type 2
e1 - ospf external type 1, e2 - ospf external type 2
i - is-is, su - is-is summary, l1 - is-is level-1, l2 - is-is level-2
ia - is-is inter area, * - candidate default, u - per-user static route
o - odr, p - periodic downloaded static route
gateway of last resort
c 3.0.0.0/8 is directly connected, fastethernet0/0 ——只有直連的網路了
www.2cto.com
在另乙個路由器做同樣配置,之後就不通了。
這是之前ping通時的圖:pc1→pc0
這是清除完之後的圖:
incrediBuild的乙個細節問題
incredibuild 最近搞的高通方案編譯要花好多時間,用連機編譯方式,工程是makefile檔案,是用的是該工具的xge引擎。環境 多個agent和乙個coordinator一起,coordinator負責協同工作為server,agent是執行者。工作 當某個agent提交編譯,coordi...
源譯 web url函式的乙個細節問題
web url 步驟包含了思考時間,即使是在沒有指定的情況下。解決方式 即使沒有指定思考時間,系統也會自動為web url default.asp 步驟指定思考時間。在重播思考時間啟用時該步驟會有10秒鐘的暫停。忽略思考時間可以使它立即直接訪問。在analysis中如果選中篩選器中的包含思考時間選項...
Junit的乙個小細節
junit的測試時,如果乙個類中有多個jt那麼,jt的執行順序是隨機的,這存在隱患,例如增查刪三個方法的正確順序是 增 查 刪,這個時候可以在類上面新增 fixmethodorder methodsorters.name ascending 表明按照方法的名字來 publicclass produc...