LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 09-10-2005, 06:25 AM   #1
juanb
Member
 
Registered: May 2002
Posts: 401

Rep: Reputation: 30
problem configuring vsftp server


HI,

I installed on my fedora vsftpd server, I configure it but I am getting en error whan I try to access this server remotly or localy:

[root@juan root]# ftp localhost
Connected to localhost (127.0.0.1).
421 Service not available.
I see with netstat -tulp that the server is listening:
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 *:9098 *:* LISTEN 1491/xinetd
tcp 0 0 *:ftp *:* LISTEN 1501/vsftpd
tcp 0 0 *:ssh *:* LISTEN 1475/sshd


the configuration of vsftpd.conf is:
Example config file /etc/vsftpd/vsftpd.conf
#
# The default compiled in settings are fairly paranoid. This sample file
# loosens things up a bit, to make the ftp daemon more usable.
# Please see vsftpd.conf.5 for all compiled in defaults.
#
# READ THIS: This example file is NOT an exhaustive list of vsftpd options.
# Please read the vsftpd.conf.5 manual page to get a full idea of vsftpd's
# capabilities.
#
# Allow anonymous FTP? (Beware - allowed by default if you comment this out).
anonymous_enable=NO
#
# Uncomment this to allow local users to log in.
local_enable=YES
#
# Uncomment this to enable any form of FTP write command.
write_enable=YES
#
# Default umask for local users is 077. You may wish to change this to 022,
# if your users expect that (022 is used by most other ftpd's)
local_umask=022
# Uncomment this to allow the anonymous FTP user to upload files. This only
# has an effect if the above global write enable is activated. Also, you will
# obviously need to create a directory writable by the FTP user.
anon_upload_enable=NO
#
# Uncomment this if you want the anonymous FTP user to be able to create
# new directories.
#anon_mkdir_write_enable=YES
#
# Activate directory messages - messages given to remote users when they
# go into a certain directory.
dirmessage_enable=YES
#
# Activate logging of uploads/downloads.
xferlog_enable=YES
#
# Make sure PORT transfer connections originate from port 20 (ftp-data).
connect_from_port_20=YES
#
# If you want, you can arrange for uploaded anonymous files to be owned by
# a different user. Note! Using "root" for uploaded files is not
# recommended!
#chown_uploads=YES
#chown_username=whoever
#
# You may override where the log file goes if you like. The default is shown
# below.
#xferlog_file=/var/log/vsftpd.log
#
# If you want, you can have your log file in standard ftpd xferlog format
xferlog_std_format=YES
#
# You may change the default value for timing out an idle session.
#idle_session_timeout=600
#
# You may change the default value for timing out a data connection.
#data_connection_timeout=120
#
# It is recommended that you define on your system a unique user which the
# ftp server can use as a totally isolated and unprivileged user.
#nopriv_user=ftpsecure
#
# Enable this and the server will recognise asynchronous ABOR requests. Not
# recommended for security (the code is non-trivial). Not enabling it,
# however, may confuse older FTP clients.
#async_abor_enable=YES
#
# By default the server will pretend to allow ASCII mode but in fact ignore
# the request. Turn on the below options to have the server actually do ASCII
# mangling on files when in ASCII mode.
# Beware that turning on ascii_download_enable enables malicious remote parties
# to consume your I/O resources, by issuing the command "SIZE /big/file" in
# ASCII mode.
# These ASCII options are split into upload and download because you may wish
# to enable ASCII uploads (to prevent uploaded scripts etc. from breaking),
# without the DoS risk of SIZE and ASCII downloads. ASCII mangling should be
# on the client anyway..
#ascii_upload_enable=YES
#ascii_download_enable=YES
#
# You may fully customise the login banner string:
#ftpd_banner=Welcome to Juan's FTP Creazy Server in menorial of Sancho !
#
# You may specify a file of disallowed anonymous e-mail addresses. Apparently
# useful for combatting certain DoS attacks.
#deny_email_enable=YES
# (default follows)
#banned_email_file=/etc/vsftpd.banned_emails
# You may specify an explicit list of local users to chroot() to their home
# directory. If chroot_local_user is YES, then this list becomes a list of
# users to NOT chroot().
#chroot_list_enable=YES
# (default follows)
#chroot_list_file=/etc/vsftpd.chroot_list
#
# You may activate the "-R" option to the builtin ls. This is disabled by
# default to avoid remote users being able to cause excessive I/O on large
# sites. However, some broken FTP clients such as "ncftp" and "mirror" assume
# the presence of the "-R" option, so there is a strong case for enabling it.
#ls_recurse_enable=YES

