- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- URGET : FTP SESSIONS
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-17-2005 05:41 PM
05-17-2005 05:41 PM
URGET : FTP SESSIONS
We are having HP-UX B 11.11.
On our box we have webMethods Application runing in which we have a scheduler which connects to an ftp server and upload/download files from there.
How can I check how many ftp session are establishished from my box to the ftp server.
I want to list them on my HP BOX as I dont have access to FTP server.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2005 05:53 PM
05-17-2005 05:53 PM
Re: URGET : FTP SESSIONS
See if this command helps.
# netstat -a | grep ftp
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2005 05:56 PM
05-17-2005 05:56 PM
Re: URGET : FTP SESSIONS
Will it show ftp session from my HP box to the remote ftp server as well.
Thanks,
Amit.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2005 06:12 PM
05-17-2005 06:12 PM
Re: URGET : FTP SESSIONS
Its possible using ftpaccess!!!
Check this
http://docs.hp.com/en/B2355-90778/ch02s05.html
Regards,
Naveej
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2005 06:17 PM
05-17-2005 06:17 PM
Re: URGET : FTP SESSIONS
Yes it shows.
It show you something like this:
tcp 0 0 YourLocalBox RemoteServerName ESTABLISHED
Hope that helps,.
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2005 06:19 PM
05-17-2005 06:19 PM
Re: URGET : FTP SESSIONS
tcp 0 0 YourLocalBox RemoteServerName ESTABLISHED
as
tcp 0 0 YourLocalBox:scoketno RemoteServerName ESTABLISHED
So for multiple sessions you will different socket number.
Hope that helps.
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2005 06:29 PM
05-17-2005 06:29 PM
Re: URGET : FTP SESSIONS
# lsof -i tcp@remote_server_name_or_ip:20-21
port 20 is for ftp data connection
port 21 is for ftp control connection