zoukankan      html  css  js  c++  java
  • 思科OSPF NSSA配置实例

    实例如下图示:

    R1:
    interface Loopback0
     ip address 1.1.1.1 255.255.255.255
    interface FastEthernet0/0
     ip address 12.1.1.1 255.255.255.0
    router ospf 1
     router-id 1.1.1.1
     area 1 nssa
     network 1.1.1.1 0.0.0.0 area 1
     network 12.1.1.0 0.0.0.255 area 1
    
    R2:
    interface Loopback0
     ip address 2.2.2.2 255.255.255.255
    interface FastEthernet0/0
     ip address 12.1.1.2 255.255.255.0
    interface FastEthernet0/1
     ip address 23.1.1.2 255.255.255.0
    router ospf 1
     router-id 2.2.2.2
     area 1 nssa default-information-originate //解决外部rip路由无法传递过来。
     network 2.2.2.2 0.0.0.0 area 0
     network 12.1.1.0 0.0.0.255 area 1
     network 23.1.1.0 0.0.0.255 area 0
    
    R3:
    interface Loopback0
     ip address 3.3.3.3 255.255.255.255
    interface FastEthernet0/0
     ip address 34.1.1.3 255.255.255.0
    interface FastEthernet0/1
     ip address 23.1.1.3 255.255.255.0
    router ospf 1
     router-id 3.3.3.3
     redistribute rip subnets
     network 3.3.3.3 0.0.0.0 area 0
     network 23.1.1.0 0.0.0.255 area 0
    router rip
     version 2
     redistribute ospf 1 metric 2
     network 34.0.0.0
     no auto-summary
    
    R4:
    interface Loopback0
     ip address 4.4.4.4 255.255.255.255
    interface FastEthernet0/0
     ip address 34.1.1.4 255.255.255.0
    router rip
    version 2 network
    4.0.0.0 network 34.0.0.0 no auto-summary R4(config)#do show ip route rip 1.0.0.0/32 is subnetted, 1 subnets R 1.1.1.1 [120/2] via 34.1.1.3, 00:00:00, FastEthernet0/0 2.0.0.0/32 is subnetted, 1 subnets R 2.2.2.2 [120/2] via 34.1.1.3, 00:00:00, FastEthernet0/0 3.0.0.0/32 is subnetted, 1 subnets R 3.3.3.3 [120/2] via 34.1.1.3, 00:00:00, FastEthernet0/0 23.0.0.0/24 is subnetted, 1 subnets R 23.1.1.0 [120/2] via 34.1.1.3, 00:00:00, FastEthernet0/0 12.0.0.0/24 is subnetted, 1 subnets R 12.1.1.0 [120/2] via 34.1.1.3, 00:00:00, FastEthernet0/0 R4(config)#do ping 1.1.1.1 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 1.1.1.1, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 44/50/60 ms
  • 相关阅读:
    Python004-数据处理示例:以某个数据(字段)为基准从数据中获取不同的字段行数
    VUE-004-禁止修改页面显示项,设置el-input,textarea只读方法
    VUE-003-前端表格数据展示时,设置单元格(el-table-column)保留空格和换行
    cobaltstrike4.0 cracked
    CobaltStrike3.14破解
    CobaltStrike3.12/13 破解
    Windows 10 Manager v2.3.3
    MobaXterm v10.9破解
    Jupyter/JupyterLab安装使用
    WordPress <= 4.6 命令执行漏洞(PHPMailer)复现分析
  • 原文地址:https://www.cnblogs.com/vincent-liang/p/6517300.html
Copyright © 2011-2022 走看看