- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- disable services under /etc/rc.config.d
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
10-02-2002 05:46 AM
10-02-2002 05:46 AM
I am reviewing the CIS HP-UX Benchmark and I can't figure out why I should turn off the following services:
netconf: RARP=0; RDPD=0
ptydaemon: PTYDAEMON_START=0
vt: VTDAEMON_START=0
netdaemons: DDFA=0
Can some one explain to me how this helps secure a host?
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2002 05:49 AM
10-02-2002 05:49 AM
Re: disable services under /etc/rc.config.d
The thumb rule for security is to turn-off all the services that are not required to run. It does not necessarily mean that there were security issues found with them. But from a hacker's perspective, anything that is opened is worth a try.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2002 06:00 AM
10-02-2002 06:00 AM
Re: disable services under /etc/rc.config.d
If you are required to run arpd for some reason, then by all means feel free to keep it up.
I think the general recommendations will tell you to restrict ports with known vulnerabilities as well as rarely used networking which could be used for exploitation. I.E. NIS/rwhod
Since daemons do not start for services, this also reduces system overhead and can lead to better performance.
Regards,
Shannon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2002 06:00 AM
10-02-2002 06:00 AM
Re: disable services under /etc/rc.config.d
You may want to check what other services are available in inetd.conf and disable any your server does not require.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2002 06:47 AM
10-02-2002 06:47 AM
Re: disable services under /etc/rc.config.d
It's understood that I should disable all unecessary services. I don't understand what those settings are used for? Such as, what is PTY daemon, vt daemon, ddfa etc. I couldn't get info from the file.
Crystal
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2002 07:18 AM
10-02-2002 07:18 AM
Solution1st is the DTC: Data communications and terminal controller.
2nd is the DDFA Data Device File access software.
Specifically, the DDFA consists of the ptydaemon, vtydaemon, ddp, and ocd which play a role in allowing remote terminal access through a listening daemon.
NOTE: Standard Access is done through programs launched by inetd such as remsh, rexec, rlp, etc..
Regards,
Shannon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2002 07:35 AM
10-02-2002 07:35 AM
Re: disable services under /etc/rc.config.d
RARP = For network boot clients
RDPD = Router discovery protocol that can automatically update the routing tables.
ptydaemon = For shell layers. If you use a dumb terminal, you can use shl to get more sessions (shells).
vtdaemon = For "vt" users. Another login methodology to access remote systems.
DDFA: Provides interfaces to access terminal server ports
-Sri