实验设备

一台路由器,一台PC,配置线一条。

实验要求

  • 更改路由器名称为RA
  • 设置password为cisco1,secret为cisco2,vty为cisco3,并要求所有密码都加密。
  • 关闭域名查找,命令输入同步。
  • 配置以太网口的IP为xxx.xxx.xxx.xxx
  • 设置登陆提示信息
  • 对串行口进行描述(描述信息为:welcome to lixin lab)
  • 将上述信息保存到tftp server
  • 将实验过程配置写在记事本中进行粘贴。
  • 配置VTY访问权限。
  • 禁止路由器进行域名解析。

img

实验步骤

1
2
3
4
5
6
7
8
9
Router>enable

Router#configure terminal

Router(config)#hostname RA 设置路由器名

RA(config)#enable password cisco1 设置密码

RA(config)#enable secret cisco2 设置加密密码
1
2
3
4
5
6
7
8
9
10
11
12
13
RA (config)#no ip domain-lookup      

关闭域名查找(当我们打错命令时,不会去查找DNS,造成延时)

RA (config)#line console 0

RA (config-line)#logging synchronous

命令输入达到同步(信息提示不会打断你的输入)

RA (config-line)#exec-timeout 0 0 设置永久不超时

RA (config-line)#exit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
RA(config)#line vty 0 4

RA(config-line)#(enable)password cisco3 设置vty密码

RA(config-line)#exit

RA(config)#service password-encryption 对密码加密

RA(config)#int fastEthernet 0/0

RA(config-if)#ip address 202.119.249.1 255.255.255.0 对以太网口fa0/0配置IP

RA(config-if)#no shutdown 开启端口

RA(config-if)#exit

RA(config)#banner motd & welcome welcome to ccna lab!!! & 设置登陆提示信息

RA(config)#int fa0/1

RA(config-if)#description this is a fast port 描述端口信息

RA(config-if)#exit
1
RA(config)#copy running-config tftp           把信息保存到tftp

配置脚本

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Enable
conf t
Enable secret cisco
Enable password cisco1
no ip domain-lookup
service password-encryption
line console 0
Password cisco
Login
No exec-timeout
logging synchronous
line vty 0 4
Password cisco
Login
No exec-timeout
logging synchronous
end