pam_service_name=vsftpd
userlist_enable=YES
#enable for standalone mode
listen=YES
tcp_wrappers=YES

Please help !!

thanks,

Juan
 
Old 09-10-2005, 02:13 PM   #2
twantrd
Senior Member
 
Registered: Nov 2002
Location: CA
Distribution: redhat 7.3
Posts: 1,440

Rep: Reputation: 52
421 means that the remote connection is closed. There is something wrong in your config that's why.

Comment out "tcp_wrappers=YES" and restart the service and see if that fixed it. If it didn't, let us know and we'll help you debug this problem further.

-twantrd
 
Old 09-11-2005, 02:33 PM   #3
juanb
Member
 
Registered: May 2002
Posts: 401

Original Poster
Rep: Reputation: 30
how to create users and give rights?

thanks
It worked !

how I create usera and userb and give them full rights to /ftp folder and all the sub folders ?

thanks very much !

Juan
 
Old 09-12-2005, 01:09 AM   #4
twantrd
Senior Member
 
Registered: Nov 2002
Location: CA
Distribution: redhat 7.3
Posts: 1,440

Rep: Reputation: 52
Cool it works .

Quote:
how I create usera and userb and give them full rights to /ftp folder and all the sub folders ?
Just create regular unix accounts for usera and userb on the box and put them in a group that has read,write,exec permissions for /ftp folder. You don't create ftp accounts under vsftpd, it just reads the usernames off of /etc/passwd.

-twantrd
 
Old 09-12-2005, 02:05 AM   #5
juanb
Member
 
Registered: May 2002
Posts: 401

Original Poster
Rep: Reputation: 30
can u please....

Hi,

If it is not yo much to ask can u please show the exact commands? in mew to linux.


thanks very much. !

also do you think that by disabling the wrraoer option in th .conf file the server is less secured?

Juan
 
Old 09-12-2005, 06:12 PM   #6
twantrd
Senior Member
 
Registered: Nov 2002
Location: CA
Distribution: redhat 7.3
Posts: 1,440

Rep: Reputation: 52
Quote:
If it is not yo much to ask can u please show the exact commands? in mew to linux.
The commands are:

1. useradd -d /ftp usera
1a. passwd usera
2. vi /etc/group
3. chgrp foo /ftp
4. chmod 775 /ftp

That's pretty much it. I use 'vi' as my editor but you can use whatever you want (pico, nano, emacs, etc..). If you look at /etc/group, you'll see how the syntax for groups is layed out. In this example, I made a group called 'foo' and changed the groups for /ftp to have group 'foo' and made read/write/exec permissions on that.

Google on how user permissions and groups are in unix and you will get a much better understanding of how it works than me telling you .

Quote:
also do you think that by disabling the wrraoer option in th .conf file the server is less secured?
You can increase security on your box with tcpwrappers but you need to setup your vsftpd a bit differently for it to work. If you secure your box very well and chroot() your ftp users, you should be fine.

-twantrd
 
Old 09-13-2005, 12:25 PM   #7
juanb
Member
 
Registered: May 2002
Posts: 401

Original Poster
Rep: Reputation: 30
strange problem

Hi,


