当前位置:首页 > 科技 > 正文内容

思科交换机的基本配置(思科交换机的基本配置)

2019-06-13 13:06:02科技629

大家好,今天就和小雪一起来看看这个问题吧 。思科交换机的基本配置,思科交换机的基本配置很多人还不知道,现在让我们一起来看看吧!

思科交换机的基本配置的方法一、交换机的基本配置

思科交换机的基本配置(思科交换机的基本配置)

作者:浙江师范大学陈超

从本篇文章开始,将连载大概8-9篇自己学习交换与路由的实验报告,但是怕自己能力不行,会出现错误,所以,先载两篇文章,依次为:交换机的基本配置;路由器基本配置。本篇为交换机的基本配置,使用的仿真软件是加拿大白鲑的一款免费软件:Cisco Packet Tracer。想学习的可以在百度自行下载。

下面开始附上实验过程:

实验环境:

思科2950交换机一台,控制台电缆一根,个人电脑机一台,网线一根。连接如下图所示:

实验步骤:

一、交换机的带外配置;

1、 在用户模式、特权模式、全局模式、接口模式之间转换;

开关使能

开关#配置终端

输入配置命令,一行一个。以CNTL/Z结尾。

交换机(配置)#接口快速以太网0/1

开关(配置-如果)#退出

开关(配置)#退出

开关#

%SYS-5-CONFIG_I:通过控制台从控制台进行配置

开关#退出

交换机con0现在可用

按下返回键开始。

转换

2、将交换机的名称改为"学生";

交换机(配置)#主机名学生

学生(配置)#

3、 为交换机各个模式设置密码"思科";

特权模式下的密码保护

学生#启用

学生#配置测试

输入配置命令,一行一个。以CNTL/Z结尾。

学生(配置)#启用口令加拿大白鲑

学生(配置)#启用加密cisco1

远程登录口令设置

学生#配置测试

输入配置命令,一行一个。以CNTL/Z结尾。

学生(配置)#线路控制台0

学生(配置行)#行vty 0 4

学生(配置行)#密码顺式co2

学生(配置行)#登录

学生(配置行)#

学生#

4、为交换机制定一个互联网协议(互联网协议)地址10 .10 .10 .x/24;

学生#配置

从终端、内存或网络[终端]进行配置?

输入配置命令,一行一个。以CNTL/Z结尾。

学生(配置)#接口虚拟局域网1

学生(配置-如果)#ip地址10.10.10.1255.0.0.0

5、开启交换机的用于远程联接服务的标准协议或者实现此协议的软件(可为动词)服务功能,建立用于远程联接服务的标准协议或者实现此协议的软件(可为动词)用户管理员,口令思科,并制定只能从24年10月10日登录用于远程联接服务的标准协议或者实现此协议的软件(可为动词)服务器;

学生#

学生#配置测试

输入配置命令,一行一个。以CNTL/Z结尾。

学生(配置)#用户管理员密码0思科

学生(配置)#

6、 查看配置情况;

学生能力

密码:

学生#秀

  Building configuration...

  hostname student

  !

  enable secret 5$1$mERr$q.MA2tj.WFptzvbifq/1i.

  enable password cisco

  !

  !

  username admin password 0 cisco

  interface Vlan1

  ipaddress 10.10.10.1 255.0.0.0

  !

  !

  line con 0

  !

  line vty 0 4

  password cisco2

  login

  line vty 5 15

  login

  !

  !

  End

  二、交换机的端口配置:

  1、 配置接口的描述、关闭借口、启动接口、配置接口的速度为100Mbps、配置接口工作模式为全双工、配置接口的流程控制;

  student#configure terminal

  Enter configuration commands, one perline. End with CNTL/Z.

  student(config)#interface FastEthernet0/1

  student(config-if)#shutdown

  %LINK-5-CHANGED: Interface FastEthernet0/1,changed state to administratively down

  %LINEPROTO-5-UPDOWN: Line protocol onInterface FastEthernet0/1, changed state to down

  %LINEPROTO-5-UPDOWN: Line protocol onInterface Vlan1, changed state to down

  student(config-if)#

  student(config-if)#exit

  student(config)#interface FastEthernet0/1

  student(config-if)#no shutdown

  %LINK-5-CHANGED: Interface FastEthernet0/1,changed state to up

  %LINEPROTO-5-UPDOWN: Line protocol onInterface FastEthernet0/1, changed state to up

  %LINEPROTO-5-UPDOWN: Line protocol onInterface Vlan1, changed state to up

  student(config-if)#speed 100

  student(config-if)#duplex full

  %LINK-5-CHANGED: Interface FastEthernet0/1,changed state to down

  %LINEPROTO-5-UPDOWN: Line protocol onInterface FastEthernet0/1, changed state to down

  %LINEPROTO-5-UPDOWN: Line protocol onInterface Vlan1, changed state to down

  student(config-if)#

  2、 配置接口FastEthernet0/10为Access口;

  student#

  student#configure terminal

  Enter configuration commands, one perline. End with CNTL/Z.

  student(config)#interface FastEthernet0/10

  student(config-if)#switchport mode access

  student(config-if)#

  3、 配置接口FastEthernet0/12为Trunk口;

  student#

  student#configure t

  Enter configuration commands, one perline. End with CNTL/Z.

  student(config)#interface fastethernet0/12

  student(config-if)#switchport mode Trunk

  student(config-if)#end

  4、 查看配置情况;

  !

  interface FastEthernet0/1

  duplex full

  speed100

  !

  interface FastEthernet0/2

  !

  interface FastEthernet0/9

  !

  interface FastEthernet0/10

  switchport mode access

  !

  interface FastEthernet0/11

  !

  interface FastEthernet0/12

  switchport mode trunk

  !

  student#show running-c

  Building configuration...

  Current configuration : 1275 bytes

  !

  version 12.1

  no service timestamps log datetime msec

  no service timestamps debug datetime msec

  no service password-encryption

  !

  hostname student

  !

  enable secret 5$1$mERr$q.MA2tj.WFptzvbifq/1i.

  enable password cisco

  !

  !

  username admin password 0 cisco

  !

  !

  interface FastEthernet0/1

  duplex full

  speed 100

  !

  interface FastEthernet0/2

  !

  interface FastEthernet0/3

  !

  interface FastEthernet0/4

  !

  interface FastEthernet0/5

  !

  interface FastEthernet0/6

  !

  interface FastEthernet0/7

  !

  interface FastEthernet0/8

  !

  interface FastEthernet0/9

  !

  interface FastEthernet0/10

  switchport mode access

  !

  interface FastEthernet0/11

  !

  interface FastEthernet0/12

  switchport mode trunk

  !

  interface FastEthernet0/13

  !

  interface FastEthernet0/14

  !

  interface FastEthernet0/15

  !

  interface FastEthernet0/16

  !

  interface FastEthernet0/17

  !

  interface FastEthernet0/18

  !

  interface FastEthernet0/19

  !

  interface FastEthernet0/20

  !

  interface FastEthernet0/21

  !

  interface FastEthernet0/22

  !

  interface FastEthernet0/23

  !

  interface FastEthernet0/24

  !

  interface GigabitEthernet1/1

  !

  interface GigabitEthernet1/2

  !

  interface Vlan1

  ipaddress 10.10.10.1 255.0.0.0

  !

  !

  line con 0

  !

  line vty 0 4

  password cisco2

  login

  line vty 5 15

  login

  !

  !

  end

