Enable FTP on your FreeBSD server and allow only your localhost (local machine) access to the ftpd server.
The inetd server should be run at boot time by /etc/rc. It then listens for connections on certain internet sockets. When a connection is found on one of its sockets, it decides what service the socket corresponds to, and invokes a program to service the request. The server program is invoked with the service socket as its standard input, output and error descriptors. After the program is finished, inetd continues to listen on the socket.
To enable FTPD Open /etc/inetd.conf file and remove the hash from:
[php]ftp stream tcp nowait root /usr/libexec/ftpd ftpd -l[/php]
Then restart inetd.conf
[php]/etc/rc.d/inetd restart
or
/etc/rc.d/inetd onerestart[/php]
Or allow only 127.0.0.1 (localhost) to connect to your ftp server:
[php]ftp stream tcp nowait root /usr/libexec/ftpd ftpd -l -D -a 127.0.0.1[/php]