FTP server dengan ProFTPD pada Slackware

Agar tidak lupa :D
Pada Slcakware paket proFTPD sudah terinstal tinggal mengaktifkan nya saja.

1.edit file "/etc/inetd.conf" unmark bagian ini:


# Professional File Transfer Protocol (FTP) server.
ftp     stream  tcp     nowait  root    /usr/sbin/tcpd  proftpd

save dan restart.

# /etc/rc.d/rc.initd restart

2.lihat apakah ftp sudah jalan atau belum cek dengan nmap

# nmap localhost
Starting Nmap 5.00 ( http://nmap.org ) at 2010-02-03 11:07 WIT
Interesting ports on localhost (127.0.0.1):
Not shown: 983 closed ports
PORT      STATE SERVICE
21/tcp    open  ftp
22/tcp    open  ssh
25/tcp    open  smtp
37/tcp    open  time
53/tcp    open  domain
80/tcp    open  http
110/tcp   open  pop3
111/tcp   open  rpcbind
113/tcp   open  auth
139/tcp   open  netbios-ssn
389/tcp   open  ldap
445/tcp   open  microsoft-ds
631/tcp   open  ipp
901/tcp   open  samba-swat
3128/tcp  open  squid-http
6000/tcp  open  X11
10000/tcp open  snet-sensor-mgmt

Nmap done: 1 IP address (1 host up) scanned in 0.08 seconds

secara default ftp berjalan pada port 21.
3. selanjutnya edit file /etc/proftpd.conf  untuk mengatur max instance,max clients dan lain2.

4.agar bisa diakses oleh anonymous edit file "/etc/ftpusers"  dan remark user ftp dan root agar tidak bisa diakses langsung oleh root.

5.aktifkan proftpd nya
# proftpd -c /etc/proftpdconf

6. test koneksi dengan
$ ftp localhost


atau melalui webbrowser anda

ftp://ip-ftp-server

bila ingin menambahkan folder / file pada ftp server bisa anda taruh di /home/ftp/ 

Comments