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

做外贸一般用什么网站传播易广告投放平台

做外贸一般用什么网站,传播易广告投放平台,做參考資料的网站,一个网站的建设流程有哪些一、实验目的 1、掌握OSPF协议的多区域配置 2、掌握OSPF协议的LSA类型 3、配置OSPF路由协议的汇总 二、实验拓扑 三、实验步骤 1、按照拓扑图配置好接口的IP地址和loopback网络,配置如下: R1(config)#int s1/1 R1(config-if)#ip add 172.16.1.1 255.255…

一、实验目的

1、掌握OSPF协议的多区域配置

2、掌握OSPF协议的LSA类型

3、配置OSPF路由协议的汇总

二、实验拓扑

 

三、实验步骤

1、按照拓扑图配置好接口的IP地址和loopback网络,配置如下:

R1(config)#int s1/1 

R1(config-if)#ip add 172.16.1.1 255.255.255.0

R1(config-if)#no shut

R1(config-if)#exit

R1(config)#int loop 0

R1(config-if)#ip add 172.16.64.1 255.255.255.0

R1(config-if)#exi

R1(config)#int loop 1

R1(config-if)#ip add 172.16.80.1 255.255.255.0

R1(config-if)#int loop 2  

R1(config-if)#ip add 172.16.96.1 255.255.255.0

R1(config-if)#int loop 3                     

R1(config-if)#ip add 172.16.112.1 255.255.255.0

R1(config-if)#int loop 5                      

R1(config-if)#ip add 10.0.0.1 255.255.255.0

R1(config-if)#exit

其它R2R3类似地配置好,并接口互相间直连要ping通。

2、同样地按照拓扑图配置多区域OSPF协议,配置如下

R1

R1(config)#router ospf 1

R1(config-router)#network 172.16.1.0 0.0.0.255 area 0

R1(config-router)#network 172.16.64.0 0.0.0.255 area 1

R1(config-router)#network 172.16.80.0 0.0.0.255 area 1

R1(config-router)#network 172.16.96.0 0.0.0.255 area 1

R1(config-router)#network 172.16.112.0 0.0.0.255 area 1    

R2、R3同样地配置好OSPF协议。 

R3配置如下网络到NULL0接口的静态路由,以便后面做OSPF外部路由实验时用到。

R3(config)#ip route 172.16.240.0 255.255.255.0 null 0

R3(config)#ip route 172.16.244.0 255.255.255.0 null 0

R3(config)#ip route 172.16.248.0 255.255.255.0 null 0

R3(config)#ip route 172.16.252.0 255.255.255.0 null 0

R3(config)#exit

3、配置好OSPF协议后,可以通过命令show ip ospf查看哪个路由器是ABR、哪个是ASBR

R1#sh ip ospf

 Routing Process "ospf 1" with ID 172.16.112.1

 Supports only single TOS(TOS0) routes

 Supports opaque LSA

 Supports Link-local Signaling (LLS)

 It is an area border router

 Initial SPF schedule delay 5000 msecs

 Minimum hold time between two consecutive SPFs 10000 msecs

 Maximum wait time between two consecutive SPFs 10000 msecs

 Minimum LSA interval 5 secs. Minimum LSA arrival 1 secs

 LSA group pacing timer 240 secs

 Interface flood pacing timer 33 msecs

 Retransmission pacing timer 66 msecs

 Number of external LSA 0. Checksum Sum 0x000000

 Number of opaque AS LSA 0. Checksum Sum 0x000000

 Number of DCbitless external and opaque AS LSA 0

 Number of DoNotAge external and opaque AS LSA 0

 Number of areas in this router is 2. 2 normal 0 stub 0 nssa

 External flood list length 0

    Area BACKBONE(0)

        Number of interfaces in this area is 1

        Area has no authentication

        SPF algorithm last executed 00:05:10.176 ago

        SPF algorithm executed 9 times

        Area ranges are

        Number of LSA 7. Checksum Sum 0x02FB2B

        Number of opaque link LSA 0. Checksum Sum 0x000000

        Number of DCbitless LSA 0

        Number of indication LSA 0

        Number of DoNotAge LSA 0

        Flood list length 0

    Area 1

        Number of interfaces in this area is 4 (4 loopback)

        Area has no authentication

        SPF algorithm last executed 00:06:46.200 ago

        SPF algorithm executed 5 times

        Area ranges are

        Number of LSA 4. Checksum Sum 0x02490A

        Number of opaque link LSA 0. Checksum Sum 0x000000

        Number of DCbitless LSA 0

        Number of indication LSA 0

        Number of DoNotAge LSA 0

        Flood list length 0

 4、使用命令show ip ospf neighbor查看邻居信息。

