cisco2960配置
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
思科2960交换机配置
通过Console 口登录交换机
第一步:如图1-1所示,建立本地配置环境,只需将PC 机(或终端)的串口通过配置电缆与以太网交换机的Console 口连接。
通过Console 口搭建本地配置环境 1-1(若用笔记本配置,可买一根串口转USB 线,安装驱动,可方便移动配置)
第二步:在PC 机上运行终端仿真程序超级终端,选择与交换机相连的串口,设置终端通信参数:传输速率为9600bit/s 、8位数据位、1位停止位、无校验和无流控,如图1-2至图1-4所示。
新建连接1-2
连接端口设置1-3
端口通信参数设置1-4
PC Switch
第三步:以太网交换机上电,终端上显示设备自检信息,自检结束后提示用户键入回车,之后将出现命令行提示符(如< Switch >),如图1-5所示。
第四步:键入命令,配置以太网交换机或查看以太网交换机运行状态。需要帮助可以随时键入“?”,具体的配置命令请参考相关部分的内容。
1、进入系统视图模式
Switch>
Switch> enable(简写en)特权模式
Switch#
Switch# configure terminal (简写conf t)(中间空格)全局模式
Switch(config)#
2、为设备命名
Switch(config)#hostname cisco2960 交换机命名 cisco2960
cisco2960 (config) #
3、配置特权使能密码
cisco2960 (config)#enable password cisco 配置使能口令cisco
cisco2960 (config) #
cisco2960(config)#enable secret cisco2960 配置使能密码cisco2960
cisco2960 (config) #
4、设置虚拟局域网(配置VLAN)
/*switch> enable 特权模式
switch#conf t 全局模式
switch (conf) #hostname cisco2960*/ 设备名 cisco2960
cisco2960 (config) #vlan 10 创建/进入vlan
cisco2960 (config-vlan) #name vlan10 命名为vlan10
Switch(config-vlan)#vlan 11 创建/进入vlan
Switch(config-vlan)#name vlan11 命名为vlan11
/*cisco2960 (config-vlan) #no vlan11 */ 删除vlan11
cisco2960 (config-vlan) # interface vlan 10 进入配置vlan10
cisco2960 (conf-if) #ip address 192.168.10.1 255.255.255.0
/*vlan10配置192.168.10.1/24的ip地址*/
cisco2960 (config-vlan) # interface vlan 11 配置vlan11
cisco2960 (conf-if) #ip address 192.168.11.1 255.255.255.0
/*vlan11配置192.168.11.1/24的ip地址*/
cisco2960(conf-if)#no shut使配置处于运行中
cisco2960 (conf-if) #exit 返回上一级配置
cisco2960(conf)#ip default-gateway 192.168.10.254设置网关地址
cisco2960(conf) #end 返回
cisco2960#write 保存配置
5、进入交换机某一端口interface fastethernet 0/1以1 端口为例
/*switch> enable 特权模式
switch#configure terminal 全局模式
switch (conf) #hostname cisco2960*/ 设备名 cisco2960
cisco2960 (conf) # interface fastethernet 0/1 进入网络1 端口
/*cisco2960 (conf) # interface range f0/1-10*/ 选择多个端口
cisco2960 (config-if)#switchport mode access 将此端口设置接入模式
cisco2960 (config-if)#switchport access vlan 10端口1设置为vlan 10接入模式
/*cisco2960 (conf) # interface fastethernet 0/11 进入网络11 端口
cisco2960 (config-if)#switchport access vlan 11端口11设置为vlan 11接入模式*/ cisco2960 (conf-if) #end 返回
cisco2960#copy running-config startup-config 保存当前设置
6、设置端口速率:(一般默认不用配置)
/*switch> enable
switch#configure terminal
switch (conf) #hostname cisco2960
switch (config)# interface range f0/1, f0/3, f0/5 - 10 选择端口范围端口1、3、5、6、7、8、9、10*/
cisco2960 (conf) # interface range f0/1- 24*/ 设置端口1-24
/*10 Force 10 Mbps operation
100 Force 100 Mbps operation
1000 Force 1000 Mbps operation