我的编程空间,编程开发者的网络收藏夹
学习永远不晚

OSPF ABR Type 3 LSA

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

OSPF ABR Type 3 LSA

Feature Overview
The OSPF ABR Type 3 LSA Filtering feature extends the ability of an ABR that is running the OSPF protocol to filter type 3 link-state advertisements (LSAs) that are sent between different OSPF areas.This feature allows only packets with specified prefixes to be sent from one area to another area and restricts all packets with other prefixes. This type of area filtering can be applied out of a specific OSPF area, into a specific OSPF area, or into and out of the same OSPF areas at the same time. This feature is supported by the addition of the area filter-list command in router configuration mode.
Benefits
The OSPF ABR Type 3 LSA Filtering feature gives the administrator improved control of route distribution between OSPF areas.
 
拓扑说明:
R3的S2/1与R5的S2/1通过FR连接
R4的S2/0与R5的S2/0通过FR连接
R3,R4和R6的F0/0通过以太网交换机连接
R3 S2/1: 1.1.35.3/24 F0/0: 1.1.46.3/24
R4 S2/0: 1.1.45.4/24 F0/0: 1.1.46.4/24
R5 S2/0: 1.1.45.5/24 S2/1: 1.1.35.5/24
R6 F0/0: 1.1.46.6/24
 
实验目的
在R3上过滤LSA3,看过滤前后的区别
 
初始配置
R3
conf t
int f0/0
ip add 1.1.46.3 255.255.255.0
no shut
int s2/1
ip add 1.1.35.3 255.255.255.0
encap f
no arp f
no frame inv
frame map ip 1.1.35.5 315 b
no shut
router ospf 1
nei 1.1.35.5
net 1.1.35.3 0.0.0.0 a 0
net 1.1.46.3 0.0.0.0 a 1
end
 
R4
conf t
int f0/0
ip add 1.1.46.4 255.255.255.0
no shut
int s2/0
ip add 1.1.45.4 255.255.255.0
encap f
no arp f
no frame inv
frame map ip 1.1.45.5 405 b
band 64
no shut
router ospf 1
nei 1.1.45.5
net 1.1.45.4 0.0.0.0 a 0
net 1.1.46.4 0.0.0.0 a 1
end

R5
conf t
int s2/0
ip add 1.1.45.5 255.255.255.0
encap f
no arp f
no frame inv
frame map ip 1.1.45.4 504 b
no shut
int s2/1
ip add 1.1.35.5 255.255.255.0
encap f
no arp f
no frame inv
frame map ip 1.1.35.3 513 b
no shut
router ospf 1
net 1.1.35.5 0.0.0.0 a 0
net 1.1.45.5 0.0.0.0 a 0
end

R6 
conf t
int f0/0
ip add 1.1.46.6 255.255.255.0
no shut
router ospf 1
net 1.1.46.6 0.0.0.0 a 1
end
 
校验:
R3#sh ip ospf data
                           ……
                Summary Net Link States (Area 1)
Link ID         ADV Router      Age         Seq#       Checksum
1.1.35.0        1.1.46.3        127         0x80000004 0x00049D
1.1.35.0        1.1.46.4        129         0x80000004 0x003947

1.1.45.0        1.1.46.3        123         0x80000001 0x001E3C
1.1.45.0        1.1.46.4        221         0x80000005 0x00466F
注意到R3发送的LSA3中有1.1.35.0/24网段。
 
R6(config-router)#do sh 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 is not set
     1.0.0.0/24 is subnetted, 3 subnets
O IA    1.1.35.0 [110/65] via 1.1.46.3, 00:01:44, FastEthernet0/0
O IA    1.1.45.0 [110/129] via 1.1.46.3, 00:01:40, FastEthernet0/0
C       1.1.46.0 is directly connected, FastEthernet0/0
 
R6(config-router)#do sh ip ospf data
           ……
                Summary Net Link States (Area 1)
Link ID         ADV Router      Age         Seq#       Checksum
1.1.35.0        1.1.46.3        4           0x80000001 0x000A9A
1.1.35.0        1.1.46.4        1491        0x80000005 0x003748
1.1.45.0        1.1.46.3        1542        0x80000002 0x001C3D
1.1.45.0        1.1.46.4        1491        0x80000006 0x004470
R6也可以通过R3访问到1.1.35.0/24网段
 
 
在R3上过滤通往AREA1的LSA-3
R3
conf t
ip prefix-list TO_A1 deny 1.1.35.0/24
ip prefix-list TO_A1 permit 0.0.0.0/8 le 32
router ospf 1
area 1  filter-list prefix TO_A1 in
end
 
R3(config-router)#do sh ip ospf data
         ……
                Summary Net Link States (Area 1)
Link ID         ADV Router      Age         Seq#       Checksum
1.1.35.0        1.1.46.4        515         0x80000004 0x003947
1.1.45.0        1.1.46.3        509         0x80000001 0x001E3C
1.1.45.0        1.1.46.4        607         0x80000005 0x00466F
R3已经过滤1.1.35.0/24网段
 
R6(config-router)#do sh 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 is not set
     1.0.0.0/24 is subnetted, 3 subnets
O IA    1.1.35.0 [110/1627] via 1.1.46.4, 00:00:02, FastEthernet0/0
O IA    1.1.45.0 [110/129] via 1.1.46.3, 00:00:02, FastEthernet0/0
C       1.1.46.0 is directly connected, FastEthernet0/0
 
R6(config-router)#do sh ip ospf data
                         ……
                Summary Net Link States (Area 1)
Link ID         ADV Router      Age         Seq#       Checksum
1.1.35.0        1.1.46.4        1427        0x80000005 0x003748
1.1.45.0        1.1.46.3        1479        0x80000002 0x001C3D
1.1.45.0        1.1.46.4        1427        0x80000006 0x004470
R6从R4上收到1.1.35.0/24网段

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

OSPF ABR Type 3 LSA

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

OSPF ABR Type 3 LSA

Feature OverviewThe OSPF ABR Type 3 LSA Filtering feature extends the ability of an ABR that is running the OSPF protoco
2023-01-31

OSPF中过滤3类LSA

一:实验拓扑: 二:实验需求:1:要求拒绝Area1的路由进入Area 0;2:要求阻止Area2的路由泛洪到其它区域;3:拒绝R2上的路由进入R4的路由表,其它路由器都能学习到。三:需求分析:需求1要求拒绝Area1的路由进入Area 0
2023-01-31

OSPF Type 1 .2. 3 L

Type 1 .2. 3 .4. 5 LSA Link States    同一OSPF区域内的所有路由器都应具有完全相同的拓扑数据,路由器通过SPF算法,以确定前往每个可达子网的最佳路由,学习LSA应该注意它的三个要点 eq \o\ac(
2023-01-31

思科OSPF的LSA的3类5类汇总小实验

实验名称:作OSPF的3类5类汇总实验拓扑实验步骤:配置ipR1:enableconf tint f 0/0no shuip add 192.168.12.1 255.255.255.0exitint l 0ip add 10.10.1.1
2023-01-31

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录