- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Services Running
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-31-2001 04:00 AM
07-31-2001 04:00 AM
Services Running
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-31-2001 04:25 AM
07-31-2001 04:25 AM
Re: Services Running
http://people.hp.se/stevesk/bastion11.html
http://people.hp.se/stevesk/bastion10.html
http://secinf.net/info/unix/secureHP-UX.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-31-2001 04:30 AM
07-31-2001 04:30 AM
Re: Services Running
You can comment-out the services you do not need in /etc/inetd.conf (e.g. 'echo, 'chargen', etc.) and restart the 'inetd' daemon:
# /usr/sbin/inetd -c
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-31-2001 04:38 AM
07-31-2001 04:38 AM
Re: Services Running
inetd is the process that supervises the internet.
if you don't want any kind of activities in your system comment all the RPC lines in /etc/inetd.conf file. excecute the command 'inetd -c' , this will stop all RPC processes and kill the inetd process.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-31-2001 06:29 PM
07-31-2001 06:29 PM
Re: Services Running
To secure your system, you can comment the required ARPA/Berkeley services (telnet, ftp, rlogin, etc.) in /etc/inetd.conf file.
Incase if you want allow these services for some particular users, then you can enable security level for inet services using /var/adm/inetd.sec file(refer man page for inetd.sec entry). Any changes performed in /etc/inetd.conf file can be brought into effect by using "inetd -c" command, which will reconfigure the Internet daemon by rereading the config. file once again.
Further security of your system can be acheived by ensuring proper file permissions(recommended : 644 and in some case 664).
Hope this will help a bit.
Regards,
N.Harinath.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2001 11:55 AM
08-01-2001 11:55 AM
Re: Services Running
I'm looking into the same issue myself. I'd recommend the following methodology.
1) Turn on as much logging as you can. This would include modifying syslog.conf. Also do a man on the various daemons to see if there are log options available. (e.g. ftpd has logging options.)
2) After a "suitable" period of time, view these logs.
It might be helpful in the case of /var/adm/syslog/syslog.log to do the following:
cat /var/adm/syslog/syslog.log | grep rpcbind > rpcbind.log
cat /var/adm/syslog/syslog.log | grep LVM > LVM.log
etc...
3) Upon implementation, I would recommend having some tests clearly defined in advance, as well as having the fall back clearly planned.
I wish I could be more help but this is the first time
I'm doing this as well.
Good Luck and let us know if you run across any Einstein-ish ideas as you work on it!