• 思科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
  • 相关阅读:
    使用Razor视图引擎来生成邮件内容
    Asp .Net Core 2.0 登录授权以及多用户登录
    简单几步,提升.Net Core的开发效率
    百万数据测试 Entity Framework 到底有多慢
    纸壳CMS(ZKEACMS)体验升级,快速创建页面,直接在页面中修改内容
    ZKEACMS 配置使用 HTTPS
    使用 jQuery.Pin 垂直滚动时固定导航
    底层的增删查改
    关于hangfire的使用
    巧用 CSS 实现酷炫的充电动画
  • 原文地址:https://www.cnblogs.com/vincent-liang/p/6517300.html
Copyright © 2020-2023  润新知