> 用户模式
>enable 从用户模式进入到特权模式
# 特权模式
#configure terminal 从特权模式进入到全局配置模式
(config)# 全局配置模式
(config)#hostname aaa 配置主机名
(config)#banner motd # welcome to yinhe # 配置广告语
(config)#interface fastethernet serial 1/2 从全局配置模式进入到接口配置模式
(config-if)# 接口配置模式
(config-if)#description connect to ISP 对接口的描述
(config-if)#exit 从接口配置模式退出到全局配置模式
(config)#enable secret cisco 配置特权密码(密文)
(config)#enable password cisco1 配置特权密码(明文)
(config)#line console 0 从全局配置模式进入到控制台线路配置模式
(config-line)# 控制台线路配置模式
(config-line)#login 开启登陆时密码审查
(config-line)#password cisco 密码为cisco
(config-line)#logging synchronous 日志信息同步
(config-line)#exec-timeout 0 0 控制台会话永不超时
(config-line)#exit 从控制台线路配置模式退出到全局配置模式
(config)#line vty 0 15 从全局配置模式进入到vty线路配置模式
(config-line)#login 开启登陆时密码审查
(config-line)#password 123 密码为123
(config-line)#logging synchronous 日志信息同步
(config-line)#exec-timeout 0 0 VTY线路会话永不超时
(config-line)#exit 从VTY线路配置模式退出到全局配置模式
(config)#interface fastethernet 0/0 从全局配置模式进入到快速以太口配置模式
(config-if)#ip address 192.168.101.1 255.255.255.0 给接口配置IP地址及子网掩码
(config-if)#no shutdown 激活
(config-if)#exit 退出到全局配置模式
(config)#interface serial 1/1 进入到串口配置模式
(config-if)#ip address 10.10.10.1 255.255.255.0 给接口配置IP地址及子网掩码
(config-if)#clock rate 64000 给接口配置时钟频率
(config-if)#no shutdown 激活
(config-if)#exit 退出到全局配置模式
(config)#exit 退出到特权模式
#
#show running-config 查看运行配置文件
#show startup-config 查看启动配置文件
#copy running-config startup-config 将运行配置文件保存为启动配置文件
#show startup-config
#show version 查看版本信息
#show flash: 查看flash中的信息
#show ip interface brief 查看所有接口的摘要信息
#show interface serial 1/1 查看串口1/1的详细信息
#show cdp neighbors 查看邻居
#show controller serial 1/1 查看串口1/1是否为DCE端
#copy startup-config tftp 将启动配置文件备份到tftp服务器上
#copy running-config tftp 将运行配置文件备份到tftp服务器上
#copy flash: tftp 将IOS文件备份到tftp服务器上
#copy startup-config running-config 将启动配置文件调入到内存中参与运行
#copy tftp startup-config 从tftp服务器上恢复启动配置文件
#copy tftp running-config 从tftp服务器上恢复运行配置文件
#copy tftp flash: 从tftp服务器上恢复或升级IOS文件 |