- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: TCP PORT
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
02-27-2006 11:48 PM
02-27-2006 11:48 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2006 12:00 AM
02-28-2006 12:00 AM
Re: TCP PORT
It is being used by SAP router.
http://documents.made-it.com/sap-int.html
http://www.easymarketplace.de/saprouter.php
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2006 12:03 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2006 12:05 AM
02-28-2006 12:05 AM
Re: TCP PORT
sorry for second post!
Have found the latest version of lsof at:
http://hpux.connect.org.uk/hppd/hpux/Sysadmin/lsof-4.76/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2006 01:59 AM
02-28-2006 01:59 AM
Re: TCP PORT
Just use the command
# lsof | grep 3299
It will show you the program/command that is using the TCP Port 3299 .
rgds..Ashish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2006 03:12 AM
02-28-2006 03:12 AM
Re: TCP PORT
If you have lsof simply run the below-listed command, which will show the process that is listening on that port as well the current network sockets:
# lsof -iTCP:3299
cheers!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2006 04:34 AM
02-28-2006 04:34 AM
Re: TCP PORT
netstat -n |grep 3299
this won't show you the process, but if it returns anything, will show you if it's being used. If it returns nothing, that means the port is not in use only at that time. If you have applications on the system that use tcp sockets, you may want to check with the application vendors or any of your coworkers who work with the apps about where the configurations files are to see if that port has been set-up for use.
mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2006 09:29 AM
02-28-2006 09:29 AM
Re: TCP PORT
While I use netstat as other have mentioned, my weapon of choice is ndd for the additional information the output contains.
i.e.
ndd -get /dev/tcp tcp_status | grep ce3
ce3 being the hex value for 3299
The output will identify what the port is connected to as in remote ip and remote port.
Regards,
dl
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2006 01:13 AM
03-01-2006 01:13 AM
Re: TCP PORT
Miguel