mv sip.conf sip.conf.sampleAdded the lines:
touch sip.conf
nano sip.conf
[general]The book is a little confusing at this point, vsftpd is already installed, but I followed the directions...
[1000]
type=friend
context=phones
host=dynamic
anonymous_enable=NOwas changed in the vsftpd.conf file, then
groupadd PlcmSpIp
useradd PlcmSpIp -g PlcmSpIp -p PlcmSpIp
passwd PlcmSpIp
However,
vsftpd/vsftpd.chroot_list
doesn't seem to exist?
vsftpd is the Very Secure ftp server. When I first installed Ubuntu on this machine, I thought that I needed to install it to get the ftp server to work. Did that, but vsftpd still didn't run. Did a remove- install sequence a couple of more times to see what kind of messages flew by on the install but nothing really indicated a problem. Eventually figured out that openssl was handling the secure ftpd chores and it must somehow inhibit vsftpd from grabbing the incomming connection, even when it shows vsftpd running as a process. Here is the way to show this. Telnet in and run
ReplyDeleteps -ef|grep ftp
then start the filezilla client on your local machine and tap in to the server. Run the ps command again and you will see that the ftpd process is the openssl spawned deamon.
so the trick for you will be to figure out how to use the openssh ftp service instead of vsftpd
testing the hyperlink thing, here is a openssh link
ReplyDeletehttp://www.openssh.com/manual.html
I see it (I think); here's the results of ps before:
ReplyDeleteroot 31099 1 0 13:30 ? 00:00:00 /usr/sbin/vsftpd
root 31102 31053 0 13:31 pts/1 00:00:00 grep ftp
and after
root 31099 1 0 13:30 ? 00:00:00 /usr/sbin/vsftpd
miles 31106 31105 0 13:36 ? 00:00:00 /usr/lib/openssh/sftp-server
root 31108 31053 0 13:36 pts/1 00:00:00 grep ftp