- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Bizarre FTP behavior
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
05-26-2004 04:33 AM
05-26-2004 04:33 AM
Other users (root and personal accounts, including a DIFFERENT AMTrix account) get the username prompt and can type the username@host.domain string and do what they wish.
I've been comparing profiles and .*shrc files but I'm not seeing anything obvious. Has anyone run into something like this and can anyone point me towards the source of the problem?
Many thanks!!!!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2004 04:35 AM
05-26-2004 04:35 AM
Re: Bizarre FTP behavior
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2004 04:40 AM
05-26-2004 04:40 AM
Re: Bizarre FTP behavior
That is indeed the case for someone trying to get INTO my server. The problem at hand is with people getting OUT.
Also, I'm not running ftp (out of inetd.conf) using the -a option, which is what causes it to read ftpusers.
Just the same, I checked the file, and it's empty.
Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2004 04:41 AM
05-26-2004 04:41 AM
Re: Bizarre FTP behavior
to check if the connectivity is getting established, make sure you are running inetd with logging enabled, i.e.,
ps -ef | grep inetd
you should see a like with "inetd -l"
if you see just an "inetd" without -l option, do the following
/usr/sbin/inetd -k # to kill inetd
/usr/sbin/inetd -l # restart with logging enabled
then on a separate telnet instance, run command :
tail -f /var/adm/syslog/syslog.log
then try to establish your ftp session and you should see a line getting logged at this very same second. If not, the problem is not with ftp but with connectivity via your proxy.
Also if you can draw a rough picture of your environment like
client --> proxy --> ftp server
or what have you, it would help all of us understand the situation better.
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2004 04:42 AM
05-26-2004 04:42 AM
Re: Bizarre FTP behavior
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2004 04:44 AM
05-26-2004 04:44 AM
Re: Bizarre FTP behavior
so your picture is something like :
hpux server --> ftp proxy --> anonymous ftp server
is this right ?
and only one user on this hpux server is not able to establish this connection and start ftp ing using user@host.com as his or her anonymous user id. Is this correct so far ?
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2004 05:30 AM
05-26-2004 05:30 AM
Re: Bizarre FTP behavior
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2004 06:08 AM
05-26-2004 06:08 AM
Re: Bizarre FTP behavior
If the user id prompt itself is not soming, then it rules out anything to do with the id itself. Maybe this has something to do with the reverse name resolution or reverse lookoup. FTP as well as telnet uses reverse lookout to resolve the ip address of the system / wks from where the connection is coming.
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2004 06:13 AM
05-26-2004 06:13 AM
Re: Bizarre FTP behavior
Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2004 06:35 AM
05-26-2004 06:35 AM
SolutionIf this is particular to an id or two and works all right for other user ids at the same time from the same box, then it could be something to do with the user environment / permissions. if you have a .netrc file on any other file that you are using to automate ftp and all, rename them and try. Hope you have other user ids whose permissions level / security priv are the same as this id.
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2004 06:42 AM
05-26-2004 06:42 AM
Re: Bizarre FTP behavior
withouut the .netrc file there it connected just fine. So now I just need to figure out what's wrong with the .netrc file.
Thanks much!!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2004 07:17 AM
05-26-2004 07:17 AM
Re: Bizarre FTP behavior
Maybe, look for an entry for this proxy server in the .netrc file. Also check and see if there are any control characters in the file which might have been causing problems. Doing a cat does not display the control chanracters. Do a vi and it may show control characters in the file, if there are any.
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2004 07:23 AM
05-26-2004 07:23 AM
Re: Bizarre FTP behavior
Thanks for all the help!