from netmiko import (
ConnectHandler,
NetmikoTimeoutException,
NetmikoAuthenticationException,
)
def connect_my_sql(ip_device):
with ConnectHandler(device_type= 'linux', host= '1.1.1.1', username= 'login', password= 'password') as ssh:
ssh.enable()
output = ssh.send_command('sqlite3 my.db')
return output
这是我的代码,我只想用 Ubuntu 连接到我的电脑,你能帮帮我吗
我在我的代码中找不到问题我知道 netmiko 有 linyx 设备类型,所以我认为他们可以连接到主机