Skip to content

Commit

Permalink
Cisco IOS - Add Catalyst 1000
Browse files Browse the repository at this point in the history
  • Loading branch information
SCadilhac committed Mar 31, 2024
1 parent 80dcd7a commit a71eec5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/main/resources/drivers/Cisco_IOS.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ var Info = {
name: "CiscoIOS12",
description: "Cisco IOS and IOS-XE",
author: "NetFishers",
version: "1.9.1"
version: "1.9.2"
};

var Config = {
Expand Down Expand Up @@ -300,6 +300,10 @@ function snapshot(cli, device, config) {
else if (system.match(/^cisco C11\d\d-/)) {
device.set("family", "Cisco ISR 1000");
}
else if (system.match(/^cisco C10\d\d-/)) {
device.set("family", "Cisco Catalyst 1000");
device.set("networkClass", "SWITCH");
}
else if (system.match(/.*Cisco 18\d\d .*/)) {
device.set("family", "Cisco ISR 1800");
}
Expand Down

0 comments on commit a71eec5

Please sign in to comment.