当前位置: 首页 > news >正文

480元做网站wordpress做网店

480元做网站,wordpress做网店,分类信息网址,化妆品网站开发的背景【实验名称】 配置 OSPF 多区域。 【实验目的】 配置 OSPF 多区域,理解 OSPF 层次型网络的特点。 【背景描述】 本实验拓扑图中有 3 台路由器,路由器在区域 0 和区域 1 中,路由器 B 在区域 0 和区域 30, 路由器 C 在区域 30。 【需…


【实验名称】
配置 OSPF 多区域。
【实验目的】
配置 OSPF 多区域,理解 OSPF 层次型网络的特点。
【背景描述】
本实验拓扑图中有 3 台路由器,路由器在区域 0 和区域 1 中,路由器 B 在区域 0 和区域 30,
路由器 C 在区域 30。
【需求分析】
需要基于本拓扑图实现 OSPF 多区域的配置,并理解 OSPF 实现层次型网络的优点。
【实验拓扑】
实验的拓扑图,如图 11-1 所示。
图 11-1
【实验设备】
路由器 3 台
【预备知识】
路由器基本配置知识、OSPF。
【实验原理】
配置 OSPF 路由协议,实现多区域路由。
【实验步骤】
步骤 1 在路由器上配置 IP 地址。
RA#config t
RA(config)# interface FastEthernet 0/0
RA(config-if)#ip address 192.168.1.2 255.255.255.0
RA(config)#interface Loopback 0
RA(config-if)#ip address 172.16.0.1 255.255.255.0
RA(config)#interface Loopback 1
RA(config-if)#ip address 172.16.1.1 255.255.255.0
RA(config)#interface Loopback 2
RA(config-if)#ip address 172.16.2.1 255.255.255.0
RA(config)#interface Loopback 3
RA(config-if)#ip address 172.16.3.1 255.255.255.0
RA(config)#interface Loopback 4
RA(config-if)#ip address 172.16.4.1 255.255.255.0
RB#config t
RB(config)# interface FastEthernet 0/0
RB(config-if)#ip address 192.168.1.1 255.255.255.0
RB(config)#interface FastEthernet 0/1
RB(config-if)#ip address 192.168.2.1 255.255.255.0
RB(config)#interface Loopback 0
RB(config-if)#ip address 172.24.1.1 255.255.255.0
RB(config)#interface Loopback 1
RB(config-if)#p address 192.168.3.1 255.255.255.0
RC#config t
RC(config)# interface FastEthernet 0/0
RC(config-if)#ip address 192.168.2.2 255.255.255.0
RC(config)#interface Loopback 0
RC(config-if)#ip address 172.24.2.1 255.255.255.0
RC(config)#interface Loopback 1
RC(config-if)#ip address 199.0.0.10 255.255.255.240
步骤 2 配置 OSPF。
RA(config)# router ospf 10
RA(config-router)#network 172.16.0.0 0.0.0.255 area 1
RA(config-router)#network 172.16.1.0 0.0.0.255 area 1
RA(config-router)#network 172.16.2.0 0.0.0.255 area 1
RA(config-router)#network 172.16.3.0 0.0.0.255 area 1
RA(config-router)#network 172.16.4.0 0.0.0.255 area 1
RA(config-router)#network 192.168.1.0 0.0.0.255 area 0
RB(config)# router ospf 10
RB(config-router)#network 172.24.1.0 0.0.0.255 area 0
RB(config-router)#network 192.168.1.0 0.0.0.255 area 0
实验 11 OSPF 多区域配置 ·7·
RB(config-router)#network 192.168.2.0 0.0.0.255 area 30
RB(config-router)#network 192.168.3.0 0.0.0.255 area 0
RC(config)# router ospf 10
RC(config-router)#network 172.24.2.0 0.0.0.255 area 30
RC(config-router)#network 192.168.2.0 0.0.0.255 area 30
步骤 3 验证测试。
用命令 show ip route 和 sh ip ospf neighbor 来验证配置。
RA#show ip route
Codes: C - connected, S - static, R - RIP B - BGP
O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
* - candidate default
Gateway of last resort is no set
C 172.16.0.0/24 is directly connected, Loopback 0
C 172.16.0.1/32 is local host.
C 172.16.1.0/24 is directly connected, Loopback 1
C 172.16.1.1/32 is local host.
C 172.16.2.0/24 is directly connected, Loopback 2
C 172.16.2.1/32 is local host.
C 172.16.3.0/24 is directly connected, Loopback 3
C 172.16.3.1/32 is local host.
C 172.16.4.0/24 is directly connected, Loopback 4
C 172.16.4.1/32 is local host.
O 172.24.1.1/32 [110/1] via 192.168.1.1, 00:03:13, FastEthernet 0/0
O IA 172.24.2.1/32 [110/2] via 192.168.1.1, 00:00:35, FastEthernet 0/0
C 192.168.1.0/24 is directly connected, FastEthernet 0/0
C 192.168.1.2/32 is local host.
O IA 192.168.2.0/24 [110/2] via 192.168.1.1, 00:03:13, FastEthernet 0/0
O 192.168.3.1/32 [110/1] via 192.168.1.1, 00:03:13, FastEthernet 0/0
RC#show ip route
Codes: C - connected, S - static, R - RIP B - BGP
O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
* - candidate default
Gateway of last resort is 0.0.0.0 to network 0.0.0.0
S* 0.0.0.0/0 is directly connected, Loopback 1
O IA 172.16.0.0/24 [110/2] via 192.168.2.1, 00:02:49, FastEthernet 0/0
O IA 172.16.1.0/24 [110/2] via 192.168.2.1, 00:02:49, FastEthernet 0/0
实验 11 OSPF 多区域配置 ·8·
O IA 172.16.2.0/24 [110/2] via 192.168.2.1, 00:02:49, FastEthernet 0/0
O IA 172.16.3.0/24 [110/2] via 192.168.2.1, 00:02:49, FastEthernet 0/0
O IA 172.16.4.0/24 [110/2] via 192.168.2.1, 00:02:49, FastEthernet 0/0
O IA 172.24.1.0/24 [110/1] via 192.168.2.1, 00:02:49, FastEthernet 0/0
C 172.24.2.0/24 is directly connected, Loopback 0
C 172.24.2.1/32 is local host.
O IA 192.168.1.0/24 [110/2] via 192.168.2.1, 00:02:49, FastEthernet 0/0
C 192.168.2.0/24 is directly connected, FastEthernet 0/0
C 192.168.2.2/32 is local host.
O IA 192.168.3.0/24 [110/1] via 192.168.2.1, 00:02:49, FastEthernet 0/0
C 199.0.0.0/28 is directly connected, Loopback 1
C 199.0.0.10/32 is local host.
RB#show ip ospf neighbor
OSPF process 10:
Neighbor ID Pri State Dead Time Address Interface
172.16.4.1 1 Full/DR 00:00:37 192.168.1.2 FastEthernet 0/0
199.0.0.10 1 Full/BDR 00:00:35 192.168.2.2 FastEthernet 0/1
【参考配置】
RA#show running-config
Building configuration...
Current configuration : 1029 bytes
!
version RGNOS 10.1.00(4), Release(18443)(Tue Jul 17 20:50:30 CST 2007
-ubu1server)
hostname RA
!
enable secret 5 $1$db44$8x67vy78Dz5pq1xD
!
interface FastEthernet 0/0
ip address 192.168.1.2 255.255.255.0
duplex auto
speed auto
!
interface FastEthernet 0/1
duplex auto
speed auto
!
interface Loopback 0
ip address 172.16.0.1 255.255.255.0
!
interface Loopback 1
ip address 172.16.1.1 255.255.255.0
实验 11 OSPF 多区域配置 ·9·
!
interface Loopback 2
ip address 172.16.2.1 255.255.255.0
!
interface Loopback 3
ip address 172.16.3.1 255.255.255.0
!
interface Loopback 4
ip address 172.16.4.1 255.255.255.0
!
router ospf 10
network 172.16.0.0 0.0.0.255 area 1
network 172.16.1.0 0.0.0.255 area 1
network 172.16.2.0 0.0.0.255 area 1
network 172.16.3.0 0.0.0.255 area 1
network 172.16.4.0 0.0.0.255 area 1
network 192.168.1.0 0.0.0.255 area 0
!
line con 0
line aux 0
line vty 0 4
login
!
end
RB#show running-config
Building configuration...
Current configuration : 807 bytes
!
version RGNOS 10.1.00(4), Release(18443)(Tue Jul 17 20:50:30 CST 2007
-ubu1server)
hostname RB
!
enable secret 5 $1$db44$8x67vy78Dz5pq1xD
!
interface FastEthernet 0/0
ip address 192.168.1.1 255.255.255.0
duplex auto
speed auto
!
interface FastEthernet 0/1
ip address 192.168.2.1 255.255.255.0
实验 11 OSPF 多区域配置 ·10·
duplex auto
speed auto
!
interface Loopback 0
ip address 172.24.1.1 255.255.255.0
!
interface Loopback 1
ip address 192.168.3.1 255.255.255.0
router ospf 10
network 172.24.1.0 0.0.0.255 area 0
network 192.168.1.0 0.0.0.255 area 0
network 192.168.2.0 0.0.0.255 area 30
network 192.168.3.0 0.0.0.255 area 0
!
line con 0
line aux 0
line vty 0 4
login
!
end
RC#show running-config
Building configuration...
Current configuration : 734 bytes
!
version RGNOS 10.1.00(4), Release(18443)(Tue Jul 17 20:50:30 CST 2007
-ubu1server)
hostname RC
!
enable secret 5 $1$db44$8x67vy78Dz5pq1xD
!
interface FastEthernet 0/0
ip address 192.168.2.2 255.255.255.0
duplex auto
speed auto
!
interface FastEthernet 0/1
duplex auto
speed auto
!
interface Loopback 0
ip address 172.24.2.1 255.255.255.0
!
实验 11 OSPF 多区域配置 ·11·
interface Loopback 1
ip address 199.0.0.10 255.255.255.240
!
router ospf 10
network 172.24.2.0 0.0.0.255 area 30
network 192.168.2.0 0.0.0.255 area 30
!
ip route 0.0.0.0 0.0.0.0 Loopback 1
!
line con 0
line aux 0
line vty 0 4
login
!
end
实验 11 OSPF 多区域配置 ·12·

