01进入特权模式enable
switch>enable
switch#
02进入全局配置模式configure terminal
switch>enable
switch#configure terminal
switch(conf)#
03交换机命名hostname aptech2950以aptech2950为例
switch>enable
switch#configure terminal
switch(conf)#hostname aptch-2950
aptech2950(conf)#
04配置使能口令enable password cisco以cisco为例
switch>enable
switch # c onfigure terminal
switch(conf)#hostname aptch2950
aptech2950(conf)# enable password cisco
05配置使能密码enable secret ciscolab以cicsolab为例
switch>enable
switch # c onfigure terminal
switch(conf)#hostname aptch2950
aptech2950(conf)# enble secret ciscolab
06创建多个VLAN
switch>enable (进入特权模式)
switch#vlan data (进入VLAN配置模式)
switch(vlan)#vlan 10 name IT (划分VLAN 10,名称为IT)
switch(vlan)#vlan 20 name HR (划分VLAN20,名称为HR)
switch(vlan)#vlan 30 name FIN (划分VLAN30,名称为FIN)
switch(vlan)#vlan 40 name LOG (划分VLAN40,名称为LOG)
switch(vlan)#exit
07设置VLAN 1
switch>enable
switch # configure terminal
switch(conf)#hostname aptch2950
aptech2950(conf)# interface vlan 1
aptech2950(conf-if)#ip address 192.168.1.1 255.255.255.0
配置交换机端口IP和子网掩码
aptech2950(conf-if)#no shut
aptech2950(conf-if)#exit
aptech2950(conf)#ip default-gateway 192.168.254 设置网关地址
08进入交换机某一个端口interface fastehernet 0/17以17为例
switch>enable
switch # configure terminal
switch(conf)#hostname aptch2950
aptech2950(conf)# interface fastehernet 0/17
aptech2950(conf-if)#
09查看命令show
switch>enable
switch# show version
查看系统中的所有版本信息
show interface vlan 1
查看交换机有关IP协议的配置信息
show running-configure
查看交换机当前起作用的配置信息
show interface fastethernet 0/1
查看交换机1接口具体配置和统计信息
show mac-address-table
查看MAC地址表
show mac-address-table aging-time
查看MAC地址表自动老化时间
10交换机恢复出厂默认命令
switch>enable
switch # erase startup-configure
switch # reload
11双工模式设置
switch> enable
switch # c onfigure terminal
switch2950(conf)#hostname aptch-2950
aptech2950(conf)# interface fastehernet 0/17
aptech2950(conf-if)#duplex full/half/auto
有 full、half、auto三个选项
12cdp相关命令
switch> enable
switch# show cdp 查看设备的cdp全局配置信息
show cdp interface fastethernet 0/17
show cdp traffic 查看有关cdp包的统计信息
show cdp nerghbors 列出与设备相连的cisco设备
13交换机telnet远程登录设置
switch>enable
switch # configure terminal
switch(conf)#hostname aptech-2950
aptech2950(conf)#enable password cisco
aptech2950(conf)#interface fastethernet 0/1
aptech2950(conf-if)#ip address 192.168.1.1 255.255.255.0
aptech2950(conf-it)#no shut
aptech2950(conf-if)#exit
aptech2950(conf)line vty 0 4 设置0-4个用户可以telnet远程登录
aptech2950(conf-line)#password edge 以edge为远程登录的用户密码
主机设置:
IP 192.168.1.2 主机的IP必须和交换机端口的地址在同一个网络段
metmask 255.255.255.0
gate-way 192.168.1.1 网关地址是交换机端口地址
运行:
telent 192.168.1.1
进入telnet远程登录界面
password:edge
aptech2950>en
password:cisco
aptech#