Files
third_party_libnl/libnl/python/tests/test-create-bridge.py
Jinguang Dong dae51a5a05 - Description:[feature] libnl build optimization: import libnl 3_11_0 upstream
- Bug: #43
- Test: calculate the SHA256 checksum for the libnl upstream tarball and compare
it with the upstream SHA256 value

Signed-off-by: Jinguang Dong <dongjinguang@huawei.com>
2026-07-02 15:17:27 +08:00

30 lines
596 B
Python

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))