- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- port for mountd
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
09-27-2001 11:06 AM
09-27-2001 11:06 AM
Should the port used for mountd be a reserved port?
Thanks,
Susan
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2001 11:18 AM
09-27-2001 11:18 AM
Re: port for mountd
rpcinfo -p |grep mountd
mountd registers itself with the RPC daemon and this command shows the port that the RPC daemon assigned to the mountd daemon.
-Santosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2001 11:23 AM
09-27-2001 11:23 AM
Re: port for mountd
http://forums.itrc.hp.com/cm/QuestionAnswer/1,1150,0x7496abe92dabd5118ff10090279cd0f9,00.html
Tony
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2001 09:29 AM
09-28-2001 09:29 AM
SolutionJust the other day I was asking the same question. :-)
Some facts in short:
* In former days RPC used to be on port 635.
* Mountd is an RPC-Service. The idea behind RPC is to have a so called portmapper which you can inquire the ports at. Try the command "rpcinfo -p
* The standard behaviour for an RPC service is to select any unused port at startup and register that port with the portmapper.
* RPC services and especially the portmapper pose a serious security threat to a server system! Therefore most OS are switching back to static ports for all services. (This allows firewalling.)
* The standard way for telling mountd to bind to a predefined port is to use the option "-P" when staring mountd. E.g. "rpc.mountd -P 635"
* HP-UX 10.20 does not recognize such an option. (I don't know about 11.x - just try it)
* Mountd runs on privileged (sometimes called "reserved") ports today, i.e. Ports greater 1023. This is due to security reasons - only root can access privileged ports on the local machine.
* By using the option "-p" (on HP-UX 10.20) you can allow mountd to use unprivileged ports as well.
I hope this answers all your questions. :-)
Cheers,
Enno.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2001 09:31 AM
09-28-2001 09:31 AM
Re: port for mountd
Sorry, I goofed up....
The first fact should read of course:
* In former days mountd used to be on port 635.
Cheers,
Enno.