Netmiko.. How do you source your SSH or Telnet session from a Multi server interface

The below won’t work cause it’ taking the wrong interface.

rom netmiko import ConnectHandler

cisco_881 = {
‘device_type’: ‘cisco_ios’,
‘host’: ‘192.168.2.241’,
‘username’: ‘admin’,
‘password’: ‘admin’,
‘port’: 22, # optional, defaults to 22
‘secret’: ‘admin’, # optional, defaults to ‘’
}

net_connect = ConnectHandler(**cisco_881)
output = net_connect.send_command(‘show interface’)
print(output)

Hi Joseph,

You have posted this question under the Python Software Foundation
category, which is about legal and copyright issues for the PSF. It is
off-topic for this category. You might get more responses if you post
under the Users category, which is the first item shown in the list
here:

https://discuss.python.org/

Can you help us to help people in the future? Is there something we can
do to make it more obvious that the PSF category is not for technical
questions about programming Python? What could we have done to help you
choose the right category?

Thank you sir!!!