首页 > 其他分享 >6.5

6.5

时间:2024-06-19 17:22:01浏览次数:21  
标签:24 config Fa0 Switch 6.5 172.16 OSPF

完成计网实验二路由器动态路由的配置方法

)三层交换机的基本配置

Switch(config)#vlan 10                        !新建VLAN10

Switch(config)#interface fastethernet0/1      !将F0/1放入VLAN10

Switch(config-if)#switchport access vlan 10

Switch(config)#vlan 50                        !新建VLAN50

Switch(config)#interface fastethernet0/5      !将F0/5放入VLAN50

Switch(config-if)#switchport access vlan 50

Switch(config-if)#exit

Switch(config)#interface vlan 10

Switch(config-if)#ip address 172.16.1.2  255.255.255.0

Switch(config-if)#no shutdown                  !创建VLAN 10虚拟接口,并配置IP

Switch(config-if)#exit

Switch(config)#interface vlan 50

Switch(config-if)#ip address 172.16.5.1  255.255.255.0

Switch(config-if)#no shutdown                  !创建VLAN 50虚拟接口,并配置IP

验证测试:

Switch#show vlan

VLAN Name                             Status    Ports

----------------------------------------------------------------------------

1    default                          active    Fa0/2, Fa0/3, Fa0/4, Fa0/6

                                                Fa0/7, Fa0/8, Fa0/9, Fa0/10

                                                Fa0/11, Fa0/12, Fa0/13, Fa0/14

                                                Fa0/15, Fa0/16, Fa0/17, Fa0/18

                                                Fa0/19, Fa0/20, Fa0/21, Fa0/22

                                                Fa0/23, Fa0/24

10   VLAN0010                         active    Fa0/1

50   VLAN0050                         active    Fa0/5

Switch#show ip interface

Interface             :VL10

Description           :Vlan 10

OperStatus            :UP

ManagementStatus       :Enabled

Primary Internet address :172.16.1.2/24

Broadcast address        :255.255.255.255

Physaddress            :00d0.f8ff.8ab5

Interface             :VL50

Description           :Vlan 50

OperStatus            :UP

ManagementStatus       :Enabled

Primary Internet address :172.16.5.1/24

Broadcast address        :255.255.255.255

Physaddress            :00d0.f8ff.8ab6

 

2)      路由器基本配置

在路由器A上配置端口IP

RA(config)#interface fastethernet 1/0

RA(config-if)#ip address 172.16.1.1  255.255.255.0

RA(config-if)#no shutdown

RA(config)#interface serial 1/2

RA(config-if)#ip address 172.16.2.1  255.255.255.0

RA(config-if)# Clock rate 64000

RA(config-if)#no shutdown

在路由器B上配置端口IP

RB(config)#interface fastethernet 1/0

RB(config-if)#ip address 172.16.3.1  255.255.255.0

RB(config-if)#no shutdown

RB(config)#interface serial 1/2

RB(config-if)#ip address 172.16.2.2  255.255.255.0

RB(config-if)#no shutdown

验证测试:验证路由器接口的配置和状态

RA#show ip interface brief

Interface                        IP-Address(Pri)      OK?       Status

serial 1/2                       172.16.2.1/24        YES       UP

serial 1/3                       no address           YES       DOWN

FastEthernet 1/0                 172.16.1.1/24        YES       UP

FastEthernet 1/1                 no address           YES      DOWN

Null 0                           no address           YES       UP

RB#show ip interface brief

Interface                        IP-Address(Pri)      OK?       Status

serial 1/2                       172.16.2.2/24        YES       UP

serial 1/3                       no address           YES       DOWN

FastEthernet 1/0                 172.16.3.1/24        YES       UP

FastEthernet 1/1                 no address           YES      DOWN

Null 0                           no address           YES       UP

 

 

2、配置RIPv2路由协议

1)三层交换机配置RIP协议

Switch(config)#router rip

 

Switch(config-router)#network 172.16.1.0            !申明本设备的直连网段

Switch(config-router)#network 172.16.5.0

Switch(config-router)#version 2

2)RA配置RIP v2协议

RA(config)#router rip

RA(config-router)#network 172.16.1.0              

RA(config-router)#network 172.16.2.0

RA(config-router)#version 2

RA(config-router)#no auto-summary                  !关闭路由信息的自动汇总功能

3)RB配置RIP v2协议

RB(config)#router rip

RB(config-router)#network 172.16.2.0              

RB(config-router)#network 172.16.3.0

RB(config-router)#version 2

RB(config-router)#no auto-summary               

3、验证三台路由设备的路由表,查看是否自动学习了其他网段的路由信息。

Switch#show ip route

Type:  C - connected, S - static,  R – RIP,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

Type  Destination  IP      NEXT hop        Interface  Distance Metric  Status

C    172.16.1.0/24        0.0.0.0          VL10      0         0       Active

C    172.16.2.0/24        172.16.1.1       VL10      120       2       Active

C    172.16.3.0/24        172.16.1.1       VL10      120       3       Active

C    172.16.5.0/24        0.0.0.0          VL50      0         0       Active

 

RA#show ip route

Codes:  C - connected, S - static,  R - RIP

        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

        * - candidate default

Gateway of last resort is no set

C    172.16.1.0/24 is directly connected, FastEthernet 1/0

C    172.16.1.1/32 is local host.

C    172.16.2.0/24 is directly connected, serial 1/2

