第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何在 python (netmiko) 中從循環(huán)中獲取多個(gè)輸出到外部

如何在 python (netmiko) 中從循環(huán)中獲取多個(gè)輸出到外部

互換的青春 2023-05-23 10:47:42
我是蟒蛇的新手。我有使用 netmiko 在多個(gè)交換機(jī)上運(yùn)行多個(gè)“顯示命令”的代碼,當(dāng)一切都在循環(huán)中時(shí)它工作正常。但是當(dāng)我想通過將其分配為變量并打印它來將多個(gè)“顯示命令”的輸出帶到循環(huán)外時(shí),只打印輸出之一。S1 = {    'device_type': 'cisco_ios',    'ip': '192.168.0.56',    'username': 'admin',    'password': 'admin'    }S2= {    'device_type': 'cisco_ios',    'ip': '192.168.0.57',    'username': 'admin',    'password': 'admin'    }all_devices = [S1,S2]for devices in all_devices:    print("\nLogging into the switch...")    net_connect = ConnectHandler(**devices)    net_connect.enable()    cmd = ["show vlan brief", "\n","\n","show ip interface brief"]    for show in cmd:        output=net_connect.send_command(show)        y = outputprint(y)
查看完整描述

1 回答

?
喵喔喔

TA貢獻(xiàn)1735條經(jīng)驗(yàn) 獲得超5個(gè)贊

嘗試這個(gè):


S1 = {

    'device_type': 'cisco_ios',

    'ip': '192.168.0.56',

    'username': 'admin',

    'password': 'admin'

    }


S2= {

    'device_type': 'cisco_ios',

    'ip': '192.168.0.57',

    'username': 'admin',

    'password': 'admin'

    }


all_devices = [S1,S2]


y = []


for devices in all_devices:

    print("\nLogging into the switch...")

    net_connect = ConnectHandler(**devices)

    net_connect.enable()

    cmd = ["show vlan brief", "\n","\n","show ip interface brief"]

    for show in cmd:

        output=net_connect.send_command(show)

        y.append(output)


for x in y:

    print(x)


查看完整回答
反對(duì) 回復(fù) 2023-05-23
  • 1 回答
  • 0 關(guān)注
  • 138 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)