初始配置(预配):
router(config)#hostname r1 修改设备的名称
r1(config)#no ip domain-lookup 关闭域名解析
r1(config)#line console 0 进入console口
r1(config-line)#logg sy 日志同步/光标跟随
r1(config-line)#exec-timeout 0 0 永不超时
r1(config-line)#exit 退出并保存
几种常用的模式:
Router> 用户模式 查看或者配置有限的路由交换信息
Router>enable 在用户模式敲入enable 进入特权模式(也叫enable 模式)
Router# 特权模式 查看或者删除 调试部分的命令
Router#exit 在特权模式敲入exit 退出到用户模式
Router>enable 在用户模式敲入enable 进入特权模式
Router#configure terminal 在特权模式敲入configure terminal 进入到配置模式
Router(config)# 全局模式 创建 删除 修改绝大部分的配置信息
Router(config)#interface ethernet 0/0 在配置模式敲入"interface+接口类型+接口编号”进入接口模式
Router(config-if)# 接口模式 配置命令只影响该接口 主要是用来配置ip 地址或者在接口上应用或者激活
Router(config-if)#exit 敲入exit 退出接口模式
Router#conf t
Router(config)#interface ethernet 0/0.1 进入子接口模式
Router(config-subif)# 子接口模式 物理接口划分出来的 主要用于帧中继网络 单臂路由
Router(config-subif)#end 任何时候敲入end 会退出到特权模式
Router(config)#router rip 敲入“router + 路由协议”进入router 模式
Router(config-router)#exit 退出router 模式
Router(config)#line console 0 进入线路配置模式
Router(config-line)#end 从line 模式退出(任何时候敲入end 会退出到特权模式)
密码的设置:
1.配置特权密码:
r1(config)#enable password cisco 明文密码 用户模式进入特权模式
r1(config)#enable secret ccna 密文密码 优先级高于明文密码
2.配置console口的密码
r1(config)#line console 0
r1(config-line)#password cisco 配置console 口的密码
3.配置虚拟控制台(vty)密码:
r1(config)#line vty 0 4 vty 虚拟控制台 0 4 表示线路 从0线路开始到4线路
r1(config-line)#password cisco
r1(config)#service password-encryption 给所有明文密码加密
telnet实验:实现telnet的至少三个条件:
step1
保证telnet间的设备能够相互通讯(ping)
r1(config)#int f0/0
r1(config-if)#ip address 192.168.1.2 255.255.255.0
r1(config-if)#no shut
step2
必须配置enable密码
r1(config)#enable passwoed cisco
step3
必须配置vty密码
r1(config)#line vty 0 4
r1(config)#password cisco1
r1(config-line)#login 允许本地登录(使用本地用户名和密码)
交换机删除命令
Switch#erase startup-config
Switch#delete vlan.dat
Switch#reload
一些快捷键:
?:调用帮助;
tab:补全命令;
CTRL+A:移动到句首;
CTRL+E:移动到句末;
CTRL+F:向句末移动光标,以字节为单位;(同方向键→)
ESC→F:向句末移动光标,以字段为单位,不可连按;
CTRL+B:向句首移动光标,以字节为单位;(同方向键←)
ESC→B:向句首移动光标,以字段为单位,不可连按;
Backspace:向前删除
CTRL+D:向后删除;
CTRL+U:删除整句命令;
CTRL+P:调出上一个命令并向上翻页;;(同方向键↑)
CTRL+N:调出上一个命令并向下翻页。;(同方向键↓)
CTRL+Z:从较高级别模式快速切换至特权模式;
CTRL+SHIFT+6:停止当前进行的进程;
转载于:https://blog.51cto.com/poping/1192583