- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: wu-ftpd ftpusers not working?
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
09-12-2001 07:43 AM
09-12-2001 07:43 AM
wu-ftpd ftpusers not working?
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2001 07:57 AM
09-12-2001 07:57 AM
Re: wu-ftpd ftpusers not working?
Make sure that the 'ftpd' daemon is started with '-a' and not '-A' in /etc/inetd.conf (see "man 1M ftpd").
If it is necessary to correct this, restart the 'inetd' daemon with:
# /usr/sbin/inetd -c
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2001 08:09 AM
09-12-2001 08:09 AM
Re: wu-ftpd ftpusers not working?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2001 09:03 AM
09-12-2001 09:03 AM
Re: wu-ftpd ftpusers not working?
When you install wu_ftpd, i believe it installs it in /opt/wu_ftpd. So make sure you copy the ftpusers to the appropriate directory (/opt/wu_ftpd/etc/ftpusers) and also /etc/inetd.conf is reflecting the correct binary (/opt/wu_ftpd/sbin/ftpd).
If you make any changes, make sure you reread your configuration file, by running
"/usr/sbin/inetd -c"
-HTH
Ramesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2001 12:21 AM
09-13-2001 12:21 AM
Re: wu-ftpd ftpusers not working?
At 2.6.1 it seems to install into /usr/contrib/wuftpd and the config files then go into /etc/ftpd. These all seem to be o.k. - there is a script to check the config /usr/contrib/wuftpd/usr/bin/ckconfig and this runs correctly. Also changes I make to /etc/ftpd/ftpaccess take effect so I'm sure it's picking up the correct file. The installation creates links so that /usr/lbin/ftpd (referenced in /etc/inetd.conf) points to /usr/contrib/wuftpd/usr/lbin/ftpd.
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2001 12:33 AM
09-13-2001 12:33 AM
Re: wu-ftpd ftpusers not working?
You might want to check your PAM configuration as this determines which authentication mechanisms are used. Does you system have an /etc/pam.conf or /etc/pam.d/ftp ? If so, could you post the contents of these files.
Regards,
Vincent
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2001 01:39 AM
09-13-2001 01:39 AM
Re: wu-ftpd ftpusers not working?
#
# PAM configuration
#
# Authentication management
#
login auth required /usr/lib/security/libpam_unix.1
su auth required /usr/lib/security/libpam_unix.1
ftp auth required /usr/lib/security/libpam_unix.1
OTHER auth required /usr/lib/security/libpam_unix.1
#
# Account management
#
login account required /usr/lib/security/libpam_unix.1
su account required /usr/lib/security/libpam_unix.1
ftp account required /usr/lib/security/libpam_unix.1
#
OTHER account required /usr/lib/security/libpam_unix.1
#
# Session management
#
login session required /usr/lib/security/libpam_unix.1
OTHER session required /usr/lib/security/libpam_unix.1
#
# Password management
#
login password required /usr/lib/security/libpam_unix.1
passwd password required /usr/lib/security/libpam_unix.1
OTHER password required /usr/lib/security/libpam_unix.1
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2001 04:37 AM
09-17-2001 04:37 AM
Re: wu-ftpd ftpusers not working?
I'm nowhere near an hp-ux machine right now so I can't check the validity of your /etc/pam.conf. I'm not sure whether the pam_unix.so module also checks against /etc/ftpusers. The Linux /etc/pam.conf, for example, uses the pam_listfile.so library for ftp to authenticate against /etc/ftpusers.
Anyway, there is another option: use the deny-uid directive in /etc/ftpd/ftpaccess (or /etc/ftpaccess). For example:
deny-uid root
Do a kill -HUP of inetd afterwards to make the changes active.
Hope this helps.
Regards,
Vincent
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2001 09:35 AM
10-02-2001 09:35 AM
Re: wu-ftpd ftpusers not working?
User oracle
Group users
AnonRequirePassword on
AllowAll
DenyAll
Just a thought. It made my life easy.
Brian