R1#sh ip ospf nei

 

Neighbor ID     Pri   State           Dead Time   Address         Interface

172.16.3.1        0   FULL/  -        00:00:35    172.16.1.2      Serial1/1

 

R2#sh ip ospf nei

 

Neighbor ID     Pri   State           Dead Time   Address         Interface

172.16.112.1      0   FULL/  -        00:00:30    172.16.1.1      Serial1/0

172.16.224.2      0   FULL/  -        00:00:32    172.16.224.2    Serial1/2

 

R3#sh ip ospf nei

 

Neighbor ID     Pri   State           Dead Time   Address         Interface

172.16.3.1        0   FULL/  -        00:00:32    172.16.224.1    Serial1/1

5、使用命令show ip route查看路由表。

R1#sh ip route

 

 

 Gateway of last resort is not set

172.16.0.0/16 is variably subnetted, 7 subnets, 2 masks

O IA    172.16.224.0/24 [110/128] via 172.16.1.2, 00:10:12, Serial1/1

C       172.16.1.0/24 is directly connected, Serial1/1

O       172.16.3.1/32 [110/65] via 172.16.1.2, 00:10:12, Serial1/1

C       172.16.112.0/24 is directly connected, Loopback3

C       172.16.96.0/24 is directly connected, Loopback2

C       172.16.80.0/24 is directly connected, Loopback1

C       172.16.64.0/24 is directly connected, Loopback0

     10.0.0.0/24 is subnetted, 1 subnets

C       10.0.0.0 is directly connected, Loopback5

 

R2#sh ip route

 

 

 Gateway of last resort is not set

     172.16.0.0/16 is variably subnetted, 7 subnets, 2 masks

C       172.16.224.0/24 is directly connected, Serial1/2

C       172.16.1.0/24 is directly connected, Serial1/0

C       172.16.3.0/24 is directly connected, Loopback0

O IA    172.16.112.1/32 [110/65] via 172.16.1.1, 00:09:50, Serial1/0

O IA    172.16.96.1/32 [110/65] via 172.16.1.1, 00:09:50, Serial1/0

O IA    172.16.80.1/32 [110/65] via 172.16.1.1, 00:09:50, Serial1/0

O IA    172.16.64.1/32 [110/65] via 172.16.1.1, 00:09:50, Serial1/0

 

R3#sh ip route

Gateway of last resort is not set

 

     172.16.0.0/16 is variably subnetted, 11 subnets, 2 masks

S       172.16.252.0/24 is directly connected, Null0

S       172.16.248.0/24 is directly connected, Null0

S       172.16.244.0/24 is directly connected, Null0

S       172.16.240.0/24 is directly connected, Null0

C       172.16.224.0/24 is directly connected, Serial1/1

O IA    172.16.1.0/24 [110/128] via 172.16.224.1, 00:06:19, Serial1/1

O IA    172.16.3.1/32 [110/65] via 172.16.224.1, 00:06:19, Serial1/1

O IA    172.16.112.1/32 [110/129] via 172.16.224.1, 00:06:19, Serial1/1

O IA    172.16.96.1/32 [110/129] via 172.16.224.1, 00:06:19, Serial1/1

O IA    172.16.80.1/32 [110/129] via 172.16.224.1, 00:06:19, Serial1/1

O IA    172.16.64.1/32 [110/129] via 172.16.224.1, 00:06:19, Serial1/1

加粗的都是区域间的路由。

6、为了减小路由表的条目,可以在R1上执行路由器汇总,配置如下:

R1(config)#router ospf 1

R1(config-router)#area 1 range 172.16.64.0 255.255.192.0

R1(config-router)#exit

配置好可以在R2R3上查看路由表信息

R2#sh ip route

Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP

       D - EIGRP, EX - EIGRP external, 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, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2

       ia - IS-IS inter area, * - candidate default, U - per-user static route

       o - ODR, P - periodic downloaded static route

 

Gateway of last resort is not set

 

     172.16.0.0/16 is variably subnetted, 4 subnets, 2 masks

C       172.16.224.0/24 is directly connected, Serial1/2

C       172.16.1.0/24 is directly connected, Serial1/0

C       172.16.3.0/24 is directly connected, Loopback0

