zoukankan      html  css  js  c++  java
  • 基于区域的OSPF简单认证

    实验要求:掌握OSPF区域简单认证配置

    拓扑如下:

    配置如下:

    R1
    enable
    configure terminal
    interface s0/0/0
    ip address 192.168.1.1 255.255.255.0
    no shutdown
    clock rate 64000
    interface l0
    ip address 1.1.1.1 255.255.255.0
    exit
    router ospf 1
    network 192.168.1.0 0.0.0.255 area 0
    network 1.1.1.0 0.0.0.255 area 0
    area 0 authentication
    interface s0/0/0
    ip ospf authentication-key 123

    R2
    enable
    configure terminal
    interface s0/0/0
    ip address 192.168.1.2 255.255.255.0
    no shutdown
    clock rate 64000
    interface l0
    ip address 2.2.2.2 255.255.255.0
    exit
    router ospf 1
    network 192.168.1.0 0.0.0.255 area 0
    network 2.2.2.0 0.0.0.255 area 0
    area 0 authentication
    interface s0/0/0
    ip ospf authentication-key 123

  • 相关阅读:
    gcvt(),ecvt(),fcvt()的区别
    SQLITE3 使用总结
    C++的类型转换浅析
    JAVA Class21
    JAVA Class20
    JAVA Class19
    JAVA Class18
    JAVA Class17
    JAVA Class16
    关于hover失效问题(!important)
  • 原文地址:https://www.cnblogs.com/guoshiyu/p/9230780.html
Copyright © 2011-2022 走看看