Add misssing tftp boot step

This commit is contained in:
BuildTools
2017-12-21 21:03:42 -05:00
parent 7f5d9a2fcb
commit 6f8d1ccce7
2 changed files with 20 additions and 2 deletions

View File

@@ -143,7 +143,20 @@ show interfaces ethernet 1
#Also works for virtual interfaces:
show interfaces ve 1
```
Give a port a friendly name:
```
interface ethernet 1
port-name freenas
show interface brief ethernet 1
exit
```
To remove commands from your config, just put no in front of them:
```
interface ethernet 1
no port-name
exit
```
Show the currently active configuration:
```
show run

View File

@@ -153,7 +153,6 @@ It will now reboot into the Brocade bootloader. In the Brocade software over ser
Firstly boot the OS image via tftp. You need to first give the bootloader a temporary unique IP, then boot the firmware file using the IP address of your tftp server:
```
ip address 192.168.1.50/24
boot system tftp 192.168.1.49 brocadeimage.bin
```
@@ -177,6 +176,12 @@ Reboot the switch so the new bootloader fixes perms. You won't be able to write
```
reload
```
It will reboot to the bootloader because we still haven't flashed the OS. Just like above, temporarily tftp-boot the OS:
```
ip address 192.168.1.50/24
boot system tftp 192.168.1.49 brocadeimage.bin
```
If your management IP config from earlier didn't save, you'll need to redo those steps to give it an IP again. Now load and write the firmware:
```
enable
@@ -208,4 +213,4 @@ This is the full layer 3 image that has all the layer 2 and layer 3 features, so
###Contributing:
The markdown source for these guides is hosted on [**our Github repo.**](https://github.com/Fohdeesha/quanta-brocade) If you have any suggested changes or additions feel free to submit a pull request.
```Documentation version: v1.1 (12-20-17)```
```Documentation version: v1.2 (12-21-17)```