精品久久看,欧美成人久久一级c片免费,日本加勒比在线精品视频,国产一区二区三区免费大片天美,国产成人精品999在线,97理论三级九七午夜在线观看

軟件首頁 |  文章首頁
最新更新 軟件分類 設為首頁 加入收藏 聯(lián)系我們
當前位置:首頁文章首頁 IT學院 IT技術

Notes of JNCIP_OSPF

作者:  來源:  發(fā)布時間:2011-4-3 7:00:19  點擊:

 

ISIS case study卻可以這樣寫?
[edit logical-routers r7 policy-options policy-statement adv-ospf]
lunsui@lab# show
term 1 {
from {
protocol ospf;
route-filter 192.168.0.0/16 orlonger;
route-filter 172.16.40.0/29 longer;
}
then accept;
}
1.OSPF支持變長子網(wǎng)
2.172.16.40/29可以和protocol ospf成功匹配


問題八:R3 & R4其中一方配置為ABR且限制3/8,則R5還是可以學到3/8路由,必須兩個同時配置?


問題九:R1上同時引入2個policy時注意,不能像下面這樣寫,因為10.0.5/24到policy static匹配到term 2會被reject,從而跳出policy chain,最終無法將路由宣告出去,這里要么刪除policy static的term 2,要么刪除policy static
lab@FSJ# show protocols
ospf {
export [ static DIRECT ];
area 0.0.0.10 {
nssa;
interface fxp2.12;
interface fxp2.23;
interface fxp2.24;
}
}


lab@FSJ# show policy-options
policy-statement static {
term 1 {
from {
protocol static;
route-filter 3.0.0.0/8 exact;
}
then {
metric 10;
external {
type 1;
}
accept;
}
}
term 2 {
then reject;
}
}
policy-statement DIRECT {
term 1 {
from {
protocol direct;
route-filter 10.0.5.0/24 exact;
}
then {
metric 50;
tag 420;
accept;
}
}
term 2 {
then reject;
}
}

問題十:
There is no mechanism in JUNOS software to summarize or filter type 5 LSAs using area-range statements. Options for the control of type 5 LSAs include the configuration of external route aggregates at the source ASBR, or the deployment of stub areas, which automatically filter external routes.
場景復現(xiàn):r1上灌入3條靜態(tài)路由并且導入ospf are 10,r1/r2/r3/r4去掉stub或者nssa
r1手工創(chuàng)建3條靜態(tài)路由,然后導入ospf area 10
[edit logical-routers r1]
lab@OLIVE# show
interfaces {
fxp1 {
unit 12 {
vlan-id 12;
family inet {
address 10.0.4.6/30;
}
family iso;
}
unit 13 {
vlan-id 13;
family inet {
address 10.0.4.14/30;
}
family iso;
}
unit 55 {
vlan-id 55;
family inet {
address 10.0.5.1/24;
}
}
}
lo0 {
unit 1 {
family inet {
address 10.0.6.1/32;
}
family iso {
address 49.0002.1111.1111.1111.00;
}
}
}
}
protocols {
ospf {
export [ STAT DIRECT ];
area 0.0.0.10 {
interface fxp1.13;
interface fxp1.12;
}
}
}
policy-options {
policy-statement STAT {
term 1 {
from protocol static;
then accept;
}
}
policy-statement DIRECT {
term 1 {
from {
protocol direct;
route-filter 10.0.5.0/24 exact;
}
then {
metric 50;
tag 420;
accept;
}
}
}
}
routing-options {
static {
route 3.0.2.0/24 reject;
route 3.0.1.0/24 reject;
route 3.0.3.0/24 reject;
}
}

然后r1/r2/r3/r4去掉stub或者nssa配置


r5上驗證匯總:
-1).area 10內(nèi)部路由匯總
沒做匯總的輸出:
lab@OLIVE# run show route 10.0.4/22 logical-router r5

inet.0: 33 destinations, 33 routes (33 active, 0 holddown, 0 hidden)
+ = Active Route, - = Last Active, * = Both