http://www.yayakq.cn/news/301052/

相关文章:

  • 江西省上饶市网站建设公司网页制作网站制作
  • 网站的设计风格有哪些网站自动化采集
  • 制作一个网站大概要多少钱北京互联网公司招聘
  • 专门做外卖的网站建一个淘宝客网站要多少钱
  • 电商网站开发难点如何用网站做cpa
  • 上海建设部网站首页取消网站的通知
  • 广州站在哪个区东莞订制网站建设
  • 百度网站建设怎么联系宜昌建设网站公司
  • 网站开发开源的手册免费推广产品平台有哪些
  • 网页设计制作网站模板网站空间租用协议
  • 徐州网站开发设计平台武义县住房和城乡建设局网站
  • 懒人之家网站模板广州设计网页
  • 网站出售商品建设网站做产品的审核工作
  • 网站建设费用是否资本化自媒体视频剪辑培训班
  • ps做网站大小唐河网站建设
  • 个人怎样做网站为什么做的网站在浏览器搜不到
  • 海西州住房建设局网站钢丝网片每平米价格
  • 山东三强建设咨询有限公司网站做网站本溪
  • 上海珍岛网站建设宁波网络公司怎么选
  • 呼和浩特做网站的公司我国网络营销现状分析
  • 中山祥云做的网站怎么样百度百科制造网站开发
  • 内网门户网站站长之家ppt素材
  • 免费微网站案例可以做go分析的网站
  • 青岛模板自助建站网站建设和网站设计有什么区别
  • 赣州做网站公司哪家好wordpress 外网无法访问
  • 58同城类型网站制作wordpress 图片灯箱
  • 河南省建设厅网站取消劳务资质平湖网站改版
  • 网站设计原理网站的优点缺点
  • 韩雪冬个人网站简单html网页制作
  • 钓鱼网站建设顺德建设网站多少钱