FTP를 사용할 때 호스트가 연결을 거부합니다.

FTP를 사용할 때 호스트가 연결을 거부합니다.

FTP를 사용하여 서버에 연결해야 하는데 연결이 거부됩니다. 나는 잘 작동하는 SFTP(로컬 및 외부)를 사용해 왔습니다. 리눅스 데비안을 사용하세요. FTP를 사용하여 로컬로 로그인할 수 있지만 외부 액세스 권한이 필요합니다.

필요한 포트를 모두 열고(적어도 포트 20-23인 것 같습니다) 다른 소프트웨어를 시도하고 다시 설치했지만 아무 것도 작동하지 않는 것 같습니다. 또한 몇 가지 다른 구성을 시도하고 ssh. 외부 액세스를 방지하기 위해 무언가를 구성했는지 또는 그것이 무엇인지 모르겠습니다. 저는 Linux 환경을 처음 접했습니다. 포트 자체는 열려 있어야 하며(isp에 의해 차단되지 않음) ipv6이 이를 수신하는 것으로 나타납니다.

수백 개의 포럼 게시물을 살펴보고 인터넷 검색에 오랜 시간을 보냈지만 실제로는 아무 것도 찾을 수 없습니다. 어쩌면 나는 무엇을 찾아야할지조차 모릅니다.여기vsftpd.conf내 파일 의 복사본입니다 .

# Example config file /etc/vsftpd.conf
#
# The default compiled in settings are fairly paranoid. This sample file
# loosens things up a bit, to make the ftp daemon more usable.
# Please see vsftpd.conf.5 for all compiled in defaults.
#
# READ THIS: This example file is NOT an exhaustive list of vsftpd options.
# Please read the vsftpd.conf.5 manual page to get a full idea of vsftpd's
# capabilities.
#
#
# Run standalone?  vsftpd can run either from an inetd or as a standalone
# daemon started from an initscript.
listen=YES
#
# This directive enables listening on IPv6 sockets. By default, listening
# on the IPv6 "any" address (::) will accept connections from both IPv6
# and IPv4 clients. It is not necessary to listen on *both* IPv4 and IPv6
# sockets. If you want that (perhaps because you want to listen on specific
# addresses) then you must run two copies of vsftpd with two configuration
# files.
listen_ipv6=YES
#
# Allow anonymous FTP? (Disabled by default).
anonymous_enable=NO
#
# Uncomment this to allow local users to log in.
local_enable=YES
#
# Uncomment this to enable any form of FTP write command.
write_enable=YES
#
# Default umask for local users is 077. You may wish to change this to 022,
# if your users expect that (022 is used by most other ftpd's)
local_umask=022
#
# Uncomment this to allow the anonymous FTP user to upload files. This only
# has an effect if the above global write enable is activated. Also, you will
# obviously need to create a directory writable by the FTP user.
#anon_upload_enable=YES
#
# Uncomment this if you want the anonymous FTP user to be able to create
# new directories.
#anon_mkdir_write_enable=YES
#
# Activate directory messages - messages given to remote users when they
# go into a certain directory.
dirmessage_enable=YES
#
# If enabled, vsftpd will display directory listings with the time
# in  your  local  time  zone.  The default is to display GMT. The
# times returned by the MDTM FTP command are also affected by this
# option.
use_localtime=YES
#
# Activate logging of uploads/downloads.
xferlog_enable=YES
#
# Make sure PORT transfer connections originate from port 20 (ftp-data).
connect_from_port_20=YES
#
# If you want, you can arrange for uploaded anonymous files to be owned by
# a different user. Note! Using "root" for uploaded files is not
# recommended!
#chown_uploads=YES
#chown_username=whoever
#
# You may override where the log file goes if you like. The default is shown
# below.
#xferlog_file=/var/log/vsftpd.log
#
# If you want, you can have your log file in standard ftpd xferlog format.
# Note that the default log file location is /var/log/xferlog in this case.
#xferlog_std_format=YES
#
# You may change the default value for timing out an idle session.
#idle_session_timeout=600
#
# You may change the default value for timing out a data connection.
#data_connection_timeout=120
#
# It is recommended that you define on your system a unique user which the
# ftp server can use as a totally isolated and unprivileged user.
#nopriv_user=ftpsecure
#
# Enable this and the server will recognise asynchronous ABOR requests. Not
# recommended for security (the code is non-trivial). Not enabling it,
# however, may confuse older FTP clients.
#async_abor_enable=YES
#
# By default the server will pretend to allow ASCII mode but in fact ignore
# the request. Turn on the below options to have the server actually do ASCII
# mangling on files when in ASCII mode.
# Beware that on some FTP servers, ASCII support allows a denial of service
# attack (DoS) via the command "SIZE /big/file" in ASCII mode. vsftpd
# predicted this attack and has always been safe, reporting the size of the
# raw file.
# ASCII mangling is a horrible feature of the protocol.
#ascii_upload_enable=YES
#ascii_download_enable=YES
#
# You may fully customise the login banner string:
#ftpd_banner=Welcome to blah FTP service.
#
# You may specify a file of disallowed anonymous e-mail addresses. Apparently
# useful for combatting certain DoS attacks.
#deny_email_enable=YES
# (default follows)
#banned_email_file=/etc/vsftpd.banned_emails
#
# You may restrict local users to their home directories.  See the FAQ for
# the possible risks in this before using chroot_local_user or
# chroot_list_enable below.
#chroot_local_user=YES
#
# You may specify an explicit list of local users to chroot() to their home
# directory. If chroot_local_user is YES, then this list becomes a list of
# users to NOT chroot().
# (Warning! chroot'ing can be very dangerous. If using chroot, make sure that
# the user does not have write access to the top level directory within the
# chroot)
#chroot_local_user=YES
#chroot_list_enable=YES
# (default follows)
#chroot_list_file=/etc/vsftpd.chroot_list
#
# You may activate the "-R" option to the builtin ls. This is disabled by
# default to avoid remote users being able to cause excessive I/O on large
# sites. However, some broken FTP clients such as "ncftp" and "mirror" assume
# the presence of the "-R" option, so there is a strong case for enabling it.
#ls_recurse_enable=YES
#
# Customization
#
# Some of vsftpd's settings don't fit the filesystem layout by
# default.
#
# This option should be the name of a directory which is empty.  Also, the
# directory should not be writable by the ftp user. This directory is used
# as a secure chroot() jail at times vsftpd does not require filesystem
# access.
secure_chroot_dir=/var/run/vsftpd/empty
#
# This string is the name of the PAM service vsftpd will use.
pam_service_name=vsftpd
#
# This option specifies the location of the RSA certificate to use for SSL
# encrypted connections.
rsa_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
rsa_private_key_file=/etc/ssl/private/ssl-cert-snakeoil.key
ssl_enable=NO
force_local_logins_ssl=NO
force_local_data_ssl=NO
#
# Uncomment this to indicate that vsftpd use a utf8 filesystem.
#utf8_filesystem=YES

