/
auroraos
/
mirror_libnl
Обзор
Документация
Войти
/
auroraos
/
mirror_libnl
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
python/tests/test-create-bridge.py
29 строк
596 B
Thomas Haller
python: reformat all Python files with python-black
25 июл 2023, 14:32
Не верифицирован
25 июл 2023, 14:32
3c753e3
Код
Авторство
О чём код?
from __future__ import print_function import netlink.core as netlink import netlink.route.capi as capi import netlink.route.link as link sock = netlink.lookup_socket(netlink.NETLINK_ROUTE) cache = link.LinkCache() cache.refill(sock) testtap1 = cache["testtap1"] print(testtap1) lbr = link.Link() lbr.type = "bridge" lbr.name = "testbridge" print(lbr) lbr.add() cache.refill(sock) lbr = cache["testbridge"] print(lbr) lbr.enslave(testtap1) cache.refill(sock) testtap1 = cache["testtap1"] print(capi.rtnl_link_is_bridge(lbr._rtnl_link)) print(capi.rtnl_link_get_master(testtap1._rtnl_link))