网络运维与网络安全 学习笔记 第二天(2)
安装思科模拟器 Cisco Packet Tracer_6.2并汉化
1.复制Chinese.ptl到C:\Program Files(x86)\Cisco Packet Tracer 6.2sv\languages
2.打开Cisco模拟器,选择菜单Options-Perferemces-Interface-Chinese.ptl-Change Language-关闭重启Cisco模拟器
Cisco交换机工作模式
Switch> 用户模式
Switch>enable
Switch# 特权模式
Switch#config terminal
Switch(config)# 全局配置模式
Switch(config)#interface f0/1
Switch(config-if)# 接口模式
exit 返回前一模式
禁用/启用接口
Switch>enable
Switch#config terminal
Switch(config)#interface f0/2
Switch(config-if)#shutdown 禁用接口
Switch(config-if)#no shutdown 启用接口
更改主机名
Switch>enable
Switch#config terminal
Switch(config)#hostname Switch1 更改交换机名为Switch1
密码设置
1.配置用户进入特权模式的明文密码
Switch>enable
Switch#config terminal
Switch(config)#enable password 123
Switch(config)#exit
Switch#exit
Switch>
Switch>enable
Password:输入123
2.配置用户进入特权模式的密文密码(安全性高、优先级高)
Switch>enable
Switch#config terminal
Switch(config)#enable secret 456
Switch(config)#exit
Switch#exit
Switch>
Switch>enable
Password:输入456
查看配置
Switch>enable
Switch#show running-config
重启设备
Switch>enable
Switch#reload 重启 (未保存重启丢失已配置的信息)
保存配置
Switch>enable
Switch#config terminal
Switch(config)#enable password 123
Switch(config)#exit
Switch#write 保存
Switch#reload