- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: FTP hung
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
12-01-2006 04:18 AM
12-01-2006 04:18 AM
Dear all,
hope that you could help me on this FTP issue.
the ftp had been working for users in a longtime. yesterday, users complanned that they could ftp to the outside ip address and got a connection but could not run any commands like "ls", "put"...
but from outsite the company i could connect and do anything to that outside ip address.
i was thinking about the firewall.
any suggestions that i can tell the network admin to check?
from inside company, even from my windows XP, using DOS to FTP to that outside ip address, it would hung if i ran " ls" or "put"...
Thank you in advance.
Regards,
Tom
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2006 04:28 AM
12-01-2006 04:28 AM
Re: FTP hung
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2006 05:25 AM
12-01-2006 05:25 AM
Re: FTP hung
connections are coming from the client and the firewall (DSL router) dosen't interupt outgoing connections.
Seeing as you can make the connection, it looks as though the CONTROL CHANNEL is opened but looks like the DATA CHANNEL is not. I would check with the firewall folks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2006 05:46 AM
12-01-2006 05:46 AM
Re: FTP hung
I'm not sure I see the point of connecting to your outside IP address from within your network. If it's because you'd like to make the IP address consistent from inside and outside, you might consider DNS as an alternative. Personally, I would have users on the LAN connect to the internal address.
This definitely seems like a firewall and/or routing problem.
PCS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2006 05:56 AM
12-01-2006 05:56 AM
Re: FTP hung
so it seems like the control channel using port 21 and data channel using port 20 ?
one addition information.
after making a connection to the ftp server.
i could do "pwd", cd ../ or down and that was about it.
nothing else.
Would you think the data channel not open at that time.
Regrards,
Tom
ps
Thanks Coolmar for this information.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2006 06:00 AM
12-01-2006 06:00 AM
Re: FTP hung
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2006 08:34 AM
12-01-2006 08:34 AM
Re: FTP hung
A) Not the subnet of the outside ip address that you're trying to reach. Can you get to a workstation within that subnet and ftp?
B) Use 'telnet ip.address port#' to establish a firewall block on a port. You should get CONNECTED.
# telnet 10.23.45.122 21
CONNECTED!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2006 08:35 AM
12-01-2006 08:35 AM
Re: FTP hung
A) Note the subnet of the outside ip address that you're trying to reach. Can you get to a workstation within that subnet and ftp now?
B) Use 'telnet ip.address port#' to determine a firewall block on a port. You should get CONNECTED if not blocked; hanging if blocked.
# telnet 10.23.45.122 21
CONNECTED!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2006 09:01 AM
12-01-2006 09:01 AM
Re: FTP hung
telnet to the ip and port 21 is fine
# telnet 10.23.45.122 21
CONNECTED!
i was thinking about port 20 on my site
how can i check that port ?
Regards,
Tom
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2006 04:17 AM
12-04-2006 04:17 AM
Re: FTP hung
Dear all,
hope you could give me some advice on this.
talked to people who control FTP server and they said the client determined the mode that it could connect.
so we added the PASS (passive mode) to the script and it was able to transfer file.
any idea? it was working fine before without adding PASS to the script.
#/bin/sh -x
ftp -i -n << EOJ
open 192.168.120.200
user xxxx xxxxxxxx
PASS
lcd /XXX/XXXX/XXXX/XXXXX
put $XXXX
quit
EOJ
Thanks,
Tom
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2006 05:40 AM
12-04-2006 05:40 AM
Solutionconnections are coming from the client and the firewall (DSL router) dosen't interupt outgoing connections.
Sounds to me like something changed at the firewall and PASS is your way around it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2006 05:44 AM
12-04-2006 05:44 AM
Re: FTP hung
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2006 06:27 AM
12-04-2006 06:27 AM
Re: FTP hung
Regards,
TOm