FTP 포트 변경 방법 1. vsftp 패키지 설치 #yum install vsftpd 2. 원본 파일 백업 # cp /etc/vsftpd/vsftpd.conf /etc/vsftpd/vsftpd.conf.orig >>> 기존 설정 백업 # netstat -nltp | grep -i ftp >>> 현재 설정되어 있는 listen_port 확인 tcp6 0 0 :::21 :::* LISTEN 13141/vsftpd 3. 포트변경 # vi /etc/vsftpd/vsftpd.conf …………… # listen_port change from 21 to 5800 listen_port=5800 >>> listen_port 변경 ex.)5800 변경 …………… (7버전) # systemctl restart vsftpd..