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
This directory contains Scripts which explains how to read Device IP Address and configuration lines from CSV file and configure respective device.
69
+
This directory contains Scripts which explains how to read Device IP Address and configuration lines from CSV file and configure respective devices using Python.
70
70
71
71
* Sample CSV FIle Used for Configuring the Device :
'192.168.0.53': ['terminal len 0', 'config t', 'int gi3', 'no shut'],
95
+
'csr1.test.lab': ['terminal len 0',
96
+
'config t',
97
+
'int gi2',
98
+
'no shut',
99
+
'ip address 2.2.2.2 255.255.255.0',
100
+
'exit',
101
+
'exit',
102
+
'show ip int brie',
103
+
'show run int gi2']}
78
104
```
79
105
80
-
* SSH Keybased Authentication Using Paramiko:
81
-
* Paramiko SSH exec_command Example
82
-
* Paramiko invoke_shell example
83
-
* SSH Password Based Authentication
106
+
*
84
107
85
108
### List of Scripts in the Directory
86
-
```
87
-
01_ssh_host_key_policy.py
88
-
02.1_ssh_key_cisco_exec_command.py
89
-
02.2_ssh_key_cisco_invoke_shell.py
90
-
02.3_ssh_key_cisco_invoke_shell_fn.py
91
-
```
109
+
- 01_config_in_row.csv : How to read Content from CSV file in row format : [Script Demonstration](https://www.youtube.com/watch?v=3XoVPJkHMFU&list=PLOocymQm7YWYpP_Qkju89vN8BykhvWO5U)
92
110
93
111
[Click here for Complete Paramiko Scripts Tutorial Playlist In YouTube :01_Paramiko_Sample_Scripts](https://www.youtube.com/watch?v=A075aWJMAeM&list=PLOocymQm7YWYc73phqzbZ1S3ANrVVpUFN)
0 commit comments