看了“思科交换机的基本配置”还想看:

1.思科交换机的基本配置详解

2.思科交换机基本配置实例讲解

3.Cisco交换机基本配置方法

4.思科交换机配置教程详解

5.Cisco交换机常用配置命令总结

6.Cisco常用的路由器交换机配置命令

这篇文章到此就结束,希望能帮助到大家。

扫描二维码推送至手机访问。

版权声明:文章内容摘自网络,如果无意之中侵犯了您的版权,请联系本站,本站将在3个工作日内删除。谢谢!

本文链接:https://www.xixia168.cn/n/kj/7397.html

标签: 思科交换机
分享给朋友:

“思科交换机的基本配置(思科交换机的基本配置)” 的相关文章

谷雨的特点和风俗(谷雨节气的民间风俗)

谷雨的特点和风俗(谷雨节气的民间风俗)

大家好,今天就和小白一起来看看这个问题吧 。谷雨节气的民间风俗,谷雨的特点和风俗很多人还不知道,现在让我们一起来看看吧!  一、谷雨节气的民间风俗  1、走谷雨  古时有“走谷雨”的风俗,这天青年妇女走村串亲,有的到野外走一圈就回来。寓意与自然相融合,强身健体。  2、喝谷雨茶  传说谷雨这天的茶喝...

回民不吃猪肉是因为什么(回民为什么不吃猪肉)

回民不吃猪肉是因为什么(回民为什么不吃猪肉)

大家好,今天就和小熊一起来看看这个问题吧 。回民为什么不吃猪肉,回民不吃猪肉是因为什么很多人还不知道,现在让我们一起来看看吧!    1、回族的人民普遍都信奉意思老家,而伊斯兰教中的《古兰经》里是明文规定禁止教徒食用猪肉的。  2、根据伊斯兰教的相关规定,回族人们禁止食用猪、马、驴、骡、狗和一切自死...

公历是阳历吗(公历是什么)

公历是阳历吗(公历是什么)

大家好,今天就和丹尼一起来看看这个问题吧 。公历是什么,公历是阳历吗很多人还不知道,现在让我们一起来看看吧!导语:现在我国使用农历和公历两种不同的历法来计时,农历是我国的传统历法,大家对它都比较熟悉了,但是公历是在辛亥革命之后才正式引入到我国的,很多人都不知道公历是什么。那么公历是阳历吗?下面来看看...

高考各科总分是多少 (高考各科满分是多少)

高考各科总分是多少 (高考各科满分是多少)

大家好,今天就和小鸥一起来看看这个问题吧 。高考各科满分是多少,高考各科总分是多少 很多人还不知道,现在让我们一起来看看吧!  导语:众所周知,高考要考试的科目有蛮多门的,有语文、数学、英语、历史、地理、政治、物理、化学、生物等。高考各科目的满分分数是100分或者是150分,那么高考各科满分是多少?...

夕阳西沉是什么时候(夕阳西沉的时间)

夕阳西沉是什么时候(夕阳西沉的时间)

大家好,今天就和丹尼一起来看看这个问题吧 。夕阳西沉的时间,夕阳西沉是什么时候很多人还不知道,现在让我们一起来看看吧!导语:我国汉子博大精深,几乎每一个时间段都能用一些四字词来描写,例如,我们要描写日落时的样子,可以用“夕阳西沉”一词。那么,具体夕阳西沉的时间是指哪一段呢?一天中夕阳西沉是什么时候?...

寒食节和清明节的不同之处(寒食节和清明节的区别)

寒食节和清明节的不同之处(寒食节和清明节的区别)

大家好,今天就和吖吖一起来看看这个问题吧 。寒食节和清明节的区别,寒食节和清明节的不同之处很多人还不知道,现在让我们一起来看看吧!    一、时间不同  1.寒食节,也叫禁烟节、冷节、百五节,是农历冬至后的第105天,在清明节的前一、两天。曾经,寒食节在中国民间是第一大祭祀之日。  2.清明节,也叫...