目的
netmikoを使って、ネットワーク(Huaweiスイッチ)の設定変更を自動化したい。
現状
以下のエラー文が表示され、プログラムが正常に起動しない。
エラー文
Traceback (most recent call last): File "lab-2.py", line 18, in <module> net_connect.send_config_set(config_commands) NameError: name 'net_connect' is not defined (パス)>python lab-2.py Traceback (most recent call last): File "(パス)\channel.py", line 699, in recv out = self.in_buffer.read(nbytes, self.timeout) File "(パス)\buffered_pipe.py", line 164, in read raise PipeTimeout() paramiko.buffered_pipe.PipeTimeout During handling of the above exception, another exception occurred: Traceback (most recent call last): File "(パス)\base_connection.py", line 541, in _read_channel_expect new_data = self.remote_conn.recv(MAX_BUFFER) File "(パス)\channel.py", line 701, in recv raise socket.timeout() socket.timeout During handling of the above exception, another exception occurred:
コード
from netmiko import ConnectHandler my_device = { "device_type": "huawei", "ip": "xxx,xxx,xxx,xxx", "username": "xxxxx", "password": "xxxxx", "secret": "xxxxx", } net_connect = ConnectHandler(**my_device) net_connect.enable() config_commands = ["system-view", "sysname LAB-1"] net_connect.send_config_set(config_commands) output = net_connect.send_command("display current-configuration interface 10ge 1/0/1") print(output) net_connect.disconnect()
※以下のコードを消すと正常にプログラムが動きます。確認コマンドだけであれば、想定通り動くのですが、設定変更のコマンドを記載すると、エラーになります。因みに以下のコマンドは、ciscoでいう"configure terminal", "hostname LAB-1"でございます。
config_commands = ["system-view", "sysname LAB-1"] net_connect.send_config_set(config_commands)
どなたかアドバイスだけでもいただけないでしょうか。
全く原因が掴めず、意味不明です(T_T)
つらたん。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/03/05 13:18
2020/03/14 12:45