- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to detect opened TCP/IP ports in HP-UX
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-14-2005 01:42 PM
04-14-2005 01:42 PM
How to detect opened TCP/IP ports in HP-UX
Is there a way to detect opened TCP/IP ports in HP-UX besides using a scanner?
Any pointer is appreciated.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2005 02:04 PM
04-14-2005 02:04 PM
Re: How to detect opened TCP/IP ports in HP-UX
if u mean ports that are listening, u may do this:
# netstat -an|grep tcp|grep LISTEN|sort
regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2005 02:10 PM
04-14-2005 02:10 PM
Re: How to detect opened TCP/IP ports in HP-UX
What about capturing udp ports that listening?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2005 02:32 PM
04-14-2005 02:32 PM
Re: How to detect opened TCP/IP ports in HP-UX
regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2005 03:43 PM
04-14-2005 03:43 PM
Re: How to detect opened TCP/IP ports in HP-UX
ports are open, there is an interesting fact that you
should know.
If you are running HP-UX IPFilter firewall to block
certain ports, those ports will still be shown in LISTEN
state by "netstat -an" command even if they are
blocked in a sense that no remote system would be
able to access them. The reason being, IPFilter
firewall operates at a point much lower in the
networking stack than where "netstat -an" gets it's
information from.
- Biswajit