- 设置交换机特权密码
- 在全局模式下:
- 设置加密密码:switch(config)#enable secret密码设置明文密码:switch(config)#enable password 密码
- 设置交换机控制台密码
- 在全局模式下
- switch(config)#line console 0switch(config-line)#password 密码
- switch(config-line)#login
- 设置交换机Telnet密码
- 在全局模式下
- switch(config)#line vty 0 4
switch(config-line)#password 密码
switch(config-line)#login
- 交换机工作模式
1.配置模式切换
switch> //普通用户模式
switch>enable //进入特权用户模式
switch# //特权用户模式
switch#configure terminal //进入全局配置模式
switch(config)# //全局配置模式
switch(config)#interface f0/1 //进入接口配置模式
switch(config-if)# //接口配置模式
switch(config-if)# exit //返回上一级模式
switch(config)#
switch#disable //退出特权模式
switch>
switch(config-if)#end //直接返回特权模式
switch#
2.修改交换机的名字(Hostname)
switch#configure terminal
switch(config)#hostname switch1 //修改交换机名字为“switch1”
3.设置交换机端口参数
switch1(config)#interface fastEthernet 0/1
switch1(config-if)#speed100 // 配置端口速率为100Mbpsswitch1(config-if)#duplex half // 配置为半双工模式
switch1(config-if)#no shutdown //开启端口
4.配置交换机管理地址
switch1(config-if)#exit
switch1(config)#interface vlan 1 //打开交换机的管理VLANswitch1(config-if)#ip address 192.168.1.1 255.255.255.0 //配置管理地址为 192.168.1.1/24
switch1(config-if)#no shutdown
switch1(config-if)#exit
switch1(config)#
5.管理交换机配置信息
switch1#copy running-config startup-config // 将当前运行的参数保存到启动文件中
switch1#write //将当前配置信息保存到flash中用于系统初始化switch1#delete flash:config-text // 永久删除 flash 中的配置文件
- 路由器工作模式
1.路由器配置模式
Router> // 普通用户模式
Router >enable //进入特权用户模式
Router # // 特权用户模式
Router #configure terminal //进入全局配置模式
Router (config)# // 全局配置模式
Router (config)#interface f0/1 //进入接口配置模式
Router (config-if)# // 接口配置模式
Router (config-if)#exit //返回上一级模式
Router (config)#
Router (config)#exit // 返回上一级模式
Router #
Router #disable // 退出特权模式
Router >
Router >enable
Router# configure terminal
Router (config)#interface f0/1
Router (config-if)#end // 直接返回特权模式
2.修改路由器主机名
Router (config)#hostname Router0 //修改路由器名字为“Router0"
3.设置路由器端口
Router0(confie)#interface fastEthernet 0/1
Router0(config-if)#speed 100 //配置端口速率为100Mbps
Router0(config-if)# ip address 192.168.1.1 255.255.255.0 //配置接口IP 地址为 192.168.1.1/24
Router0 (contig-if)#no shutdown //开启端口
Router0 (config-if)#exit
Router0 (config)#
4.管理路由器配置信息
Router0#copy running-config startup-config //从将当前运行的参数保在到启动文件中
Router0#write //将当前配置信息保存到flash中用于系统初始化Router0#delete flash:config-text // 永久删除flash中的配置文件
Router#show running-config
版权归原作者 qq_46244264 所有, 如有侵权,请联系我们删除。