zoukankan      html  css  js  c++  java
  • CISCO 动态路由(OSPF)

    OSPF(开放式最短路径优先):是一个内部网关协议(Interior Gateway Protocol,简称IGP),用于在单一自治系统(autonomous system,AS)内决策路由。是对链路状态路由协议的一种实现,隶属内部网关协议(IGP),故运作于自治系统内部。OSPF是链路状态协议。

    网络拓扑图

    实验过程: 

    R1配置如下:

    R1>enable
    R1#configure terminal
    R1(config)#no ip domain-lookup
    R1(config)#hostname R1
    R1(config)#int f0/0
    R1(config-if)#no shutdown
    R1(config-if)#ip address 68.1.1.2 255.255.255.0
    R1(config-if)#exit
    R1(config)#int loopback 0  
    R1(config-if)#ip address 7.7.7.7 255.255.255.0
    R1(config-if)#exit
    R1(config)#route ospf 1   #启用ospf协议
    R1(config-router)#network 7.7.7.7 area 0
    R1(config-router)#network 68.1.1.2 area 0
    R1(config-router)#end
    R1#write

    R2配置如下:

    R2>enable
    R2#configure terminal
    R2(config)#no ip domain-lookup
    R2(config)#hostname R2
    R2(config)#int f0/0
    R2(config-if)#no shutdown
    R2(config-if)#ip address 68.1.1.3 255.255.255.0
    R2(config)#int f0/1
    R2(config-if)#no shutdown
    R2(config-if)#ip address 86.1.1.4 255.255.255.0
    R2(config-if)#exit
    R2(config)#int loopback 0
    R2(config-if)#ip address 8.8.8.8 255.255.255.0
    R2(config-if)#exit
    R2(config)#route ospf 1
    R2(config-router)#network 8.8.8.8 area 0    
    R2(config-router)#network 68.1.1.3 area 0
    R2(config-router)#network 86.1.1.4 area 0
    R2(config-router)#end
    R2#write 

    配置R3如下:

    R3>enable
    R3#configure terminal
    R3(config)#no ip domain-lookup
    R3(config)#hostname R3
    R3(config)#int f0/0
    R3(config-if)#no shutdown
    R3(config-if)#ip address 86.1.1.5 255.255.255.0
    R3(config-if)#exit
    R3(config)#int loopback 0
    R3(config-if)#ip address 9.9.9.9 255.255.255.0
    R3(config-if)#exit
    R3(config)#route ospf 1
    R3(config-router)#network 9.9.9.9 area 0    
    R3(config-router)#network 86.1.1.5 area 0
    R3(config-router)#end
    R3#write

    越努力,越幸运
  • 相关阅读:
    在线古书式竖排工具
    智能实验室-全能优化(Guardio) 5.04.0.1040
    智能实验室-全能优化(Guardio) 5.03.0.1011
    在线专用链双向转换
    智能实验室-杀马(Defendio) 4.32.0.1020
    智能实验室-杀马(Defendio) 4.31.0.1010
    智能实验室-全能优化(Guardio) 4.999.0.981
    智能实验室-杀马(Defendio) 4.27.0.951
    智能实验室-全能优化(Guardio) 5.02.0.1000
    智能实验室-结构化存储浏览器(SSExplorer) 2.0.0.200
  • 原文地址:https://www.cnblogs.com/strive99/p/10164548.html
Copyright © 2011-2022 走看看