Scrapli を非同期実行するサンプル

以前に ネットワーク機器の操作を自動化する scrapli の基本的な使い方 というメモを書きました。 Scrapli を非同期処理する例は scrapli/examples/async_usage/async_multiple_connections.py にあります。 これを「不要な警告を表示しない」等、多少修正したスクリプト例をメモしておきます。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/env python3

import asyncio
import warnings

from scrapli.driver.core import AsyncIOSXEDriver

warnings.filterwarnings("ignore")

ADDRESSES = ["10.0.0.1", "10.0.0.2", "10.0.0.3"]
USERNAME = "admin"
PASSWORD = "password"


async def execute_command(device):
    driver = device.pop("driver")
    conn = driver(**device)
    await conn.open()
    prompt_result = await conn.get_prompt()
    version_result = await conn.send_command("show clock")
    await conn.close()
    return prompt_result, version_result


async def main():
    devices = []
    for address in ADDRESSES:
        devices.append(
            {
                "host": address,
                "auth_username": USERNAME,
                "auth_password": PASSWORD,
                "auth_strict_key": False,
                "transport": "asyncssh",
                "driver": AsyncIOSXEDriver,
            }
        )
    coroutines = [execute_command(device) for device in devices]
    results = await asyncio.gather(*coroutines)
    for result in results:
        print(f"device prompt: {result[0]}")
        print(f"device result: {result[1].result}")


if __name__ == "__main__":
    asyncio.run(main())

実行例は以下の通りです。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
# time ./scrapli-async.py
device prompt: Router1#
device result: *11:26:03.756 JST Fri May 20 2022
device prompt: Router2#
device result: *11:26:06.600 JST Fri May 20 2022
device prompt: Router3#
device result: *11:26:20.289 JST Fri May 20 2022

real 0m0.621s
user 0m0.467s
sys 0m0.054s