vsftpd を実行している CentOS 8 サーバーに FTP または SFTP 経由で接続できない

vsftpd を実行している CentOS 8 サーバーに FTP または SFTP 経由で接続できない

私はここでvsftpのインストールガイドに従いましたhttps://www.tecmint.com/install-ftp-server-in-rhel-8/

デーモンは実行中です:

# systemctl status vsftpd
● vsftpd.service - Vsftpd ftp daemon
   Loaded: loaded (/usr/lib/systemd/system/vsftpd.service; enabled; vendor preset: disabled)
   Active: active (running) since Wed 2020-01-22 12:33:32 UTC; 5s ago
  Process: 11345 ExecStart=/usr/sbin/vsftpd /etc/vsftpd/vsftpd.conf (code=exited, status=0/SUCCESS)
 Main PID: 11346 (vsftpd)
    Tasks: 1 (limit: 26213)
   Memory: 724.0K
   CGroup: /system.slice/vsftpd.service

           └─11346 /usr/sbin/vsftpd /etc/vsftpd/vsftpd.conf

SeLinuxセキュリティブール値を有効にしてftpd_full_accessを許可しました

    # sudo getsebool -a | grep ftpd_full_access
    ftpd_full_access --> on

オフィスの VPN IP アドレスからのみアクセスできる信頼ゾーンがあり、それに関連付けられているルールとサービスは次のとおりです。

 # firewall-cmd --list-all --zone=trusted
trusted (active)
  target: ACCEPT
  icmp-block-inversion: no
  interfaces:
  sources: <my office vpn ip address>
  services: ftp mysql ssh
  ports: 21/tcp 45073/tcp
  protocols:
  masquerade: no
  forward-ports:
  source-ports:
  icmp-blocks:
  rich rules:

私の /etc/vsftpd/vsftpd.conf の設定は次のようになります:

anonymous_enable=NO
local_enable=YES
write_enable=YES
local_umask=022
dirmessage_enable=YES
xferlog_enable=YES
connect_from_port_20=YES
xferlog_std_format=YES
chroot_local_user=YES
listen=YES
listen_ipv6=NO

pam_service_name=vsftpd
userlist_enable=YES
tcp_wrappers=YES
lock_upload_files=YES

しかし、VPN IP アドレスを使用しているデスクトップ マシン上の Filezilla からは接続できません。

Status: Connecting to nn.nn.nn.nn... 
Response: fzSftp started, protocol_version=9 
Command: open "[email protected]" 22 
Command: Pass: ************ 
Status: Connected to nn.nn.nn.nn 
Error: Connection timed out after 20 seconds of inactivity 
Error: Could not connect to server

同じサーバーに接続して SSH セッションを取得できます。

何かが足りないに違いないのですが、何が足りないのかわかりません。誰か助けてくれませんか?

関連情報