简单配置命令:
用户模式:>en
特权模式:#conf t
全局配置模式:(config)#
子模式:(config-if )#接口子模式
(config-line)#
(config-router)# 路由子模式
a.命名:
#configure terminal
(config)#hostname 要定义的名字
b.关闭解析:
(config)# no ip domain-lookup
c.设置光标跟随及超时:
(config)#line console 0
(config-line)#logging synchronous
(config-line)#exec-timeout 分钟 秒
(config-line)#exec-timeout 0 这个表示永不超时!
d.设置密码:
(config)# enable password 明文
(config)# enable secret 密文
(config)#line console 0
(config-line)#password 口令
(config)#login 表启用检查
e.设置时钟
#clock set 时:分:秒 月:日:年 (一定要打全了)
f.登录显示信息:
(config)#banner motd #信息# *注首末的第一个字符相同,中间的是输入的信息
g.接口描述信息
(config)#interface fastethernet 0/0
(config-if)#description 所要对这个接口的描述信息。
转载于:https://blog.51cto.com/lianghongpan/56088