- Community Home
- >
- Networking
- >
- Legacy
- >
- Communications and Wireless
- >
- NX7000 and Intel 2200bg with new bios
Communications and Wireless
1821998
Members
3501
Online
109639
Solutions
Forums
Categories
Company
Local Language
back
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Discussions
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Topic Options
- 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-14-2005 03:01 AM
06-14-2005 03:01 AM
NX7000 and Intel 2200bg with new bios
I had a problem adding an Intel 2200BG card to my NX7000 After installing the card, and download and install the new Bios version 53 the next message appaers after rebooting the computer "104-unsupported wireless network device detected" this card is approved by HP but the Bios not recognized this wireless device, could I obtain a net patch or fixed solution to update my computer with the latest BIos? or do I need to return to 3.4 version in order to continue using this wireless card or do I need to buy a different wireless card for my computer?
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-03-2005 07:12 AM
07-03-2005 07:12 AM
Re: NX7000 and Intel 2200bg with new bios
Thanks to Mark Wrightson,
Here is the answer:
1. I reverted to an older bios on the zt3017ea v.F34, any newer version blocks this card instead of removing and reinserting it which did not work for me.
2. I used Koppix v 3.9
3. I skiped the ipw2200.tar.gz part
I have a solution thanks to whiteheat and druid cz from x1000 forums that allows you to use any Intel Pro Wireless 2200BG card inside your HP laptop.
Before, I received the error 104: unsupported wireless card, now my NC8000 laptop will boot perfectly. Now you can buy your card for < à £25.00 instead of HP's à £60 + vat + p&p.
First off if you don't have linux installed you will need to go to www.knoppix.org and download KNOPPIX_V3.8.2-2005-05-05-EN.iso, then burn the cd
You need to have the card install during the boot sequence so, have your laptop open and bootup, when you see the boot:_ line insert the card then press enter. Knoppix will autodetect the card & the bios wont complain.
Once knoppix has booted:
Click on the penguin on the taskbar and select "Root Shell", then the following command (from now on any line that begins with a # is a command to be typed at the Root prompt:
#iwconfig
You will get a list of ethernet adapters, eth0, eth1 etc. The wireless one should be quite obvious from the text displayed after it with all the wireless parameters!
#ethtool -e ethX
Obviously replace the 'X' with the index of your wireless card you found above.
You will get a hex dump of the 256 bytes of EEPROM data.
Note: There is nothing dangerous in the above steps at all.
If you want to writing to your EEPROM (You can seriously screw your card up so be careful ):
#mkdir /usr/tmp
#cd /usr/tmp
#wget http://www.geocities.com/sonyirclib/ipw2200.tar.gz
N.B. This file has already been patched to allow writing to the eeprom
#tar xvzf ipw2200.tar.gz
#cd ipw2200-1.0.3
#sh unload
#sh load
Now all that you need to do is write to the eeprom. If your card is from Europe:
#ethtool -E eth0 magic 0x2200 offset 0x8 value 0xf6
#ethtool -E eth0 magic 0x2200 offset 0x9 value 0x12
#ethtool -E eth0 magic 0x2200 offset 0xa value 0x3c
#ethtool -E eth0 magic 0x2200 offset 0xb value 0x10
If it is from the US:
ethtool -E eth0 magic 0x2200 offset 0x8 value 0xf5
ethtool -E eth0 magic 0x2200 offset 0x9 value 0x12
ethtool -E eth0 magic 0x2200 offset 0xa value 0x3c
ethtool -E eth0 magic 0x2200 offset 0xb value 0x10
N.B. the -E must be uppercase for writing to work.
Now reboot your computer and you should no longer get the error 104...!
For more details see: http://www.x1000forums.com/index.php?showtopic=8737
Here is the answer:
1. I reverted to an older bios on the zt3017ea v.F34, any newer version blocks this card instead of removing and reinserting it which did not work for me.
2. I used Koppix v 3.9
3. I skiped the ipw2200.tar.gz part
I have a solution thanks to whiteheat and druid cz from x1000 forums that allows you to use any Intel Pro Wireless 2200BG card inside your HP laptop.
Before, I received the error 104: unsupported wireless card, now my NC8000 laptop will boot perfectly. Now you can buy your card for < à £25.00 instead of HP's à £60 + vat + p&p.
First off if you don't have linux installed you will need to go to www.knoppix.org and download KNOPPIX_V3.8.2-2005-05-05-EN.iso, then burn the cd
You need to have the card install during the boot sequence so, have your laptop open and bootup, when you see the boot:_ line insert the card then press enter. Knoppix will autodetect the card & the bios wont complain.
Once knoppix has booted:
Click on the penguin on the taskbar and select "Root Shell", then the following command (from now on any line that begins with a # is a command to be typed at the Root prompt:
#iwconfig
You will get a list of ethernet adapters, eth0, eth1 etc. The wireless one should be quite obvious from the text displayed after it with all the wireless parameters!
#ethtool -e ethX
Obviously replace the 'X' with the index of your wireless card you found above.
You will get a hex dump of the 256 bytes of EEPROM data.
Note: There is nothing dangerous in the above steps at all.
If you want to writing to your EEPROM (You can seriously screw your card up so be careful ):
#mkdir /usr/tmp
#cd /usr/tmp
#wget http://www.geocities.com/sonyirclib/ipw2200.tar.gz
N.B. This file has already been patched to allow writing to the eeprom
#tar xvzf ipw2200.tar.gz
#cd ipw2200-1.0.3
#sh unload
#sh load
Now all that you need to do is write to the eeprom. If your card is from Europe:
#ethtool -E eth0 magic 0x2200 offset 0x8 value 0xf6
#ethtool -E eth0 magic 0x2200 offset 0x9 value 0x12
#ethtool -E eth0 magic 0x2200 offset 0xa value 0x3c
#ethtool -E eth0 magic 0x2200 offset 0xb value 0x10
If it is from the US:
ethtool -E eth0 magic 0x2200 offset 0x8 value 0xf5
ethtool -E eth0 magic 0x2200 offset 0x9 value 0x12
ethtool -E eth0 magic 0x2200 offset 0xa value 0x3c
ethtool -E eth0 magic 0x2200 offset 0xb value 0x10
N.B. the -E must be uppercase for writing to work.
Now reboot your computer and you should no longer get the error 104...!
For more details see: http://www.x1000forums.com/index.php?showtopic=8737
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Learn About
News and Events
Support
© Copyright 2025 Hewlett Packard Enterprise Development LP