Heads Up :
The post you are writing will appear in a public forum. Please ensure all content is appropriate for public consumption. Review the employee guidelines for the community here.
Your Code: net_connect = ConnectHandler(**cisco_device)
output = net_connect.send_command(cmd)
print(output) Another solution: net_connect = ConnectHandler(**cisco_device)
output = net_connect.send_config_set(cmd)
print(output) It work, at least i...