cisco设备远程登陆与文件上传
本文最后更新于 2024年3月26日 晚上
文件传输
FTP:文件传输协议
TFTP:简单文件传输协议
路由器文件类型:
配置文件–运行文件和保存文件
系统文件
操作
- 拷贝配置文件
1 |
|
- 把TFTP上的配置文件信息拷贝到路由器上
1 |
|
- 拷贝系统文件
1
2
3
4
5
6//拷贝系统文件
XCNA190#show flash: //查看设备的flash文件,包含系统文件,系统备份
XCNA190#copy flash: tftp: //将flash文件拷贝到TFTP服务器上
Source filename []? c1841-advipservicesk9-mz.124-15.T1.bin //要拷贝flash上的哪一个文件
Address or name of remote host []? 192.168.10.2 //TFTP服务器的地址
Destination filename [c1841-advipservicesk9-mz.124-15.T1.bin]? //到达目标以后逇文件名称 - 系统的升级
1 |
|
- 删除系统文件
1
2
3
4//删除系统文件
XCNA190#delete flash: --删除系统文件
Delete filename []?c1841-advipservicesk9-mz.124-15.T1.bin
Delete flash:/c1841-advipservicesk9-mz.124-15.T1.bin? [confirm] - 恢复
1
2
3
4
5
6
7
8
9
10//恢复,全程区分大小写
//进入监控模式
rommon 1 > IP_ADDRESS=192.168.10.1 //地址
rommon 2 > IP_SUBNET_MASK=255.255.255.0 //掩码
rommon 3 > DEFAULT_GATEWAY=192.168.10.2 //网关,就是如何找到服务器,一般写服务器
rommon 4 > TFTP_SERVER=192.168.10.2 //如何找到TFTP所在地,写服务器
rommon 5 > TFTP_FILE=c1841-advipservicesk9-mz.124-15.T1.bin //如何找到TFTP上的文件
rommon 6 > tftpdnld //下载文件
Do you wish to continue? y/n: [n]: y
rommon 7 > reset --重启 - FTP客户端
1
2
3
4
5
6
7
8
9
10
11
12//FTP客户端
shi(config)#ip ftp username admin //配置用户名
shi(config)#ip ftp password admin //配置密码
shi(config)#exit
shi#copy flash: ftp:
Source filename []? sigdef-category.xml
Address or name of remote host []? 192.168.1.1
Destination filename [sigdef-category.xml]?
Writing sigdef-category.xml...
[OK - 28282 bytes]
28282 bytes copied in 0.204 secs (138000 bytes/sec)
登录加密
console连接加密
单密码模式
1
2
3Router(config)#line console 0
Router(config-line)#password 123
Router(config-line)#login本地用户模式(优先级大于单密码)
1
2
3Router(config)#username admin password 114514 //使用secret为密文存储
Router(config)#line console 0
Router(config-line)#login local
特权模式加密
1
2Router(config)#enable password 114514
Router(config)#enable secret 114514 //密文存储密码加密服务
1
Router(config)#service password-encryption
远程登陆
telnet
单密码模式
1
2
3
4shi(config)#line vty 0 4 //允许同时0-4连接(5台)
shi(config-line)#password 114514 //设置密码
shi(config-line)#login //启用密码
shi(config-line)#transport input telnet //设置远程模式为telnet本地用户模式
1
2
3shi(config)#line vty 0 4
shi(config-line)#login local
shi(config-line)#username admin password 114514
SSH
1
2
3
4
5
6
7
8
9
10
11
12
13
14Router(config)#hostname R1 //给路由器配置名字
R1(config)#ip domain-name baidu.com //给路由器配置域名
R1(config)#crypto key generate rsa //生成密钥
The name for the keys will be: R1.baidu.com
Choose the size of the key modulus in the range of 360 to 4096 for your
General Purpose Keys. Choosing a key modulus greater than 512 may take
a few minutes.
How many bits in the modulus [512]: 1024
% Generating 1024 bit RSA keys, keys will be non-exportable...[OK]
R1(config)#line vty 0 4
R1(config-line)#password 114514
R1(config-line)#login //配置密码
R1(config-line)#transport input ssh //设置远程模式为SSH
cisco设备远程登陆与文件上传
http://example.com/2024/03/26/cisco设备远程登陆与文件上传/