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-13-2002 05:34 AM
08-13-2002 05:34 AM
ftp
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2002 05:35 AM
08-13-2002 05:35 AM
Re: ftp
It is controled in the /etc/inetd.conf file
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2002 05:40 AM
08-13-2002 05:40 AM
Re: ftp
Ftp is enabled by default. Do you have problems using it. Try to create a file (on the server) /etc/shells which contains:
/bin/sh
/bin/csh
/bin/ksh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2002 05:42 AM
08-13-2002 05:42 AM
Re: ftp
In /etc/inetd.conf, the line corresponding to ftp in not commented, but no user is able to transfer the file using ftp service. Only root is able to use this. Do you think i have to edit any other files apart from this.
In simple words I want enable ftp service to all users. Please suggest me how to do this.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2002 05:44 AM
08-13-2002 05:44 AM
Re: ftp
name all users that you DO NOT want to have ftp access.
Make sure the users are NOT listed in here.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2002 05:52 AM
08-13-2002 05:52 AM
Re: ftp
This file should state all possible login shells that are allowed for ftp users
We have all users with /usr/bin/tcsh (or equivalent), so our /etc/shells looks like
--8<---
/sbin/sh
/usr/bin/csh
/usr/bin/ksh
/usr/bin/remsh
/usr/bin/rksh
/usr/bin/rsh
/usr/bin/sh
/usr/bin/shl
/usr/bin/tcsh
/SENDMAIL/ANY/SHELL/
-->8---
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2002 05:55 AM
08-13-2002 05:55 AM
Re: ftp
ftp-data 20/tcp # File Transfer Protocol (Data)
ftp 21/tcp # File Transfer Protocol (Control)
in /etc/ftpd, check that you do not have an ftpaccess file with root as the only entry. In the same directory you may have an ftpusers file. Make sure that this is empty so that all can use ftp.
For anonymous ftp, you need an ftp guest account in /etc/passwd:
ftp:*:500:10:anonymous ftp:/home/ftp:/usr/bin/false
Hope this is of some use, happy to help.
Gordon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2002 06:02 AM
08-13-2002 06:02 AM
Re: ftp
ftp stream tcp nowait root /usr/lbin/ftpd ftpd -a -l -d
you should consider /etc/ftpd/ftpaccess file!
You can use man(4) ftpaccess to learn more about it!
-Gerald-