- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: port number 1
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
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
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
тАО08-14-2002 12:57 AM
тАО08-14-2002 12:57 AM
Someone could explained me what is the port number 1 ? what does it do ? If i can use it ?
thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-14-2002 01:11 AM
тАО08-14-2002 01:11 AM
Re: port number 1
In case you're looking for a port to use for a service of your own, avoid the "well-known" ports (0 thru' 1023).

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-14-2002 01:19 AM
тАО08-14-2002 01:19 AM
SolutionTCP Port Service Multiplexer. TCPMUX listens on port 1. When a connection is established, it is supposed to send the name of the service it wants to connect, and the selected protocol starts if available. TCPMUX is defined in RFC 1078 at http://www.ietf.org/rfc/rfc1078.txt, but never gained any popularity and is considered deprecated.
It is considered as a security threat as scans
and exploit based attacks can be launched on this port.
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-14-2002 01:24 AM
тАО08-14-2002 01:24 AM
Re: port number 1
Have a look in /etc/services:-
tcpmux 1/tcp # TCP port multiplexer (RFC 1078)
echo 7/tcp # Echo
echo 7/udp #
discard 9/tcp sink null # Discard
discard 9/udp sink null #
systat 11/tcp users # Active Users
daytime 13/tcp # Daytime
daytime 13/udp #
qotd 17/tcp quote # Quote of the Day
ETC -
Paula
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-14-2002 03:48 AM
тАО08-14-2002 03:48 AM
Re: port number 1
Can you give me more details please ? In fact, I want to use this port in oder to check if my server is up and running ,by opening a socket and check the inetd. Is a good solution ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-14-2002 06:44 AM
тАО08-14-2002 06:44 AM
Re: port number 1
Do not use port 1 fot this,
in /etc/services add a port say 5007.
A ping to a server will only indicate that the network card is up.
An easier way is to get the server to send a "heartbeat" to another server ( ftp a file) and the on the monitoring server check the file for tate and time stamp.
The fact that the monitored server can carry out an ftp is far better than relying on a ping.
Paula
Paula
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-14-2002 09:44 PM
тАО08-14-2002 09:44 PM
Re: port number 1
If you just want to see if the server is alive use SNMPINFO and examine variable such as SYSDESCR. This is how products such as Openview work.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-15-2002 05:23 AM
тАО08-15-2002 05:23 AM
Re: port number 1
check to see if a service is responding from a host.
Some will page if one of several services go down.
Look for packages like Big Brother or Mon.
You can also use tools like ssh to see if a computer is
aloive. Script a loop around a command like:
ssh unprivuser@requiredhost ls > /dev/null 2>&1
and check the return code.