I am using netmiko ConnectionHandler to push simple config to a Juniper device. But not sure why its throwing "Timed-out reading channel, data not available." this error. Here is the exact command im using, can someone please help me understand what am i doing wrong?
device = ConnectHandler(device_type="juniper",
host="ip_of_device",
username=username,
password=passwd,
session_timeout=120,
verbose=True)
cmdlist = ['routing-instances {', ' SERVICES {', ' instance-type vrf;', ' no-vrf-advertise;', ' vrf-table-label;', ' }', '}', '']
device.send_config_set(cmdlist, exit_config_mode=False)