变态重口极致另类在线-波多久久夜色精品国产-波多野结衣在线观看一区-波多野结衣在线观看一区二区-污污的网站免费阅读-污污视频网址

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

Notes of JNCIP_OSPF

作者:  來源:  發布時間: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支持變長子網
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.
場景復現:r1上灌入3條靜態路由并且導入ospf are 10,r1/r2/r3/r4去掉stub或者nssa
r1手工創建3條靜態路由,然后導入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內部路由匯總
沒做匯總的輸出:
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上做內部匯總
[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引入的靜態路由進行匯總:
[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]  下一頁 尾頁

相關文章

文章評論

本類推薦文章

關于本站 | 網站幫助 | 廣告合作 | 下載聲明 | 友情連接 | 網站地圖
Copyright © 20098-2010 uzzf下載站. All Rights Reserved .
主站蜘蛛池模板: 日本大片久久久高清免费看 | 天堂中文资源在线8 | 国产成人精品一区二区免费 | 第一福利在线导航 | 欧美激情视频一区二区三区 | 欧美一区二区三区在观看 | 人人草人| 成年人网站免费看 | 深夜福利在线免费观看 | 男人搞女人视频 | 8x成人永久在线观看视频 | 日韩欧美亚洲中字幕在线播放 | 欧美日韩在线播一区二区三区 | 欧美成人伦理 | 日韩欧国产精品一区综合无码 | 妞干网免费视频观看 | 成人综合久久综合 | 精品国产一级在线观看 | 色猫av| 欧美午夜理伦三级理论三级 | 老司机午夜在线视频免费 | 精品国产_亚洲人成在线高清 | 五月婷婷精品 | 成人免费福利 | 波多野结衣免费在线视频 | 久久国产偷 | 日本在线天堂 | 国产一级大片 | 曰批免费动漫视频播放免费 | 免费三级大片 | 一级有奶水毛片免费看 | 亚洲欧美日韩中文高清一 | 国产日韩欧美一区二区三区在线 | 午夜一级免费视频 | 高清成人爽a毛片免费网站 高清国产精品久久久久 | 两性午夜又粗又大又爽视频 | 国产欧美日韩精品综合 | 欧美97人人模人人爽 | 国产亚洲精品国产福利在线观看 | 国产国语高清在线视频二区 | 性大毛片视频 |