cisco ospf

ospf配置:(Open Shortest Path First)
PC0 and PC1 via Ospf to communicate. Network map as below.
Environment:Cisco Packet Tracer

Set pc0 and pc1 static ip
PC0: 192.168.1.2
    255.255.255.0
gw: 192.168.1.1
PC1: 192.168.2.2
    255.255.255.0
gw: 192.168.2.1

Router0 (interface fa 0/0 and Se 0/1/0 ip config)

Router>en
Router#conf t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#int f0/0
Router(config-if)#ip add 192.168.1.1 255.255.255.0
Router(config-if)#no shu     #端口开启

Router(config-if)#exit
Router(config)#int s0/0/0
Router(config-if)#ip add 192.168.3.1 255.255.255.0   #添加ip地址
Router(config-if)#no shu

Router1 (interface fa 0/0 and Se 0/1/0 ip config)

Router>en
Router#conf t
Router(config)#int f0/0
Router(config-if)#ip add 192.168.2.1 255.255.255.0
Router(config-if)#no shutdown

Router(config-if)#exit
Router(config)#int s0/0/0
Router(config-if)#ip add 192.168.3.2 255.255.255.0
Router(config-if)#no shu

OSPF route config
Router0 OSPF Route config

Router(config-if)#exit
Router(config)#route ospf 10      #10是id进程号,可以随意定。范围为1-65535
Router(config-router)#network 192.168.1.0 0.0.0.255 area 0    #宣告1.0网段到区域0中
Router(config-router)#network 192.168.3.0 0.0.0.255 area 0

Router1 OSPF Route config

Router>en
Router#conf t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#route ospf 10
Router(config-router)#network 192.168.2.0 0.0.0.255 area 0
Router(config-router)#network 192.168.3.0 0.0.0.255 area 0
Router(config-if)#no shu

test

时间: 2024-11-25 18:31:43

cisco ospf的相关文章

Cisco: ospf邻居关系建立不成功的因素

两端的hello interval 和 dead time 不匹配.可以用show ip ospf interface XX查看.通常是10/40s或者是30/120s. 两端的掩码不一致.OSPF邻居建立要求两个端口的掩码一致. 两端 的网络类型不一致.网络类型包括point-to-point,Non-broadcast MultiAccess,Broadcast MultiAccess,point-to-multipoint.可以通过show ip ospf interface 查看端口所属

Cisco OSPF常见问题

OSPF 中为什么将环回作为 /32 主机路由通告? 如何更改 OSPF 的参考带宽? OSPF 如何计算其度量或成本? OSPF 路由协议交换是否经过身份验证? 什么是链路状态重传间隔?用什么命令设置它? 变量 IP-OSPF-Transmit-Delay 起什么作用? 在 OSPF 中是否只有虚拟链路的静态选项允许不连续网络,而不管掩码传播属性如何? 多播 IP 地址是否将映射到 MAC 级别多播地址? Cisco OSPF 实现是否支持基于 IP TOS 的路由? offset-list

linux C 网络编程基础

TCP/IP基础 UDP提供无连接服务 UDP的数据格式: #ifdef __FAVOR_BSD struct udphdr { u_int16_t uh_sport; /* source port */ u_int16_t uh_dport; /* destination port */ u_int16_t uh_ulen; /* udp length */ u_int16_t uh_sum; /* udp checksum */ }; #else struct udphdr { u_int1

ebtables使用的协议

ebtables的参数中: -p:指明使用的协议类型,ipv4,arp等可选(使用时必选)详情见/etc/ethertypes --ip-proto:IP包的类型,1为ICMP包,6为TCP包,17为UDP包,在/etc/protocols下有详细说明 [email protected]:/etc# cat ethertypes ## Ethernet frame types#               This file describes some of the various Ether

Cisco N3K VPC+HSRP+ospf 配置

一.背景需求 Cisco 两台交换机需要虚拟成一台交换机使用(类似 交换机堆叠),去链接二层接入交换机,提供网络链路高可用.如下图: 对于二层交换 2960x  需要看到 上层的两台 N3k 交换为一台设备,中间连接链路做链路聚合.  二.配置详解   N3K_1和 N3K2  配置保持一致 1.全局下开启 VPC + HSRP+ospf feature vpc feature hsrp feature ospf 2.VPC peer-link 接口配置 interface Ethernet1/

关于cisco与中兴三层设备ospf互连

一般在设备默认情况下cisco与中兴三层设备通过OSPF协议连接,在低于500的包是可以ping通的,但是一旦超过500,就将丢包.这是因为ppp封装的时候cisco设备默认将包分片,中兴设备不支持分片重组,所以导致接受数据无法匹配.但如果将MTU减小到500之后,cisco设备即使分片,也是在一个段内,中兴设备收到后可以的读取.大于500将不能读取,导致OSPF震荡. 当遇到此问题时,只需将cisco指定接口下将fragment关闭即可.

Cisco PT模拟实验(14) 路由器OSPF动态路由的配置

Cisco PT模拟实验(14) 路由器OSPF动态路由的配置 实验目的: 掌握OSPF动态路由选择协议的配置方法 掌握路由选择表中的OSPF路由描述 熟悉路由选择和分组转发的原理及过程 实验背景: 公司通过一台三层交换机连到企业网的出口路由器上,路由器再与互联网服务提供商 ISP的另一台路由器连接.现要企业网设备上做适当配置,实现企业网内部主机与外网主机之间的相互通信.为了简化网管的管理维护工作,公司决定采用动态路由配置 -- OSPF协议实现互通. 技术原理: 路由器通过路由选择协议建立了一

Cisco学习笔记 CCNP-OSPF

OSPF 三张表 neighbors topology 也就是LSDB Routing table OSPF 采用层次化架构(this two-level hierarchy consists of the following) -Transit area(backbone or area 0) -Regular areas (non backbone area ) OSPF area Characteristics: minimizes routing table entries locali

Cisco之OSPF

OSPF网络架构如下: R1的配置: R1(config)#router ospf 100 R1(config-router)#router-id 1.1.1.1 R1(config-router)#network 10.1.1.0 0.0.0.3 area 0 R1(config-router)#network 10.1.1.4 0.0.0.3 area 1 R2的配置: R2(config)#router ospf 100 R2(config-router)#router-id 2.2.2.