»
 

Go Back   ResellerRatings Store Ratings > ResellerRatings Forums > Tech Support

Reply
 
LinkBack Thread Tools Display Modes
Old 10-05-2003, 12:42 AM   #1 (permalink)
Registered User
 
CMonster's Avatar
 
Join Date: Oct 2001
Location: Sunny, smogy Southern California
Posts: 5,350
CMonster is on a distinguished road
vsftpd -a great FTP server for Linux/Unix

vsftpd
"probably the most secure and fastest FTP server for UNIX-like systems" and it sure lives up to this claim.

Install and configuration on SuSE 8.2 and Redhat 9 Linux systems took me a whole of about 5 -10 minutes. I would recommend anyone interested in running a serious FTP server to give it a try.

CMonster is offline   Reply With Quote
Old 10-05-2003, 01:06 AM   #2 (permalink)
Registered User
 
Join Date: Feb 2002
Location: midvale, utah
Posts: 1,296
Jeordiewhite is on a distinguished road
Send a message via ICQ to Jeordiewhite Send a message via AIM to Jeordiewhite Send a message via Yahoo to Jeordiewhite
That does sound very good, I've got one setup which is ws-ftp pro 4, It will be good to have a back up handy or another ftp running.
I'll have to give it a try.
Jeordiewhite is offline   Reply With Quote
Old 10-05-2003, 09:13 AM   #3 (permalink)
Registered User
 
CMonster's Avatar
 
Join Date: Oct 2001
Location: Sunny, smogy Southern California
Posts: 5,350
CMonster is on a distinguished road
I found a nice example for a behind router setup:

Quote:
Router set-up:
Forward port 21 TCP on UPnP Forwarding page
Forward ports 65000~65534 TCP on Port Range Forwarding Page (any range, it's up to you)

vsftpd.conf set-up:
pasv_enable=YES
pasv_min_port=65000 (same range as on router)
pasv_max_port=65534
pasv_address=100.100.100.100 (here comes your WAN IP)
...all other variables are set to default values

And since I have dynamic WAN IP from my ISP here's a little script running from cron to update vsftpd.conf with current IP (I use free dynamic DNS service www.dynu.com )

code:

#!/bin/sh
#vsftpd.conf IP update by Beaujolais
vsftpd_conf=/etc/vsftpd.conf
vsftpd_log=/var/log/vsftpd.log
#change to your domain name in next line
my_ip=`host your_host.dynu.com | cut -f4 -d" "`
vsftpd_ip=`grep pasv_address $vsftpd_conf | cut -f2 -d=`

if [ "$my_ip" != "$vsftpd_ip" ] ; then
( echo ",s/$vsftpd_ip/$my_ip/g" && echo w ) | ed - $vsftpd_conf
echo `date` "$vsftpd_conf updated with $my_ip IP address" >> $vsftpd_log
fi
http://www.broadbandreports.com/foru...p,16~mode=flat
CMonster is offline   Reply With Quote
Old 10-05-2003, 11:43 AM   #4 (permalink)
Registered User
 
SpookyEddy's Avatar
 
Join Date: Oct 2001
Location: UK
Posts: 3,125
SpookyEddy is on a distinguished road
I run vsftpd on one of my debian file servers, works really well and setup is about as simple as it gets.

Regards

ed
SpookyEddy is offline   Reply With Quote
Old 10-05-2003, 04:18 PM   #5 (permalink)
Registered User
 
willy_ph's Avatar
 
Join Date: Oct 2001
Location: Trent University
Posts: 1,864
willy_ph is on a distinguished road
I have to agree that vsftpd is very simple to setup. I have it installed running on RH9 and it worked right from the get-go.
willy_ph is offline   Reply With Quote
Reply




Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Most Active Discussions

Recent Discussions

All times are GMT -6. The time now is 02:39 AM.