首页 热点资讯 义务教育 高等教育 出国留学 考研考公

需要配置CISCO2950交换机的配置命令

发布网友 发布时间:2022-04-22 21:14

我来回答

4个回答

热心网友 时间:2022-04-12 22:29

2007-04-24 19:15一.在交换机Cisco2950上的配置
switch>
switch>enable
switch#
switch#vlan database(进入vlan维护模式)
switch(vlan)#vlan 2 name vlan2(给vlan 2命名为vlan2)
switch(vlan)#vlan 4 name vlan4(给vlan 2命名为vlan4)
switch(vlan)#exit(这里要注意一下,要打入exit退出才有效,不能用ctrl+z或end直接退出,因为这么不能使配置生效!)
switch#show vlan(查看vlan的配置,默认有vlan1)
switch#configure terminal(进入全局配置模式)
switch(config)#interface f0/1(进入fastethernet0/1接口配置模式)
switch(config-if)#switchport mode access(这步可以省略)
switch(config-if)#switchport access vlan 2(把该接口划分到vlan2,记得vlan2之间有空格)
switch(config-if)#no shutdown(激活端口)
switch(config-if)#exit
switch(config)#interface f0/2
switch(config-if)#switchport mode access
switch(config-if)#switchport access vlan 4
switch(config-if)#no shutdown
switch(config-if)#exit
switch(config)#interface f0/3
switch(config-if)#switchport mode trunk(设置此口为中继模式)
switch(config-if)#no shutdown
witch(config-if)#exit(这里可以直接用ctrl+z或end直接退出到特权模式)
二.在路由器Cisco2611上的配置(!!!单臂路由!!!)
router#configure terminal
router(config)#interface f0/0.1(进入子接口模式)
router(config-subif)#encapsulation dot1q 2(设置封装类型为dot1q,它是思科特有的。此外还有isl封装,要看该设备支不支持。数字2是vlan号)
router(config-subif)#ip address 192.168.1.1 255.255.255.0
router(config-subif)#exit
router(config)#interface f0/0.2
router(config-subif)#encapsulation dot1q 4
router(config-subif)#ip address 192.168.3.1 255.255.255.0
router(config-subif)#exit
router(config)#interface f0/0
router(config-if)#no shutdown
router(config-if)#^z
router#show running-config
router#copy running-config startup-config
三.给PC1,PC2设置好IP地址,然后用ping命名令测

热心网友 时间:2022-04-12 23:47

特权模式enable:
使用CDP协议(发现协议)
show cdp
show cdp interface interface-number
show cdp neighbors detail
=show cdp entry *|word
显示接口的CDP配置信息
show cdp interface f0/1
显示有关CDP包的统计信息,主要用来查看其接受和发送的公告报文数
show cdp traffic
以简洁的形式列出与本设备相邻的Cisco设备
show cdp neighbors
显示所有入口项的细节
show cdp entry *
保存交换机里的配置
copy running-config startup-config
=write
恢复交换机出厂值的步骤
erase startup-config
重新加载交换机
reload
查看VLAN信息的命令
show vlan brief
查看某个VLAN的信息
show vlan id vlan-id
查看MAC地址表
show mac-address-table
查看VLAN信息
show vlan{vlan-id}
全局配置模式config terminal
配置主机名
hostname ****
查看交换机配置的命令
show running-config
使能口令
enable password ****
加密使能口令
enable secret ****
配置交换机网关
ip default-gateway *.*.*.*
创建vlan
vlan vlan-id
name ****
mtu mtu-size(可选)
end
show vlan {name ****|id vlan-id}
copy running-config startup config(可选)
删除VLAN
configure terminal
mo vlan vlan-id
end
show vlan brief
copy running-config startup config
配置接口为Trunk模式
interface interface-id
switchport moke trunk
配置接口为动态协商模式
interfaceinterface-id
switchport mode dynamic desirable/auto
在Trunk上添加VLAN
interface interface-id
switchport trunk allowed vlan add vlan-list
在Trunk上删除VLAN
interface interface-id
switchport trunk allowed vlan remove vlan-list
接口配置模式interface interface-id
ipaddress *.*.*.* 255.255.255.0
Line模式line console 0
Catalyst 2950交换机密码恢复
1.拔下交换机的电源线
2.用手按在交换机的MODE按键上,插上电源线.看到特定界面后,松开MODE键
3.在switch:后执行flash_init命令
4.查看Flash中的文件
5.把config.text文件改名为config.old文件
6.执行boot命令,启动交换机
7.进入特权模式查看Flash里的文件
8.把文件config.old改为config.text文件
9.把config.text复制为系统的running-config
10.进入配置模式重新设置密码并存盘,密码恢复完成.
在VLAN数据库中VLAN的配置命令
vlan database
vlan vlan-id name ****
vlan vlan-id mtu mtu-size(可选)
exit
show vlan {name ****|id vlan-id}
copy running-config startup config(可选)
在VLAN中添加,删除端口
configure terminal
interface interface-id
switchport mode access
switchport access vlan vlan-id
end
show running-config interface interface-id
show interfaces interface-id switch port

热心网友 时间:2022-04-13 01:22

建议去 http://www.bitscn.com/cisco/switchconfigure/200604/12961.html看详细资料!

热心网友 时间:2022-04-13 03:13

这个网址上绝对正确. http://blog.chinaunix.net/u2/62093/showart_487536.html 谢谢采纳

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com