- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Real-Time monitoring
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
тАО06-23-2005 09:35 PM
тАО06-23-2005 09:35 PM
1)Is there a way for the administrator to monitor in real-time users' actions on a HP-UX 11.x server ??
2)Is it possible for the administrator to know if there are unauthorized attemps to access ressources ??
3)Could alarms be sent in real-time to the administrator when unsuccessful login attempts are detected ??
Thanks,
S├йbastien Boiss
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-23-2005 10:06 PM
тАО06-23-2005 10:06 PM
Re: Real-Time monitoring
2) what kind of resources ?
3) I think it's possible with enable PAM and customize scripts.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-23-2005 10:14 PM
тАО06-23-2005 10:14 PM
Re: Real-Time monitoring
2. Is it based on memory, disk like that. You can use top or ps command to get / user based.
3. You can use lastb command to get bad login informations.
hth.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-24-2005 12:17 AM
тАО06-24-2005 12:17 AM
Re: Real-Time monitoring
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-24-2005 12:28 AM
тАО06-24-2005 12:28 AM
Solution2) As mentioned, lastb tells you all that. You have to write a script that checks for new additions to that list.
3) As with item #2, you have to write a script to monitor this command.
It sounds like you are concerned about security and/or users that have too many privileges on this system. For security, you might take a look at IDS (Intrusion Detection System to monitor things automatically. Get information at:
http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=HPUX-HIDS
For system stability due to poor user behavior, this is reallt a social problem and the easiest solutuion is to remove shell access for problem users and write a menu script instead. Certainly you never, ever give root access to developers and database administrators. For assistant administrators, use SAM's restricted use feature and also get a copy of sudo to provide limited command capability.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-28-2005 01:35 AM
тАО06-28-2005 01:35 AM
Re: Real-Time monitoring
I don't find where i can download it.
S├Г┬йbastien Boiss
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-01-2005 11:00 AM
тАО07-01-2005 11:00 AM
Re: Real-Time monitoring
HPUX-HIDS on 11.0 is a discontinued release. We do not widely deliver HIDS 11.0 depots and generally require customers to go through CCP (customer commitment process; formerly known as business escalation). This is mainly to sensitize customers to the fact that HPUX 11.0 support days are numbered and that they need to seriously plan for a transition to 11i.
Pierre
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-01-2005 05:08 PM
тАО07-01-2005 05:08 PM
Re: Real-Time monitoring
HIDS can be configured with triggers but from what I seen with the early versions, it was not flexible enough. Anyone, correct me if I'm wrong.
The solution we implemented at our site is activating the trusted system enabling the auditing subsystem and watching for every system call from the exec() family. That's as a best history file you can get. The logs are sent almost real-time to another server where they can be analyzed. Furthermore, that's the kind of data you will need if any legal action must be taken against an attacker.
But going trusted is a major step which is less relevant since the release of the shadow password option. I would not do it just for fun if you're in production. But yet it works with 11.0, while HIDS doesn't.
Good luck