O IA    172.16.64.0/18 [110/65] via 172.16.1.1, 00:00:47, Serial1/0

对比前面的R2的路由表可以发现少了好多路由条目。

R3#sh ip route

 

Gateway of last resort is not set

 

 

     172.16.0.0/16 is variably subnetted, 8 subnets, 3 masks

S       172.16.252.0/24 is directly connected, Null0

S       172.16.248.0/24 is directly connected, Null0

S       172.16.244.0/24 is directly connected, Null0

S       172.16.240.0/24 is directly connected, Null0

C       172.16.224.0/24 is directly connected, Serial1/1

O IA    172.16.1.0/24 [110/128] via 172.16.224.1, 00:14:16, Serial1/1

O IA    172.16.3.1/32 [110/65] via 172.16.224.1, 00:14:16, Serial1/1

O IA    172.16.64.0/18 [110/129] via 172.16.224.1, 00:00:10, Serial1/1

已经将R1通告过来的172.16.64.0~172.16.112.0网段都汇总成一条172.16.64.0/18的路由项了,大大地减少了路由条目。

7R3必须重分布外部路由从外部网络172.16.240.0~172.16.252.0OSPFAS内部配置如下

R3(config)#router ospf 1

R3(config-router)#redistribute static

% Only classful networks will be redistributed  // 不加上subnets只重发布classful路由

R3(config-router)#exit      

R3(config)#router ospf 1

R3(config-router)#redistribute static subnets   

R3(config-router)#exit                   

再分别在R1R2上查看路由表

R1#sh ip route

 

 Gateway of last resort is not set

 

 

     172.16.0.0/16 is variably subnetted, 12 subnets, 3 masks

O E2    172.16.252.0/24 [110/20] via 172.16.1.2, 00:00:13, Serial1/1

O E2    172.16.248.0/24 [110/20] via 172.16.1.2, 00:00:13, Serial1/1

O E2    172.16.244.0/24 [110/20] via 172.16.1.2, 00:00:13, Serial1/1

O E2    172.16.240.0/24 [110/20] via 172.16.1.2, 00:00:13, Serial1/1

O IA    172.16.224.0/24 [110/128] via 172.16.1.2, 00:14:48, Serial1/1

C       172.16.1.0/24 is directly connected, Serial1/1

O       172.16.3.1/32 [110/65] via 172.16.1.2, 00:14:48, Serial1/1

C       172.16.112.0/24 is directly connected, Loopback3

C       172.16.96.0/24 is directly connected, Loopback2

C       172.16.80.0/24 is directly connected, Loopback1

C       172.16.64.0/24 is directly connected, Loopback0

O       172.16.64.0/18 is a summary, 00:14:48, Null0

     10.0.0.0/24 is subnetted, 1 subnets

C       10.0.0.0 is directly connected, Loopback5

 

R2#sh ip route

 

 Gateway of last resort is not set

 

 

     172.16.0.0/16 is variably subnetted, 8 subnets, 2 masks

O E2    172.16.252.0/24 [110/20] via 172.16.224.2, 00:00:03, Serial1/2

O E2    172.16.248.0/24 [110/20] via 172.16.224.2, 00:00:02, Serial1/2

O E2    172.16.244.0/24 [110/20] via 172.16.224.2, 00:00:02, Serial1/2

O E2    172.16.240.0/24 [110/20] via 172.16.224.2, 00:00:02, Serial1/2

C       172.16.224.0/24 is directly connected, Serial1/2

C       172.16.1.0/24 is directly connected, Serial1/0

C       172.16.3.0/24 is directly connected, Loopback0

O IA    172.16.64.0/18 [110/65] via 172.16.1.1, 00:12:40, Serial1/0

这是因为对于外部路由OSPF默认使用E2类型的LSA,不计算AS内部路径所带来的cost值。

现在重新在R3上配置重分布,使用E1类型的LSA来计算看看。

R3(config)#router ospf 1

R3(config-router)#redistribute static metric-type 1 subnets

R3(config-router)#exit

配置完成后,分别使用show ip route查看R1R2上的路由表。

R1#sh ip route

 

 Gateway of last resort is not set

 

 

     172.16.0.0/16 is variably subnetted, 12 subnets, 3 masks

O E1    172.16.252.0/24 [110/148] via 172.16.1.2, 00:00:23, Serial1/1

O E1    172.16.248.0/24 [110/148] via 172.16.1.2, 00:00:23, Serial1/1

