标签:cisco
用户模式、特权模式、全局模式
Switch> 用户模式 enable
Switch# 特权模式 configure terminal
Switch(config)#
Switch(config)#no ip domain-lookup #关闭域名查找的功能
Switch(config-line)#logging synchronous #配置鼠标选项
Switch(config)#hostname ccna #配置主机名
ccna(config)#no hostname ccna #取消主机名
line console 0
exec-timeout 0 0 #console 口配置 exec-timeout 5 30 五分钟30s 0 0 不配置超时
回到上一层 exit
回到最初 用end
#安全 配置用户模式下用户密码登陆
全局模式:
line console 0
password 123456
login
推出保存 下次登陆有密码 这个密码是进入用户模式时候的密码
配置特权模式的密码:
全局模式下配置 enable secret 123456 #加密的密码
#配置telnet密码
Switch(config)#line vty 0 3 #最多可以有四个人登陆
Switch(config-line)#pas
Switch(config-line)#password 123456
Switch(config-line)#login
Switch(config-line)#
#############保存配置 开机启动过的配置
Switch#copy running-config startup-config
Destination filename [startup-config]?
Building configuration...
[OK]
Switch#
Switch#w #wr或者w都可以 尝试
Building configuration...
[OK]
Switch#
# 特权模式下 reload 代表重启系统
Switch#erase startup-config
Erasing the nvram filesystem will remove all configuration files! Continue? [confirm]
[OK]
Erase of nvram: complete
%SYS-7-NV_BLOCK_INIT: Initialized the geometry of nvram
Switch#
#配置交换机的管理端口
Switch(config-if)#ip address 192.168.1.1 255.255.255.0
Switch(config-if)#no shu
Switch(config-if)#no shutdown
Switch(config-if)#
%LINK-5-CHANGED: Interface Vlan1, changed state to up
Switch(config-if)#
##配置交换机的默认网关
Switch(config)#ip default-gateway 192.168.1.254
Switch(config)#
no ip domain-lookup #关闭域名查找的功能
line console 0
Switch(config-line)#logging synchronous
Switch(config-line)#exec-timeout 0 0
外加安全设置
#查看端口的状态
Switch#show ip interface brief
Interface IP-Address OK? Method Status Protocol
FastEthernet0/1 unassigned YES manual down down
FastEthernet0/2 unassigned YES manual down down
FastEthernet0/3 unassigned YES manual down down
FastEthernet0/4 unassigned YES manual down down
本文出自 “砖家博客” 博客,请务必保留此出处http://wsxxsl.blog.51cto.com/9085838/1932920
标签:cisco
原文地址:http://wsxxsl.blog.51cto.com/9085838/1932920