前言:
现时看官们对“ftp怎么添加登录账号”都比较注意,兄弟们都想要知道一些“ftp怎么添加登录账号”的相关资讯。那么小编在网摘上收集了一些对于“ftp怎么添加登录账号””的相关内容,希望看官们能喜欢,小伙伴们快快来了解一下吧!用户通过FTP访问设备
1.开启FTP服务器端功能
[Huawei]ftp [ipv6 ]server enable
缺省情况下,设备的FTP服务器端功能是关闭的。
2.配置FTP本地用户
[Huawei]aaa
[Huawei]local-user user-name password irreversible-cipher password
[Huawei]local-user user-name privilege level level
[Huawei]local-user user-name service-type ftp
[Huawei]local-user user-name ftp-directory directory
必须将用户级别配置在3级或者3级以上,否则FTP连接将无法成功。
3. VRP作为FTP客户端的常用命令
ascii Set the file transfer type to ASCII, and it is the default type
binary Set the file transfer type to support the binary image
ls List the contents of the current or remote directory
passive Set the toggle passive mode, the default is on
get Download the remote file to the local host
put Upload a local file to the remote host
案例:FTP基本配置命令
两台路由器,一台作为FTP服务器端,一台作为FTP客户端。首先通过配置,在FTP服务器端上开启FTP服务,创建一个账号作为FTP登录使用账号。然后FTP客户端登录FTP服务器端并使用get命令下载一个文件。
FTP服务器端配置如下:
system-view
sysname AR2 FTP_Server
ftp server enable
aaa
local-user admin password cipher admin
local-user admin privilege level 15
local-user admin service-type ftp
local-user admin ftp-directory flash:
quit
interface GigabitEthernet 0/0/0
ip address 192.168.1.2 24
FTP客户端操作示例:
system-view
sysname AR1 FTP_Client
interface GigabitEthernet 0/0/0
ip address 192.168.1.1 24
quit
quit
ftp 192.168.1.2
admin
admin
get FTP_Server.zip
标签: #ftp怎么添加登录账号