- Community Home
- >
- Servers and Operating Systems
- >
- Legacy
- >
- ProLiant Deployment and Provisioning
- >
- Arrtype not seeing all controllers
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
06-11-2001 04:00 PM
06-11-2001 04:00 PM
Arrtype not seeing all controllers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2001 04:00 PM
08-30-2001 04:00 PM
Re: Arrtype not seeing all controllers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2004 04:07 AM
06-23-2004 04:07 AM
Re: Arrtype not seeing all controllers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-23-2004 11:19 AM
06-23-2004 11:19 AM
Re: Arrtype not seeing all controllers
I have seen similar forum posts to this where even when the onboard is disabled in the BIOS, the script still sees it. I have yet to see a good work around, even with the arrtype scripting branch option.
Ed
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2004 10:02 AM
06-24-2004 10:02 AM
Re: Arrtype not seeing all controllers
I think I may have found a solution:
I would recommend you download the latest Smartstart Scripting Toolkit User guide.
http://h18013.www1.hp.com/products/servers/management/toolkit/documentation.html
On page 27 it lists variables that Conrep has captured. They include:
Controller_Order1_ID
Controller_Order1_SlotNumber
and a third one...PCI bus function.
Apparently with two or more controllers you need to specify a line for each. So I guess you would have to include another line that would be something like:
Controller_Order2_ID.
I think that the previous posts indicate that you understand the ID piece of this. The ID is that DOS error level code return when Arrtype queries the controller. Each HP Array controller returns a certain value.
SO here's a possible scenario.
On a server which has two controllers (i.e. a Smart 5i and a 5300) change the boot order manually in F8. Then run a Conrep capture ...and point the output to a file (something like DL380.hwr). 8.3 Dos file name limit ...
Check those parameters listed above and see what it captured as the Controller_Order for the two controllers.
OR>>
Maybe you can just edit the Conrep file manually without first capturing an existing hardware configuration.
Don't know if any of this will help...but let me know if you decide to give it a shot.
Ed Cox
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2004 10:14 AM
06-24-2004 10:14 AM
Re: Arrtype not seeing all controllers
loop slot# 1 - 5
arrtype ssstkarr.ini slot#
check error for 5300
jumpto config for 5300 else only 5i's
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2004 10:17 AM
06-24-2004 10:17 AM
Re: Arrtype not seeing all controllers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2004 10:22 AM
06-24-2004 10:22 AM
Re: Arrtype not seeing all controllers
if errorlevel 10 goto x
will goto x on anthing that is 10 or greater.