You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15-3Lines changed: 15 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,9 @@ It checks if the file already exists on the remote devices and compares the chec
8
8
9
9
If you have a large number of network devices and need to upload a big file, like a new OS or similar, to all these devices, it can be very time-consuming. This script takes care of everything.
10
10
11
-
Supported devices are: Cisco IOS/IOS-XE/IOS-XR/NX-OS, Arista EOS, and Juniper JunOS.
11
+
Supported devices are: Cisco IOS*/IOS-XE/IOS-XR/NX-OS, Arista EOS, and Juniper JunOS.
12
+
13
+
Remark: on Cisco IOS, only ascii files are supported. Modern Cisco OS (XE, XR, NXOS) are not affected.
12
14
13
15
14
16
## Installation
@@ -25,15 +27,25 @@ Installation:
25
27
26
28
Update the **hosts.csv** file with the list of your network hosts and vendor type.
Vendor types are: cisco_ios (valid for IOS/IOS-XE/IOS-XR), cisco_nxos, arista_eos, juniper_junos
29
31
30
32
Example of hosts.csv:
31
33
32
34
host01.example.com,cisco_ios
33
35
host02.example.com,cisco_nxos
36
+
host03.example.com,arista_eos
37
+
host04.example.com,juniper_junos
38
+
39
+
40
+
The file system used for each device type is the one defined by default in Netmiko:
41
+
42
+
Cisco IOS/IOS-XE/IOS-XR Auto detects the file-system
43
+
Cisco NX-OS bootflash:
44
+
Arista EOS /mnt/flash
45
+
Juniper Junos /var/tmp
34
46
35
47
36
-
The file system used for each OS type is the one defined by default in Netmiko. Please refer to the Netmiko documentation here: https://pynet.twb-tech.com/blog/automation/netmiko-scp.html
48
+
Please refer to the Netmiko documentation here for more information: https://pynet.twb-tech.com/blog/automation/netmiko-scp.html
0 commit comments