mirror of
https://git.proxmox.com/git/mirror_iproute2
synced 2025-12-03 00:47:26 +00:00
If we have multicast routes and do ip route show table all we'll get the following output: ... multicast ???/32 from ???/32 table default proto static iif eth0 The "???" are because the rtm_family is set to RTNL_FAMILY_IPMR instead (or RTNL_FAMILY_IP6MR for ipv6). Add a simple workaround that returns the real family based on the rtm_type (always RTN_MULTICAST for ipmr routes) and the rtm_family. Similar workaround is already used in ipmroute, and we can use this helper there as well. After the patch the output is: multicast 239.10.10.10/32 from 0.0.0.0/32 table default proto static iif eth0 Also fix a minor whitespace error and switch to tabs. Reported-by: Satish Ashok <sashok@cumulusnetworks.com> Signed-off-by: Nikolay Aleksandrov <nikolay@cumulusnetworks.com> |
||
|---|---|---|
| .. | ||
| iptables | ||
| libiptc | ||
| linux | ||
| netinet | ||
| bpf_api.h | ||
| bpf_elf.h | ||
| bpf_scm.h | ||
| color.h | ||
| dlfcn.h | ||
| ip6tables.h | ||
| iptables_common.h | ||
| iptables.h | ||
| json_writer.h | ||
| libgenl.h | ||
| libnetlink.h | ||
| list.h | ||
| ll_map.h | ||
| names.h | ||
| namespace.h | ||
| rt_names.h | ||
| rtm_map.h | ||
| SNAPSHOT.h | ||
| utils.h | ||
| xt-internal.h | ||
| xtables.h | ||