mirror of
https://git.proxmox.com/git/mirror_iproute2
synced 2025-08-12 18:18:35 +00:00
iplink: bridge: export bridge_id and designated_root
Netlink returns the bridge_id and designated_root, we just need to make them visible. Signed-off-by: Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
This commit is contained in:
parent
a1987cd17f
commit
70dfb0b883
@ -13,6 +13,7 @@
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <linux/if_link.h>
|
||||
#include <netinet/ether.h>
|
||||
|
||||
#include "rt_names.h"
|
||||
#include "utils.h"
|
||||
@ -39,6 +40,15 @@ static void explain(void)
|
||||
print_explain(stderr);
|
||||
}
|
||||
|
||||
static void br_dump_bridge_id(const struct ifla_bridge_id *id, char *buf,
|
||||
size_t len)
|
||||
{
|
||||
char eaddr[32];
|
||||
|
||||
ether_ntoa_r((const struct ether_addr *)id->addr, eaddr);
|
||||
snprintf(buf, len, "%.2x%.2x.%s", id->prio[0], id->prio[1], eaddr);
|
||||
}
|
||||
|
||||
static int bridge_parse_opt(struct link_util *lu, int argc, char **argv,
|
||||
struct nlmsghdr *n)
|
||||
{
|
||||
@ -155,6 +165,22 @@ static void bridge_print_opt(struct link_util *lu, FILE *f, struct rtattr *tb[])
|
||||
ll_proto_n2a(rta_getattr_u16(tb[IFLA_BR_VLAN_PROTOCOL]),
|
||||
b1, sizeof(b1)));
|
||||
}
|
||||
|
||||
if (tb[IFLA_BR_BRIDGE_ID]) {
|
||||
char bridge_id[32];
|
||||
|
||||
br_dump_bridge_id(RTA_DATA(tb[IFLA_BR_BRIDGE_ID]), bridge_id,
|
||||
sizeof(bridge_id));
|
||||
fprintf(f, "bridge_id %s ", bridge_id);
|
||||
}
|
||||
|
||||
if (tb[IFLA_BR_ROOT_ID]) {
|
||||
char root_id[32];
|
||||
|
||||
br_dump_bridge_id(RTA_DATA(tb[IFLA_BR_BRIDGE_ID]), root_id,
|
||||
sizeof(root_id));
|
||||
fprintf(f, "designated_root %s ", root_id);
|
||||
}
|
||||
}
|
||||
|
||||
static void bridge_print_help(struct link_util *lu, int argc, char **argv,
|
||||
|
Loading…
Reference in New Issue
Block a user