ensp配置在 Agg01,Agg02 上使用三类LSA过滤掉 vlanif12 ,在出方向上应用,使用 IP 前缀列表名称为 12 步长为 10 ,使其不在区域0中出现。
时间: 2024-12-12 09:29:08 浏览: 25
在EnSP(思科网络服务平台)中,如果你想在Agg01和Agg02(聚合端口)上配置OSPF,并使用三类LSA(Link State Advertising)过滤掉VLANIF12,同时在出方向上应用IP前缀列表(Prefix List)以阻止其在区域0中显示,你可以按以下步骤操作:
1. **启动OSPF on Aggregation Interfaces**:
- 进入全局模式,为每个聚合端口(如Agg01和Agg02)启用OSPF,例如:
```
router ospf [进程ID]
interface Agg01
no shutdown
ip ospf area [区域ID]
interface Agg02
no shutdown
ip ospf area [区域ID]
```
2. **配置三类LSA过滤**:
- 使用`filter-list`命令在区域边界路由器(ABR)上限制LSA传播,例如:
```
router ospf [进程ID]
filter-list 12 deny lsa-type type-3 match tag vlanif12
apply-filter input interface [接口类型] [接口名]
```
或者如果是在汇总路由器上过滤,可能需要在`network summary-address`命令后添加过滤条件:
```
network [聚合网络范围] summary [选项] {
no-summary route-filter 12
}
```
3. **配置IP前缀列表(12步长10)**:
- 创建一个名为“12”的IP前缀列表,并定义步长为10:
```
ip prefix-list 12 seq 10 permit <start-ip> <end-ip> le 10
apply-list output interface Agg01
apply-list output interface Agg02
```
具体的IP范围要替换为实际的VLANIF12的IP段。
4. **检查和验证**:
使用`show ip ospf prefix`检查前缀列表的应用效果,以及`show ip ospf database`查看LSA是否符合预期。
阅读全文