O E1    172.16.244.0/24 [110/148] via 172.16.1.2, 00:00:23, Serial1/1

O E1    172.16.240.0/24 [110/148] via 172.16.1.2, 00:00:23, Serial1/1

O IA    172.16.224.0/24 [110/128] via 172.16.1.2, 00:12:23, Serial1/1

C       172.16.1.0/24 is directly connected, Serial1/1

O       172.16.3.1/32 [110/65] via 172.16.1.2, 00:12:23, Serial1/1

C       172.16.112.0/24 is directly connected, Loopback3

C       172.16.96.0/24 is directly connected, Loopback2

C       172.16.80.0/24 is directly connected, Loopback1

C       172.16.64.0/24 is directly connected, Loopback0

O       172.16.64.0/18 is a summary, 00:12:23, Null0

     10.0.0.0/24 is subnetted, 1 subnets

C       10.0.0.0 is directly connected, Loopback5

 

R2#sh ip route

 

 Gateway of last resort is not set

 

 

     172.16.0.0/16 is variably subnetted, 8 subnets, 2 masks

O E1    172.16.252.0/24 [110/84] via 172.16.224.2, 00:02:05, Serial1/2

O E1    172.16.248.0/24 [110/84] via 172.16.224.2, 00:02:05, Serial1/2

O E1    172.16.244.0/24 [110/84] via 172.16.224.2, 00:02:05, Serial1/2

O E1    172.16.240.0/24 [110/84] via 172.16.224.2, 00:02:05, Serial1/2

C       172.16.224.0/24 is directly connected, Serial1/2

C       172.16.1.0/24 is directly connected, Serial1/0

C       172.16.3.0/24 is directly connected, Loopback0

O IA    172.16.64.0/18 [110/65] via 172.16.1.1, 00:12:08, Serial1/0

分别出现了4E1类型的OSPF路由,R1R2上相同目的网络的metric值不同,原因是把AS内部路径的cost值加进来了。如果在OSPF区域内只有一个出口,可以使用E2类型,如果区域有2个出口,我们可以用E1类型,以避免次优路径用来转发数据。




本文转自 独钩寒江雪 51CTO博客,原文链接:http://blog.51cto.com/bennie/423384,如需转载请自行联系原作者

http://www.lbrq.cn/news/2751427.html

相关文章:

  • 网站首页模板自定义seo如何优化关键词
  • 百度收录网站链接入口百度推广的优势
  • 惠州做棋牌网站建设哪家服务好推广员是干什么的
  • 企业网站做优化排名象客互动营销案例分析
  • 淄博市沂源县建设局网站茂名seo顾问服务
  • 网站域名根目录在哪里深圳搜索引擎优化seo
  • 丽水网站建设哪家好搜索关键词软件
  • 浅谈高校图书馆网站建设怎样搭建一个网站
  • 做网站费用分几块网络营销意思
  • 如何做b2c网站星巴克网络营销案例分析
  • seo批量建站方法墨子学院seo
  • 天堂2免费服务器开封seo公司
  • 南京网站制作公司怎么样搜索引擎营销成功案例
  • 武汉 外贸网站建设公司淘宝seo排名优化的方法
  • 做网站的人联系电话投广告哪个平台好
  • 三亚市建设局官方网站百度云搜索引擎入口盘多多
  • 南漳网站定制怎么做公众号
  • 医疗网站建设管理海底捞口碑营销案例
  • 青岛网站优化联系方式友情链接举例
  • 网站建设与运营的预算方案刚刚中国宣布重大消息
  • 广州专业的做网站公司足球世界排名前十
  • 做水果为主的b2c网站有哪些手机自动排名次的软件
  • 北京印刷厂seo推广排名公司
  • 购物网站开发文档百度手机助手官网
  • 成都市建设网扬尘监控网站重庆网站建设推广
  • 网站没备案可以做商城吗seo推广排名软件
  • 推广游戏赚钱的平台北京优化网站推广
  • 黑龙江生产建设兵团各连网站百度指数数据分析平台官网
  • 专门做mmd的网站个人网站设计方案
  • 大型外贸商城网站建设推广项目网站
  • 网络常识-SSE对比Websocket
  • 排列组合+数量+资料
  • 一起Oracle 19c bug 导致的业务系统超时问题分析
  • 上网行为组网方案
  • error #include<cuda_runtime_api.h>解决方案
  • KingbaseES:一体化架构与多层防护,支撑业务的持续稳定运行与扩展