C    172.16.2.1/32 is local host.

R    172.16.5.0/24 [120/1] via 172.16.1.2,00:00:01,Fastethernet1/0

R    172.16.3.0/24 [120/1] via 172.16.2.2,00:00:21,serial 1/2

 

RB#show ip route

Codes:  C - connected, S - static,  R - RIP

        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

        * - candidate default

Gateway of last resort is no set

C    172.16.2.0/24 is directly connected, serial 1/2

C    172.16.2.2/32 is local host.

C    172.16.3.0/24 is directly connected, Fastethernet1/0

C    172.16.3.1/32 is local host.

R    172.16.1.0/24 [120/1] via 172.16.2.1,00:00:3,serial 1/2

R    172.16.5.0/24 [120/2] via 172.16.2.1,00:00:03,serial 1/2

 

4、配置OSPF路由协议

router ospf

Step1

Router(config)#router ospf  process-id

  使用router ospf 命令在路由器上启用OSPF协议

  Process id 代表路由器上运行的不用的OSPF进程号

  是一个1~65535的数字

 

Step 2

 Router(config-router)#network network-address wildeard-mark area area-id

   使用network 命令来指定运行OSPF协议的每个主网络

Wildarad-mask:OSPF需要通配符掩码(子网掩码的范掩码)

area area-id : 指ospf区域,单区域中使用0作为主干区域

 

5、测试网络的连通性

从PCA ping PCB

 

 

 

 

网络跟踪命令:

tracert   ip

结果:显示到达目的主机经过的每一跳路由的接口地址

 

 

 

标签:24,config,Fa0,Switch,6.5,172.16,OSPF
From: https://www.cnblogs.com/jais/p/18256707

相关文章

  • 6.5
    实验一vlan的创建与划分一、实验目的:1.了解vlan的工作原理;2.学习基于端口划分vlan的方法;3.了解跨交换机的相同vlan之间的通信;4.进一步学习交换机端口的配置命令。二、实验原理:VLAN(VirtualLocalAreaNetwork)即虚拟局域网,是一种通过将局域网内的设备逻辑地而不是物理地划分成一......
  • 6.5博客
    python和工程数学俩实验真累啊python学习:importrefromcollectionsimportCounterimportrequestsfromlxmlimportetreeimportpandasaspdimportjiebaimportmatplotlib.pyplotaspltfromwordcloudimportWordCloudheaders={"User-Agent":"Mozilla......
  • 6.5
    今日python作业学习如下importitertoolsdefpermutations_combinations(n,m,letters):#排列序列permutations=list(itertools.permutations(letters,m))permutation_output=[''.join(permutation)forpermutationinpermutations]#组合序列,按字母升序排列combinati......
  • 6.5
    今天对于前端传递到后端的数据,时使用编码后发送的,导致传递到后端后必须得先进行返还原值再使用,对我们测试阶段,就先不使用这种方法, 最后在后端可以得到的数据是上述的示例,然后我先拆分成List类型,对于自己定义的四个变量拆分成数组,然后定义一个函数进行拼接sql语句拆分字符串......
  • 6.5
    上午进行了工程数学的实验。实验一:黄金分割法(0.618法)程序设计一、实验目的通过一维寻优黄金分割法的程序设计,培养学生计算机的应用能力,并为今后无约束优化方法的学习和编程,奠定基础;掌握缩小寻优区间的黄金分割法。二、实验内容(1)请用0.618法求解优化问题: 的极小点和极小值(......
  • 6.5学习进度
    完成了数据库的实验实验一数据库和表的建立、数据操作一、实验目的:掌握使用SQL语言进行数据定义和数据操纵的方法。二、实验要求:建立一个数据库stumanage,建立三个关系表student,course,sc。向表中插入数据,然后对数据进行删除、修改等操作,对关系、数据库进行删除操作。三......
  • 6.5
    完成python作业 8-2【Python0026】图书评论数据分析与可视化【题目描述】豆瓣图书评论数据爬取。以《平凡的世界》、《都挺好》等为分析对象,编写程序爬取豆瓣读书上针对该图书的短评信息,要求:(1)对前3页短评信息进行跨页连续爬取;(2)爬取的数据包含用户名、短评内容、评论时间......
  • OpenAI年薪仅6.5万美元,奥特曼却掌控28亿美元创业帝国 | 最新快讯
    6月7日消息,尽管萨姆·奥特曼(SamAltman)作为OpenAI的联合创始人兼首席执行官而广为人知,但他在风险投资和创业投资领域的角色同样重要。鲜为人知的是,奥特曼掌管着价值超过28亿美元的投资帝国,这与他在OpenAI领取的6.5万美元薪资形成了鲜明对比。他的家族办公室正在管理这一帝国,涵......
  • 每天的CTF小练--6.5(ascll码高级运用)
    题目:[HUBUCTF2022新生赛]baby_encrypthint:781612443113954655886887407898899451044114412011257135914071455155316031651170318041861191719652013207021272183228423832485254125932643269827992924注意查看前面的数字,这题不想现代密码,chr(78)chr(161-78)chr(244-1......
  • 6.5
    rddmapfilterflatmapgroupbydistinctsortby//TODOmap方法的作用就是将传入的A转换为B返回,但是没有限制A和B的关系。finalJavaRDD<Integer>newRDD1=rdd.map(num->{System.out.println("@"+num);......