- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- /etc/services
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
07-07-2005 03:29 AM
07-07-2005 03:29 AM
If it does have a role, what is the general best practice when utilizing this function?
Thanks in advance...
johan
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2005 03:36 AM
07-07-2005 03:36 AM
SolutionIf you run (among other things) a netstat command, instead of seeing a port number you'd see the service name assigned in /etc/services.
That's all it does.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2005 03:36 AM
07-07-2005 03:36 AM
Re: /etc/services
it is basicaaly a lookup file for the services which are running or authorized to run on any given machine and the ports associated with them
for instance:
telnet 23/tcp
says, whatever comes as a request witbh tcp protocol to my computer's port 23 will be treated as a telnet request and the necessary action to serve such a request will be taken, i.e., an telnetd process will be spawned to service the request.
I am not sure what other information that you are after. If you can elaborate on your question, you may get a more meaningful answer.
Hope this helps a bit
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2005 03:50 AM
07-07-2005 03:50 AM
Re: /etc/services
man services
It mainly controls inbound traffic for specific ports and related protocol.
-USA..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2005 03:57 AM
07-07-2005 03:57 AM
Re: /etc/services
/etc/services really plays no role in security because "well-written" exploits will not bother with name to port mapping and use the port numbers directly.