본문 바로가기

OS-서버/리눅스-유닉스

Ubuntu , CentOS - ftp 설치

반응형

 

Ububtu


vsftpd 설치

$ sudo apt-get install vsftpd

 

 

ftp 설정파일 - /etc/vsftpd.conf

 

#(주석)제거

write_enable=YES    ## 쓰기 권한 부여
local_umask=022

 

Service 제어

$ sudo service vsftpd start ## vsftpd 데몬 시작

$ sudo service vsftpd stop ## vsftpd 데몬 정지

$ sudo service vsftpd restart ## vsftpd 데몬 재시작

 

 

CentOS


 

▶ vsftpd 설치

# yum -y install vsftpd

 

vsftpd 설정파일 - /etc/vsftpd/vsftpd.conf


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

pam_service_name=vsftpd
userlist_enable=YES
tcp_wrappers=YES

dual_log_enable=YES
use_localtime=YES
pasv_enable=YES


 

 

▶ vsftpd 시작

# service vsftpd start

 

▶ ftp 포트 열림 확인

# netstat -lnt 또는 # netstat -anp | grep vsftpd

 

▶ SElinux OFF

# setenforce 0 

 

▶ vsftpd 자동시작

chkconfig vsftpd on

 

※ 리눅스 시스템은 부팅시에 자동으로 스크립트 실행을 통해

특정 데몬의 시작 여부를 결정할 수 있는데, 이를 간편하게 제어할 수 있도록

제공되는 명령어가 chkconfig다.


▶ vsftpd 패시브 모드 끄기

passive mode off

반응형

'OS-서버 > 리눅스-유닉스' 카테고리의 다른 글

쉘스크립트 기본 문법  (0) 2018.03.21
우분투에서 그누보드5 설치  (2) 2017.12.20
.bashrc , /etc/init.d  (0) 2017.12.12
RBAC - 롤 기반 접근제어  (0) 2017.12.06
VirtualBox 우분투 설치 후 기타 설정  (0) 2017.11.29