답변1

기본적으로 FTP 프로토콜에서는 데이터를 전송하기 위해 FTP 서버에서 FTP 클라이언트로의 두 번째 인바운드 연결이 필요합니다. 일반적으로 사용자에게는 공용 IPv4 주소가 없으므로 어디에서나 인바운드 연결을 수신할 수 없거나 클라이언트 호스트가 보안을 위해 인바운드 연결을 수락할 수 없습니다. 동일한 상황에서 FTP 프로토콜은 수동 모드를 사용할 수도 있습니다. 이 수동 모드는 FTP 클라이언트에서 FTP 서버로의 두 번째 아웃바운드 연결을 사용합니다.

1단계. 활성화해 보세요.패시브 모드FTP 클라이언트에서 FTP 클라이언트의 FTP 서버로의 데이터 아웃바운드 연결을 사용합니다.

모든 웹 브라우저는 항상 수동 모드를 사용합니다.

많은 FTP 클라이언트는 기본적으로 수동 모드를 사용하지 않으므로 이 모드를 활성화해야 합니다.

예를 들어 클래식 FTP 클라이언트에는 수동 모드를 활성화하는 옵션이 ftp있습니다 .-p

2단계. 서버에서 수동 모드를 활성화하세요. vsftpd 서버 구성에 수동 모드 옵션을 추가해야 합니다:

pasv_min_port=10000
pasv_max_port=11000
pasv_promiscuous=NO
pasv_address=111.122.133.144

값을 변경해 주세요 pasv_address. 나는 같은 목적으로 이러한 옵션을 사용했습니다.

원하는 경우 TCP 포트 간격을 변경할 수 있습니다. FTP 서버와 FTP 클라이언트는 핸드셰이크 중에 협상합니다.

3단계. FTP 서버 방화벽에서 TCP 포트 10000-11000에 대한 수신 연결을 허용하십시오.

알아채다. 공용 네트워크에서 FTP 프로토콜을 사용하는 것은 안전하지 않습니다. 사용자의 비밀번호는 일반 텍스트로 전송되며 이 데이터는 캡처될 수 있습니다. FTP 프로토콜은 읽기 전용 모드에서 파일에 대한 공개 액세스에 여전히 작동합니다. FTP 프로토콜을 보호하려면 VPN을 사용해야 합니다.

관련 정보