- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: problem wid "vsftpd service"
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2006 11:31 AM
08-31-2006 11:31 AM
problem wid "vsftpd service"
i have started ftp services in fc3 by
PROMPT$ service vsftpd start
it has succesfully started. i have kept some files in /var/ftp.
i am able to open my own ftp as normal user by typing
ftp://
in browser(mozilla)
but when i tries from other systems...error is comming stating that folder is not found..
and they r unable to open my ftp share.
where we need to keep all the files.
and what modifications i need to do..
i allowed anonymously logging in
thanQ
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2006 11:29 PM
08-31-2006 11:29 PM
Re: problem wid "vsftpd service"
Put the files under /var/ftp/pub
make sure that files are world readable.
Cheers
Vipul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-01-2006 12:48 AM
09-01-2006 12:48 AM
Re: problem wid "vsftpd service"
If you are using iptables firewall, you may need to use connection tracking to get the ftp traffic through the firewall. Make sure ports 20-21 are open on tcp and udp.
And:
modprobe ip_conntrack_ftp
That may solve your problem.
I won't check back because I'm going to take the RHCE in a few minutes.
Just for grins, this may be needed on your firewall. Also, vsfptd.conf file may be default which enables anonymous.
iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-01-2006 04:25 AM
09-01-2006 04:25 AM
Re: problem wid "vsftpd service"
how to open ports 21 and 22 in fc3.
(1)modprobe ip_conntrack_ftp
(2)iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
what these things will do??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-01-2006 04:45 AM
09-01-2006 04:45 AM
Re: problem wid "vsftpd service"
2. If packets comping to your box are related to your outgoing request- they will be allowed.
add 2 more rules:
iptables -A INPUT -p tcp --dport 21 -j ACCEPT
iptables -A INPUT -p tcp --dport 20 -j ACCEPT
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2006 07:56 PM
09-02-2006 07:56 PM
Re: problem wid "vsftpd service"
we need one morething
xinetd..
bcz vsftpd is controlled by xinetd service.
and v need to create a file named "vsftpd" in /etc/xinetd.d/
$vi /etc/xinetd.d/vsftpd
edit and include the following in that
service ftp
{
disable = no
socket_type = stream
wait = no
user = root
server = /usr/sbin/vsftpd
nice = 10
}
then restart "xinetd" service as follows
$service xinetd restart
then restart vsftpd as
$service vsftpd restart
and now put those files u want to fut in ftp in /var/ftp/
and enjooooooooy ftp service
byeeeee
vnykr
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-04-2006 02:23 AM
09-04-2006 02:23 AM
Re: problem wid "vsftpd service"
>we need one morething
>xinetd..
>bcz vsftpd is controlled by xinetd service.
Even when this afirmation is right, is not the only way to run the service. The vsftpd service can be run wihtout the xinetd superdaemon as standalone service. The configuration file indicates how it will be executed (listen=YES).
If you will run as an independent service, it will have a rc script in /etc/rc.d/init.d.