10.0.4.0/30 *[OSPF/10] 00:00:46, metric 3
> to 10.0.2.2 via fxp2.35
to 10.0.2.10 via fxp2.45
10.0.4.4/30 *[OSPF/10] 00:00:46, metric 3
> to 10.0.2.2 via fxp2.35
to 10.0.2.10 via fxp2.45
10.0.4.8/30 *[OSPF/10] 00:00:46, metric 2
> to 10.0.2.10 via fxp2.45
10.0.4.12/30 *[OSPF/10] 00:00:46, metric 2
> to 10.0.2.2 via fxp2.35
10.0.5.0/24 *[OSPF/150] 00:00:46, metric 50, tag 420
> to 10.0.2.2 via fxp2.35
to 10.0.2.10 via fxp2.45
10.0.6.1/32 *[OSPF/10] 00:00:46, metric 2
> to 10.0.2.2 via fxp2.35
10.0.6.2/32 *[OSPF/10] 00:00:46, metric 2
> to 10.0.2.10 via fxp2.45
-2).在r3/r4上做內(nèi)部匯總
[edit logical-routers r3]
lab@OLIVE# set protocols ospf area 10 area-range 10.0.4/22

lab@OLIVE# run show route 10.0.4/22 logical-router r5

inet.0: 28 destinations, 28 routes (28 active, 0 holddown, 0 hidden)
+ = Active Route, - = Last Active, * = Both

10.0.4.0/22 *[OSPF/10] 00:00:03, metric 4
to 10.0.2.2 via fxp2.35
> to 10.0.2.10 via fxp2.45
10.0.5.0/24 *[OSPF/150] 00:00:04, metric 50, tag 420
> to 10.0.2.2 via fxp2.35
to 10.0.2.10 via fxp2.45

-3).嘗試在r3/r4上對r1引入的靜態(tài)路由進行匯總:
[edit logical-routers r3]
lab@OLIVE# show protocols
ospf {
area 0.0.0.10 {
area-range 3.0.0.0/8;
interface fxp2.13;
interface fxp1.23 {
metric 2;
}
}

可以看到area-range 3.0.0.0/8無法對extern路由進行匯總
lab@OLIVE# run show route 3/8 logical-router r5

inet.0: 28 destinations, 28 routes (28 active, 0 holddown, 0 hidden)
+ = Active Route, - = Last Active, * = Both

3.0.1.0/24 *[OSPF/150] 00:03:13, metric 0, tag 0
> to 10.0.2.2 via fxp2.35
3.0.2.0/24 *[OSPF/150] 00:03:13, metric 0, tag 0
> to 10.0.2.2 via fxp2.35
3.0.3.0/24 *[OSPF/150] 00:03:13, metric 0, tag 0
> to 10.0.2.2 via fxp2.35

Tags:

NotesJNCIPOSPF
首頁 上一頁 [2] [3] [4] [5]  下一頁 尾頁

相關文章

文章評論

本類推薦文章

關于本站 | 網(wǎng)站幫助 | 廣告合作 | 下載聲明 | 友情連接 | 網(wǎng)站地圖
Copyright © 20098-2010 uzzf下載站. All Rights Reserved .
主站蜘蛛池模板: 免费观看色视频 | 婷婷天堂 | 欧美一区二区在线 | 色爱区综合五月激情 | 免费免播放器在线视频观看 | 九月丁香激情综合婷婷玉立 | 日韩视频一区 | 毛片福利 | 国产欧美精品一区aⅴ影院 国产欧美精品午夜在线播放 | 亚洲综合色婷婷在线观看 | 97公开免费视频 | 国内精品久久久久久久97牛牛 | 奇米第四影视 | 日韩精品午夜视频一区二区三区 | 日韩在线视频免费播放 | 免费一级片观看 | 五月花在线视频 | 国产在线成人精品 | 精品伊人久久 | 国产永久一区二区三区 | 手机看片国产免费 | 国产农村1级毛片 | 啪啪一级片| 99re热| 久久国产综合 | 欧美激情亚洲精品日韩1区2区 | 国产在线精品一区二区 | 国产a毛片高清视 | 99久久99久久久99精品齐 | 在线精品视频免费观看 | 精品视频在线看 | 99精品欧美 | 免费看啪啪网站 | 奇迹少女第5季免费观看 | 开心网五月天 | 亚洲国产经典 | 国产毛片一区二区三区 | 久久精品国产欧美 | 青青草成人网 | 老阿姨露脸69式 | 成人精品 |