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

上一页大家津津乐道cisco基本操作命令开关,而端午假期,该cisco简单的开关配置,并希望请您分享“端午节快乐”!Ok,配置交换机,首先,你必须进入全局配置模式Switch,在成功连接开关和着陆成功进入特权模式

1、进入全局配置模式:

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

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

2、改动port描写叙述

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

改动描写叙述的关键命令在于,在配置模式下。进入到要改动的port下,然后使用description + “内容”。效果应该非常直观了吧。接下来就是改动port的所在Vlan了

3、改动portVlan

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

逻辑和改动port描写叙述是一样的,对于配置来说,肯定是到了能有配置权限的地方和要配置的对象。这里改动portVlan的关键命令为:sw acc vl + vlantag,命令非常明显被简写了,可是不影响运行。命令的全写为:switchport access vlan + vlantag

另一些对port的简单操作,譬如改动port的模式,

4、改动port模式

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、port状态

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,而且shutdownport,这时候大家可能看到了交换机3号port的状态已变成disable了,假设我们要启用port仅仅需

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

今天就到这里了。有时间再来和大家分享一下在工作上须要的而且对自己非常实用的东西与知识。请继续关注下一个——在交换机登录某些设置

版权声明:本文博客原创文章,博客,未经同意,不得转载。

时间: 2024-10-06 21:14:31

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(思科)交换机配置篇【二】

上一篇给大家讲到了cisco交换机的基本操作命令,趁端午节放假前,把cisco交换机的简单配置分享一下并预祝一下各位"端午节快乐"!Ok,要进行交换机的配置,首先就得进入交换机的全局配置模式,在成功连接交换机并且登陆成功进入特权模式下 1.输入进入全局配置模式: switch#configure terminal Enter configuration commands, one per line. End with CNTL/Z. switch(config)# switch(con

Cisco 2960交换机配置

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

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

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

思科交换机配置syslog记录日志到syslog watcher日志记录软件

C3560#config tC3560(config)#logging onC3560(config)#logging host 192.168.210 //日志服务器的IP地址 C3560(config)#logging facility local0 //日志临时存储位置C3560(config)#logging origin-id {hostname|ip|string}C3560(config)#logging trap 3 //日志记录级别C3560(config)#logging s

Cisco思科IOS配置控制台Console口和远程虚拟终端以及enable使能登录密码

1.设置控制台Console口密码 Router(config)#line console 0   #进入控制台口 Router(config-line)#login   #允许口令登录 Router(config-line)#password xxx   #登录口令xxx 2.设置远程虚拟终端登陆密码 Router(config)#line vty 0 4   #进入虚拟终端(最大支持5个终端) Router(config-line)#login   #允许口令登录 Router(config