- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Identify External devices on Itanium servers
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
03-06-2007 03:05 PM
03-06-2007 03:05 PM
The question though is how to verify this programaticaly.
At first I thought that it can be done based on the file system type that a device has, but this will not actually work as I can have, for example, HFS on a USB stick.
Any ideas?
Regards, haralambos
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2007 04:09 PM
03-06-2007 04:09 PM
SolutionThe key to this is going to be doing an 'ioscan -fn', or for better performance 'ioscan -kfn' (the -k looks at the kernel and doesn't actually scan all I/O buses), when the system is in its live production state.
You should take the output of that ioscan and store it somewhere. Then you could occasionally run another ioscan and compare the output of it to the output of the original ioscan. If there are any discrepancies / changes, then you should be notified.
If something is intentionally attached to the machine, new disks, net LAN card, etc., then you would need to update your production ioscan that you compare against.
This could all be done pretty easily via a shell script.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2007 01:22 PM
03-07-2007 01:22 PM
Re: Identify External devices on Itanium servers
If physical access to the system is limited to "trusted" individuals, then the main value of the scanning would be to help keep them honest, but it would still have the same limitations.
Of course, if you still allow the system to be connected to a network... :)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2007 02:27 PM
03-07-2007 02:27 PM
Re: Identify External devices on Itanium servers
Anyway, the ioscan suggestion will get us closer to our goal even though, as Rick said, it will only provide to me a system snapshot during the script's run.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2007 02:31 PM
03-07-2007 02:31 PM
Re: Identify External devices on Itanium servers
But, a complete/real time solution might be hard to achieve.
regards