cisco(思科)交换机配置篇【二】

上一篇给大家讲到了cisco交换机的基本操作命令,趁端午节放假前,把cisco交换机的简单配置分享一下并预祝一下各位“端午节快乐”!Ok,要进行交换机的配置,首先就得进入交换机的全局配置模式,在成功连接交换机并且登陆成功进入特权模式下

1、输入进入全局配置模式:

switch#configure terminal
Enter configuration commands, one per line.  End with CNTL/Z.
switch(config)#
switch(config)#
switch(config)#

这么简单的一条命令,俺们就进入到全局配置模式了,还记得上一篇中查看端口所查询到的信息中name字段下的值吗?这字段其实代表的是交换机端口的描述信息

2、修改端口描述

switch#
switch#
switch#conf ter
Enter configuration commands, one per line.  End with CNTL/Z.
switch(config)#
switch(config)#int fa0/3
switch(config-if)#
switch(config-if)#desc
switch(config-if)#description updateDesc
switch(config-if)#
switch(config-if)#exit
switch(config)#exit
switch#
switch#show inter
switch#show interfaces statu
switch#show interfaces status 

Port      Name               Status       Vlan       Duplex  Speed Type
Fa0/1                        connected    1          a-full  a-100 10/100BaseTX
Fa0/2     h3c2.250           connected    trunk      a-full  a-100 10/100BaseTX
Fa0/3     updateDesc         notconnect   1            auto   auto 10/100BaseTX
Fa0/4                        connected    1          a-full  a-100 10/100BaseTX
Fa0/5     h3c-2.200          connected    1          a-full  a-100 10/100BaseTX
Fa0/6                        notconnect   1            auto   auto 10/100BaseTX

修改描述的关键命令在于,在配置模式下,进入到要修改的端口下,然后使用description + “内容”!效果应该很直观了吧,接下来就是修改端口的所在Vlan了

3、修改端口Vlan

switch#
switch#
switch#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
switch(config)#
switch(config)#int fa0/3
switch(config-if)#
switch(config-if)#sw acc vl 2
switch(config-if)#
switch(config-if)#exit
switch(config)#
switch(config)#exit
switch#
switch#show inter statu

Port      Name               Status       Vlan       Duplex  Speed Type
Fa0/1                        connected    1          a-full  a-100 10/100BaseTX
Fa0/2     h3c2.250           connected    trunk      a-full  a-100 10/100BaseTX
Fa0/3     updateDesc         notconnect   2            auto   auto 10/100BaseTX
Fa0/4                        connected    1          a-full  a-100 10/100BaseTX
Fa0/5     h3c-2.200          connected    1          a-full  a-100 10/100BaseTX
Fa0/6                        notconnect   1            auto   auto 10/100BaseTX

逻辑和修改端口描述是一样的,对于配置来说,肯定是到了能有配置权限的地方和要配置的对象,这里修改端口Vlan的关键命令为:sw acc vl + vlantag,命令很明显被简写了,但是不影响执行,命令的全写为:switchport access vlan + vlantag

还有一些对端口的简单操作,譬如修改端口的模式,

4、修改端口模式

switch(config-if)#switchport trunk encap dot1q ----------------设置vlan 中继的封装协议
注:dot1q就是 IEEE 802.1Q协议,是vlan的一种封装方式,是公有协议。还有一种trunk协议,是ISL,也是vlan的一种封装方式,不过这是Cisco思科私有协议,其他厂商不能用。
switch(config-if)#switchport mode trunk ------------------------设置端口类型为trunk
switch(config-if)#switchport trunk allowed vlan 1,2 ---------设置允许的vlan,默认不用配置,为所有vlan
switch(config-if)#switchport trun native vlan 999 ---------------设置trunk口的native vlan

5、端口状态

switch(config)#
switch(config)#int fa0/3
switch(config-if)#
switch(config-if)#
switch(config-if)#sw acc vl 1
switch(config-if)#
switch(config-if)#
switch(config-if)#shutd
switch(config-if)#shutdown
switch(config-if)#
switch(config-if)#exit
switch(config)#
switch(config)#exit
switch#
switch#show inter statu

Port      Name               Status       Vlan       Duplex  Speed Type
Fa0/1                        connected    1          a-full  a-100 10/100BaseTX
Fa0/2     h3c2.250           connected    trunk      a-full  a-100 10/100BaseTX
Fa0/3     updateDesc         disabled     1            auto   auto 10/100BaseTX
Fa0/4                        connected    1          a-full  a-100 10/100BaseTX

上面的一系列为切换Vlan,并且shutdown端口,这时候大家可能看到了交换机3号端口的状态已变成disable了,如果我们要启用端口只需

switch#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
switch(config)#
switch(config)#int fa0/3
switch(config-if)#
switch(config-if)#no shut
switch(config-if)#no shutdown
switch(config-if)#
switch(config-if)#exit
switch(config)#
switch(config)#exit
switch#
switch#show inter statu

