Skip to content

Commit

Permalink
Started adding IOS support
Browse files Browse the repository at this point in the history
  • Loading branch information
GGabriele committed Nov 27, 2015
1 parent 7260e09 commit 5e78576
Show file tree
Hide file tree
Showing 7 changed files with 555 additions and 0 deletions.
2 changes: 2 additions & 0 deletions napalm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
from fortios import FortiOSDriver
from nxos import NXOSDriver
from ibm import IBMDriver
from ios import IOSDriver

def get_network_driver(vendor):
driver_mapping = {
Expand All @@ -30,6 +31,7 @@ def get_network_driver(vendor):
'FORTIOS': FortiOSDriver,
'NXOS': NXOSDriver,
'IBM': IBMDriver,
'IOS' : IOSDriver,
}
try:
return driver_mapping[vendor.upper()]
Expand Down
Loading

0 comments on commit 5e78576

Please sign in to comment.