Difference between revisions of "FTP"

From ArmadeusWiki
Jump to: navigation, search
(New page: FTP (File Transfer Protocol) can easily be used on APF boards either to transfer some files from elsewhere (= as client) or to provide files to others (= as server). ==FTP client== <pre c...)
 
m
Line 22: Line 22:
 
* ProFTPD will be automatically launched thanks to the ''/etc/init.d/S50proftpd'' script
 
* ProFTPD will be automatically launched thanks to the ''/etc/init.d/S50proftpd'' script
 
* you can configure the server with: ''/etc/proftpd.conf''
 
* you can configure the server with: ''/etc/proftpd.conf''
 +
 +
==Links==
 +
[http://en.wikipedia.org/wiki/Ftp| wikipedia ftp article]
  
 
[[Category:Network]]
 
[[Category:Network]]

Revision as of 14:41, 15 August 2010

FTP (File Transfer Protocol) can easily be used on APF boards either to transfer some files from elsewhere (= as client) or to provide files to others (= as server).

FTP client

# ftpget
# ftpput

FTP server

Buildroot propose ProFTPD as standard FTP server. You can add it to your rootfs with:

 $ make menuconfig
[*] Networking  --->
    [*]   proftpd
 $ make make
  • then reflash your rootfs
  • ProFTPD will be automatically launched thanks to the /etc/init.d/S50proftpd script
  • you can configure the server with: /etc/proftpd.conf

Links

wikipedia ftp article