Port      Name               Status       Vlan       Duplex  Speed Type
Fa0/1                        connected    1          a-full  a-100 10/100BaseTX
Fa0/2     h3c2.250           connected    trunk      a-full  a-100 10/100BaseTX
Fa0/3     updateDesc         notconnect   1            auto   auto 10/100BaseTX
Fa0/4                        connected    1          a-full  a-100 10/100BaseTX

今天就到这里了,有时间再来和大家分享一下在工作上需要的并且对自己很有用的东西和知识!敬请期待下一篇——对交换机登录的一些设置

cisco(思科)交换机配置篇【二】,布布扣,bubuko.com

时间: 2024-11-14 01:36:29

cisco(思科)交换机配置篇【二】的相关文章

Cisco 思科交换机配置多VLAN windows做dhcp服务器

Cisco端配置:(仅仅DHCP) service dhcp ip dhcp relay information trust-all interface Vlan4 ip address 192.168.4.254 255.255.255.0 ip helper-address 10.0.0.11!interface Vlan6 ip address 192.168.6.254 255.255.255.0 ip helper-address 10.0.0.11! 2.DHCP的常用配置: ip

Cisco 2960交换机配置

Cisco 2960交换机配置 1. Cisco工作模式分类及作用 #用户模式仅答应基本的监测命令,在这种模式下不能改变路由器的配置. Switch>                                         #用户模式 #允许用户执行所有的测试.查看.保存等命令,这种模式下不能进行路由器配置的修改,一般此模式建议设置密码保护. Switch>enable                                  #进入特权模式 Switch# #允许用户配置路由

DNS 配置篇二

一.子域配置 1.基本概念 子域的作用是在本地DNS下再划分一个小的(子)DNS.作用的方便集中管理, 不过问题是要配置转发.父DNS可以知道解析子DNS,子DNS 则只可以解析自己 本地记录,不能解析父DNS. 正向子域授权: 只需要在父域的区域解析库中添加"胶水记录", glue record 子域名称   IN  NS  子域的名称服务器 ops  IN   NS   ns.ops ops  IN   NS   ns2.ops ns.ops  IN  A       172.16

cisco(思科)交换机配置篇【两】

上一页大家津津乐道cisco基本操作命令开关,而端午假期,该cisco简单的开关配置,并希望请您分享"端午节快乐"!Ok,配置交换机,首先,你必须进入全局配置模式Switch,在成功连接开关和着陆成功进入特权模式 1.进入全局配置模式: switch#configure terminal Enter configuration commands, one per line. End with CNTL/Z. switch(config)# switch(config)# switch(

Cisco路由器交换机配置命令详解

1. 交换机支持的命令: 交换机基本状态:switch: :ROM状态, 路由器是rommon>hostname> :用户模式hostname# :特权模式hostname(config)# :全局配置模式hostname(config-if)# :接口状态 交换机口令设置:switch>enable :进入特权模式switch#config terminal :进入全局配置模式switch(config)#hostname :设置交换机的主机名switch(config)#enable

【故障处理】之Cisco 3650交换机配置无法保存

客户来电话反映一台思科的3650交换机重启之后配置没有了,第一反应是不是寄存器值发生变化了,登录系统通过show verion查看,截图如下: 在最下方发现:Configuration register is 0x142 (will be 0x102 at next reload) 寄存器值的确有问题,不过后面却显示will be 0x102 at next reload.按道理来说应该没问题啊!手动在全局模式下修改了寄存器值为0x102,然后保存,再次重启!结果还是不行,启动后配置仍然丢失!

关于软路由多拨扩WAN的思科交换机配置

说明:预定义四个外网千M网卡.在思科S5000P的24口交换机上分四组外网端口.每个外网网卡扩展5个外网拨号ADSL线路.具体配置如下 VLAN划分 TRUNK划分

Exchange2010安装配置篇二 自动安装

进行 exchange 自动化安装: 邮件服务器 [ 打开powershell  ] 敲敲命令行? 2008 R2 sp1安装远程管理包 > Add-WindowsFeature RSAT-ADDS 1.切换到 exchange 放置路径? > cd: c:/exchange2010 然后执行 .\exchange201-sp2-x64 (命令前 有个 .\  .是为了放置不信任的脚本 :如果想取消 就执行下以下指令提示就OK了 指令 : > set-executionpolicy un

思科交换机配置单播MAC地址过滤

1.其他厂商: 在华为,华三等设备上,我们都有"黑洞MAC地址表项" 的配置,其特点是手动配置.不会老化,且重启后也不会丢失.例如如下示例: 黑洞表项是特殊的静态MAC地址表项,丢弃含有特定源MAC地址或目的的MAC地址的数据帧:防止无用的MAC地址表项占用MAC地址表:将非信任的MAC配置为黑洞MAC地址,当设备收到目的或源MAC地址为黑洞里的MAC时直接丢弃,防止网络攻击. 在MAC地址已满的情况下配置静态或黑洞MAC表时,如果表中存在对应的要配置的表则自动覆盖:如果不存在则无法添