- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Port Number
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-04-2003 10:19 AM
04-04-2003 10:19 AM
Port Number
the port is 4034, and i can??t find it en /etc/services. Jus i can see it whit netstat -a and show this
tcp 0 0 *.4034 *.* LISTEN
tcp 0 0 mvi913.4034 mvi913.54243 ESTABLISHED
tcp 0 0 mvi913.54243 mvi913.4034 ESTABLISHED
how can i kwon, where is this port configured?, and How can i identify the ESTABLISHED conection (mvi913.54253)? How can i evaluate this port?
Please any help to understand how the ports work , i appreciate so much.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2003 10:26 AM
04-04-2003 10:26 AM
Re: Port Number
Try putting it in /etc/services.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2003 10:49 AM
04-04-2003 10:49 AM
Re: Port Number
lsof -i tcp:4034
If you have lsof installed. If not then you should consider getting lsof. It's great, it's free be the first on your block with lsof:
http://hpux.cs.utah.edu/hppd/hpux/Sysadmin/lsof-4.61/
Or you can do a google search on lsof hpux and see if there are other places.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2003 06:33 PM
04-04-2003 06:33 PM
Re: Port Number
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2003 07:49 PM
04-04-2003 07:49 PM
Re: Port Number
It is possible for any network process to listen on a port even without putting any entries in /etc/services.
Listing in /etc/services only provides a service name mapping for that particular port.
So In your case since you have not put any service name entry about port 4034 , When you issue netstat -a , it will show the numeric port number.
But if you notice the other entries in netstat -a output you will find some service names instead of port numbers . Those service names are mapped to port numbers in /etc/services.
So for identifying the listening port against service name in netstat type of commands and /etc/inetd.conf file we use /etc/services.
/etc/services has no effect on the network process and its listen() capability.
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2003 08:05 PM
04-04-2003 08:05 PM
Re: Port Number
Maybe you have installed some software that's looking for such ports, doesn't recognize it as a valid port and closes it?
Regards,
Dave