cisco 交换机 sh run 口令意思有没人帮我每句都注释一下 谢谢!

来源:百度知道 编辑:UC知道 时间:2024/09/23 13:31:50
c3560#sh run
Building configuration...
Current configuration : 3474 bytes!
version 12.2
no service pad
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
hostname c3560
enable password cisco
no aaa new-model
vtp mode transparent
ip subnet-zero
ip routing
interface Port-channel1
switchport trunk encapsulation dot1q
switchport mode trunk
no ip address
spanning-tree cost 50
interface FastEthernet0/23
description to c3560
switchport trunk encapsulation dot1q
switchport mode trunk
no ip address
channel-group 1 mode on
interface FastEthernet0/24
description to C3560
switchport trunk encapsulation dot1q
switchport mode trunk
no ip address
channel-group 1 mode on
vlan 11
name toSIMS
interface Vlan11
ip address 192.168.64.237 255.255.255.240
vlan 11
name toSIM

啊...太长了
c3560#sh run (显示running-config文件)
Building configuration...
Current configuration : 3474 bytes! (配置文件大小)
version 12.2 (IOS版本号)
no service pad (以下2个没多大意义)
service timestamps debug uptime
service timestamps log uptime
no service password-encryption (意思是你配置的VTY和CONSOLE命令不会被加密)
hostname c3560 (主机名)
enable password cisco (特权模式密码,话说这个交换机是祖传的吗?)
no aaa new-model (无意义)
vtp mode transparent (虚拟中继模式)
ip subnet-zero (就是前后2个子网都变为可用)
ip routing (IP路由)
interface Port-channel1 (以下为配置ETHERCHANNEL)
switchport trunk encapsulation dot1q
switchport mode trunk
no ip address
spanning-tree cost 50 (STP开销值)
interface FastEthernet0/23 (进入快速以太网端口23?很牛比的交换机cisco3560)
description to c3560 (端口说明)
switchport trunk encapsulation dot1q (中继封装802.1Q)
switchport mode trunk (端口模式为中继)
no ip address (无IP)
channel-group 1 mode on (另外一条中继线路,完全可以用RANGE配置)
interf