I notice that when connectiong to the ftp server I
configured from windows command line usung the command
ftp 192.168.1.10 everything is fine but whan trying to
connect from the same windows machine with an ftp
client as cute ftp pro 2.0 I can't connect !

This is the error messasge is see on the cute ftp:

*** CuteFTP Pro 2.0 - build Nov 20 2001 ***

STATUS:> Getting listing ""...
STATUS:> Connecting to ftp server 192.168.1.10:21 (ip = 192.168.1.10)...
STATUS:> Socket connected. Waiting for welcome message...
220 Welcome to Juan's FTP Creazy Server !
STATUS:> Connected. Authenticating...
COMMAND:> USER juanb
331 Please specify the password.
COMMAND:> PASS *****
230 Login successful.
STATUS:> Login successful.
COMMAND:> PWD
257 "/home/juanb"
STATUS:> Home directory: /home/juanb
COMMAND:> FEAT
211-Features:
MDTM
REST STREAM
SIZE
211 End
STATUS:> This site supports features.
STATUS:> This site supports SIZE.
STATUS:> This site can resume broken downloads.
COMMAND:> TYPE A
200 Switching to ASCII mode.
COMMAND:> REST 0
350 Restart position accepted (0).
COMMAND:> PASV
227 Entering Passive Mode (192,168,1,10,37,222)
COMMAND:> LIST
STATUS:> Connecting ftp data socket 192.168.1.10:9694...
ERROR:> Can't connect to remote server. Socket error = #10065.
ERROR:> Failed to establish data socket.

Also what is the command to download throw ftp whole folders? is it possible?

Thanks very much !!
Juan
 
Old 09-14-2005, 12:27 AM   #8
twantrd
Senior Member
 
Registered: Nov 2002
Location: CA
Distribution: redhat 7.3
Posts: 1,440

Rep: Reputation: 52
hmm...weird. It could be a setting in your cute ftp? I have no idea. You might want to take a look on google on that error code and see what others have to say about it.

-twantrd
 
Old 09-14-2005, 03:37 AM   #9
juanb
Member
 
Registered: May 2002
Posts: 401

Original Poster
Rep: Reputation: 30
Unhappy okey.. some other issue ...

I created the users and they logged in to /home/juanb which is the folder I want tham to be in but the thing is that the users can cd... and even get to / . what can I do to stop this?

tahnks !

Juan.
 
Old 09-14-2005, 09:45 PM   #10
twantrd
Senior Member
 
Registered: Nov 2002
Location: CA
Distribution: redhat 7.3
Posts: 1,440

Rep: Reputation: 52
Like I said in my previous post:

Quote:
If you secure your box very well and chroot() your ftp users, you should be fine.

-twantrd
-twantrd
 
Old 09-25-2005, 07:08 AM   #11
juanb
Member
 
Registered: May 2002
Posts: 401

Original Poster
Rep: Reputation: 30
how can I create one user let say max that he will be able just to download files but not delete any file?

thanks very much !

Juan
 
Old 09-26-2005, 11:01 PM   #12
twantrd
Senior Member
 
Registered: Nov 2002
Location: CA
Distribution: redhat 7.3
Posts: 1,440

Rep: Reputation: 52
Read up on unix permissions....that's how.

-twantrd
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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



Similar Threads
Thread Thread Starter Forum Replies Last Post
Problem Configuring NIS Server in RHEL 4 deepclutch Linux - Networking 9 09-22-2005 09:07 PM
Facing problem while configuring OpenLDAP server shanu Linux - Software 1 03-13-2005 04:51 PM
problem configuring email server unhappyStar Linux - Networking 5 07-02-2004 08:04 PM
problem in configuring apache server halovivek Linux - Newbie 1 04-30-2004 03:53 PM
problems setting up apache and vsftp server behind a router that serves as a server xone Linux - Security 1 04-08-2004 10:46 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 02:47 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration