- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- FTP Access
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
04-07-2008 01:37 AM
04-07-2008 01:37 AM
I can access to server HP-UX 11.11, via ftp, using username root only.
Using other username, the answer is:
"220 iitsh005 FTP server (Version 1.1.214.4(PHNE_34544) Fri Feb 24 15:03:24 GMT 2
006) ready.
Utente (138.132.95.34:(none)): sist
530 User sist access denied..."
How is possible to enable the username "sist" ?
thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2008 02:20 AM
04-07-2008 02:20 AM
Re: FTP Access
See the ftpacces file.
That reverse intuitively controls those users that can use ftp.
Also, having root with ftp access is dangerous and will fail you on most security audits.
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
04-07-2008 02:22 AM
04-07-2008 02:22 AM
Re: FTP Access
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2008 02:55 AM
04-07-2008 02:55 AM
Re: FTP Access
See the ftpaccess list and man page for wu-ftpd.
This counter-intuitive list will permit you to authorize/block access.
You should block root ftp access. It id dangerous and a common failure point on security audits.
ftp authenticates in clear text and where possible sftp from openssh (secure shell) should be used in its place.
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
04-07-2008 03:01 AM
04-07-2008 03:01 AM
Re: FTP Access
The file /etc/ftpd/ftpaccess is not present
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2008 03:35 AM
04-07-2008 03:35 AM
Re: FTP Access
Please check /etc/shells for /usr/bin/sh & /sbin/sh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2008 03:57 AM
04-07-2008 03:57 AM
Re: FTP Access
This is very common problem, pls check the below URL site, hope it will help for U:-
http://forums12.itrc.hp.com/service/forums/questionanswer.do?admit=109447627+1207569264586+28353475&threadId=1026012
Thanks--Yaqub
HP Support!!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2008 04:02 AM
04-07-2008 04:02 AM
Re: FTP Access
Pls try this path,..
#ll /usr/newconfig/etc/ftpd/examples/*
In this dir u will get a ftpusers, access & etc....
Pls verify,..
H.Kannan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2008 04:29 AM
04-07-2008 04:29 AM
Re: FTP Access
Apr 7 14:10:55 iitsh005 ftpd[6847]: FTP LOGIN REFUSED (bad shell) FROM 138.132.26.48 [138.132.26.48], sist
in /etc/shells:
/bin/sh
/bin/csh
/bin/ksh
the file /usr/bin/sh exists
the file /sbib/sh exists
The user "sist" has the ksh shell:
cat /etc/passwd | grep sist :
sist:7pb58KDNAZdKs:117:109:,,,:/home/sist:/usr/bin/ksh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2008 05:52 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-07-2008 06:05 AM
04-07-2008 06:05 AM
Re: FTP Access
I have add /usr/bin/ksh in /etc/shells and now is possible to exec ftp connection to server.
Thanks