0

我正在尝试为在 Azure VM (Linux) 上创建的 FTP 服务器设置主目录,我尝试了很多方法来获取谷歌的帮助,但它会抛出错误说

  1. 如果我在修改 /etc/vsftpd.conf 文件时在 local_root 中添加 $USER

ftp> mkdir blob 550 创建目录操作失败。

  1. 如果我不使用 $USER

500 OOPS:无法更改目录:/home/ftp

  1. 我在/etc/vsftpd.conf文件中设置了以下配置
    listen=NO
    
    listen_ipv6=YES
    
    anonymous_enable=NO
    
    local_enable=YES
    
    write_enable=YES
    
    anon_upload_enable=YES
    
    anon_mkdir_write_enable=YES
    
    dirmessage_enable=YES
    
    use_localtime=YES
    
    xferlog_enable=YES
    
    connect_from_port_20=YES
    
    chroot_local_user=YES
    
    user_sub_token=$USER
    
    local_root=/home/$USER/ftp
    
    allow_writeable_chroot=YES
    
    pasv_enable=YES
    
    pasv_min_port=10000
    
    pasv_max_port=10010
    
    chroot_list_file=/etc/vsftpd.chroot_list
    
    secure_chroot_dir=/var/run/vsftpd/empty
    
    pam_service_name=vsftpd
    
    rsa_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
    
    rsa_private_key_file=/etc/ssl/private/ssl-cert-snakeoil.key
    
    ssl_enable=NO

请在为 FTP 服务器 (Azure VM) 设置主目录时帮助解决此问题。

4

1 回答 1

0

我得到了我的答案。我们有两种方法可以解决这个问题。

  1. ftpClient.DataConnectionType = FtpDataConnectionType.AutoActive ; 虽然效果很好,但不建议这样做。
  2. ftpClient.DataConnectionType = FtpDataConnectionType.AutoPassive ; 如果是 Azure VM,建议这样做。为了解决这个问题,我们需要通过 cmd 在 AZURE VM 中启用 pasv_enable=true,还必须通过 Portal 在 Azure VM 中启用端口范围。

pasv_enable=Yes <br>
pasv_max_port=10010<br>
pasv_min_port=10000

这是我在 Microsoft 链接上找到的解释-

多区域部署可以使用主动-主动或主动-被动配置。主动-主动配置将请求分发到多个活动区域。主动-被动配置在次要区域中保持温暖的实例,但除非主要区域发生故障,否则不会在那里发送流量。更多解释请参考链接Azure VM Active Passive

因为它使 azure 配置模式导致所有流量处于开放模式

如果有的话,请提出更好的方法。

于 2020-10-26T14:26:09.103 回答