mirror of
https://github.com/Fohdeesha/lab-docu.git
synced 2024-11-29 11:15:23 +01:00
113 lines
5.2 KiB
Markdown
113 lines
5.2 KiB
Markdown
|
|
# ICX6450 Licensing
|
|
|
|
Brocade licenses are keyed to a specific switch License ID, so they cannot be loaded on multiple switches. Thankfully these ID's are stored in a separate EEPROM and can be easily changed.
|
|
|
|
To download and use the legitimate license files linked below on as many switches as you need, you simply need to change your switch license ID to match. Only the license system reads this EEPROM, so changing these values has no effect on the switch whatsoever.
|
|
|
|
**DISCLAIMER:** This is intended for educational use only, or in a homelab type environment.
|
|
|
|
**WARNING:** DO NOT SHARE THIS LINK, GUIDE, OR FILES WITH ANYONE! The licenses will be blacklisted and this process will be patched out in firmware - do not ruin it for everyone.
|
|
|
|
## What Does This Do?
|
|
|
|
On the Brocade ICX6450, the `POD` license and the `PREM` license in this guide unlock the following:
|
|
|
|
- 10gbE functionality on the remaining 2x SFP+ ports (2x come unlocked already from factory)
|
|
- A bunch of new routing features
|
|
- IPv6 Routing - static/unicast/multicast
|
|
- OSPF
|
|
|
|
## Update The Switch
|
|
|
|
To do this, you need the latest bootloader and OS. I cannot be held responsible if you break something running these commands on an older bootloader image where they might have acted differently.
|
|
|
|
Follow this link to upgrade to the latest firmware image AND bootloader - [ICX6450 Update & Start Guide](http://fohdeesha.com/docs/icx64xx/).
|
|
|
|
**Note:** If this is a new/unconfigured switch, or a used switch with an unknown config on it, follow that update guide all the way through to the `Saving & Conclusions` section! This will get the switch in a state that it can TFTP licenses in.
|
|
|
|
When upgraded and configured, move on to the below.
|
|
|
|
## Optional: Delete Existing Licenses
|
|
|
|
If your switch came with partial licenses already (find out with `show license`), you can delete them if you'd like following the below:
|
|
```
|
|
enable
|
|
license delete unit 1 all
|
|
```
|
|
However if you would like to keep the old licenses (in case you want to resell the switch or similar), you do not have to follow the above. Just note that when you change your switch serial and load in the licenses from this guide, the old licenses will show as `invalid`, but they will not affect anything and will go back to `valid` if you ever revert the switch serial and delete my licenses.
|
|
|
|
Now you can move on to the below.
|
|
|
|
## Download Licenses
|
|
|
|
[`ICX6450 Official Licenses`](store/icx6450-lic.zip)
|
|
`ZIP Updated: 06-13-2018`
|
|
|
|
|
|
|
|
|
|
## Change The Serial
|
|
|
|
We need to change the serial and license ID to match the new licenses. From the normal switch OS:
|
|
```
|
|
enable
|
|
hw pid-prom serial BZS2533H7V3
|
|
hw pid-prom clear-sw-lid
|
|
reload
|
|
```
|
|
The switch will reboot, and when it comes back up it will have a new license ID and serial.
|
|
|
|
## Importing The Licenses
|
|
|
|
Once it's booted into the OS, put the license files from the ZIP above on your TFTP server. If you need an easy and temporary TFTP server for windows, I recommend [Tftpd32 Portable Edition](http://www.tftpd64.com/tftpd32_download.html). Once the licenses are being hosted by TFTP, import them one at a time. Replace the IP's in the commands with the IP of your own TFTP server:
|
|
```
|
|
enable
|
|
copy tftp license 192.168.1.8 1-6450prem.xml unit 1
|
|
copy tftp license 192.168.1.8 2-6450ports.xml unit 1
|
|
```
|
|
|
|
Now make sure they imported properly:
|
|
|
|
```
|
|
show license
|
|
```
|
|
The `Status` column should show `Active` for both licenses. If it does, write memory then reload the switch to bring the 10gbE ports out of the `ERR-DIS` state:
|
|
```
|
|
write mem
|
|
reload
|
|
```
|
|
That's it! It will come back up fully licensed with all four 10gbE ports ready to go.
|
|
|
|
## Reverting
|
|
|
|
If you want to revert the switch to its original serial and license ID (for instance, if you sell it), that's quite easy. First, get the serial number from your switch. It should be on a sticker on the bottom of the unit. Then just use the commands we used earlier from the regular OS, but now using your actual serial. Make sure the capitalization matches what is on your switch!
|
|
```
|
|
enable
|
|
hw pid-prom serial YourSNhere
|
|
hw pid-prom clear-sw-lid
|
|
reload
|
|
```
|
|
|
|
Once the switch reboots and has a new serial, you need to delete the licenses you loaded from this guide. Do not skip this! They will be `invalid` after changing the serial back.
|
|
```
|
|
enable
|
|
|
|
#if you had no previous licenses from before this guide:
|
|
license delete unit 1 all
|
|
#you're done
|
|
|
|
#If you have previous licenses from before this guide you want to keep:
|
|
#list the licenses:
|
|
show license
|
|
#now delete each of my licenses (they should be the ones showing invalid)
|
|
#replace X with the number of the license in the list you want to delete:
|
|
license delete unit 1 index X
|
|
```
|
|
It now has the stock license ID and serial, and the licenses have been removed. The output of `show license` should be empty (unless you previously had licenses from before this guide, in which case they should now show valid).
|
|
|
|
## Does This Affect Stacking?
|
|
|
|
Q: Since all the switches in a stack would have the same license and serial after this procedure, would this cause issues?
|
|
|
|
A: No - stacking works perfectly. The License and Serial ID are only used for licensing. The switch and stack is totally unaware of them. Stacking uses each switches MAC address to keep track of stack members, and the MAC is unmodified. |