Skip to content

Commit 5094989

Browse files
authored
added 9500 stuff
1 parent 52805ae commit 5094989

File tree

2 files changed

+59
-0
lines changed

2 files changed

+59
-0
lines changed

docs/cisco/catalyst-9500.md

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
# Cisco Catalyst 9500
2+
3+
## Firmware Upgrade
4+
5+
### Check the existing install method:
6+
```
7+
show version | i System image
8+
```
9+
10+
If output show's filename ending in *.bin == **BUNDLE**
11+
If output show's filename "packages.conf" == **INSTALL**
12+
13+
```
14+
show install summary
15+
```
16+
17+
If output show's details == **INSTALL**
18+
If output show's "Bundle" == **BUNDLE**
19+
20+
### Verify
21+
Verify the `boot` commands in the config are correct:
22+
23+
- `packages.conf` == INSTALL
24+
- `*.bin` == BUNDLE
25+
26+
If using INSTALL do not change or modify the `boot` commands or the `packages.conf` file.
27+
28+
29+
### Remove unused firmware files
30+
This makes more room available on the storage of the device as firmware images are quite large.
31+
32+
```
33+
install remove inactive
34+
```
35+
36+
### Copy firmware file to device
37+
Use, `scp` or any other available method.
38+
39+
40+
### Verify the firmware hashes
41+
42+
```
43+
verify /md5 flash:<filename.bin>
44+
```
45+
46+
Ensure the hash of the file and the reported hashes match.
47+
48+
### Install
49+
```
50+
install add file flash:<filename.bin> activate commit
51+
```
52+
This command will:
53+
- Unpack the `*.bin` image
54+
- Update the `packages.conf` file
55+
- Commit the new packages
56+
57+
### After reboot, Verify
58+
Use the same verification commands in step 1: `show version`, `show install summary`

mkdocs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ nav:
7171
- systemctl: linux/systemctl.md
7272
- Cisco:
7373
- cisco/index.md
74+
- "Catalyst 9500": cisco/catalyst-9500.md
7475
- Forensics: cisco/forensics.md
7576
- "Packet Capture: ASA": cisco/capture-asa.md
7677
- "Packet Capture: 3850": cisco/capture-3850.md

0 commit comments

Comments
 (0)