交换机命令: 配置IP 中继 双工(工作模式) VLAN VTP
注意接口模式命令的应用 灵活运用TAB键
switch> 进入用户模式
switch>enable 进入特权模式
switch#configure terminal 进入全局配置模式
switch#configure terminal 进入全局配置模式
switch(config)# hostname s1 设置交换机的主机名
s1(config)#enable passwd cisco 使能口令
s1(config)#enable secret cisco 使能密码(加密的特权密码)
s1(config)#service password-encryption 所有的密码全变成密文
S1(config)# no ip domain-lookup 关闭寻找域名服务
S1(config)#alias exec a show running-configure 别名
S1(config)# line console 0
S1(config-line)# password cisco
S1(config-line)#login
S1(config-line)#exec-timeout 0 0 (防止系统超时退出特权模式) 零代表无限制 0分0秒
S1(config-line)#logging synchronous(避免被系统出现的控制信息打断命令)
S1(config-line)# password cisco
S1(config-line)#login
S1(config-line)#exec-timeout 0 0 (防止系统超时退出特权模式) 零代表无限制 0分0秒
S1(config-line)#logging synchronous(避免被系统出现的控制信息打断命令)
s1(config)#interface vlan 1
s1(config-if)#ip address 192.168.10.1 255.255.255.0 配置管理IP
s1(config-if)#speed 100 配置端口速度为100M
s1(config-if)#duplex auto 自动
full 全双工
half 半双工
s1(config-if)#no shutdown 开启端口使配置生效
s1(config)#ip default-gateway 192.168.10.254 配置交换机默认网关
S1#show running-configure 检查配置(保存在内存RAM中)
中继模式
S1(config-if)# switchport mode access 接入链路(swich--PC)
S1(config-if)# switchport mode trunk 中继模式(swich--swich)
S1(config-if)#switchport trunk allowed vlan remove 10
将vlan 10从该中继链路删除 add 增加
VLAN
s1#vlan database
s1(vlan)#vlan 10 name vlan10
s1(config)#vlan 10 建立vlan
s1(config-vlan)#name caiwu vlan命名
s1(config)#no vlan 10 删除vlan 10
s1#show vlan brief 验证
VTP
s1(config)#vtp version 2 启用版本2
s1(config)#vtp domain test 加入管理域
s1(config)#vtp mode server 配置成VTP服务器
client 配置成VTP客户端
transparent 配置成VTP透明模式
s1(config)#vtp password cisco vtp口令
s1(config)#vtp pruning 启用vtp修剪
switch(config)#no vtp pruning 关闭VTP修剪
S1(config-if)#switchport trunk pruning vlan remove vlan-id
从可修剪列表中去除某VLAN
s1(config)#vtp domain test-a 脱离vtp域
s1#show vtp status 检查配置
配置远程登陆
S1(config)#line vty 0 15
S1(config-line)#password cisco
S1(config)#line vty 0 15
S1(config-line)#password cisco
S1(config-line)#exec-timeout 0 0
S1(config-line)#logging synchronous
S1(config-line)#login
S1(config-line)#login
S1#erase startup-config 清除配置
S1#copy running-config startup-config 保存配置到(NVRAM中)
S1#write 写入配置
S1#show startup-config 检查保存的配置信息
S1#reload 重启