From: David Ahern Date: Fri, 24 Sep 2021 02:03:11 +0000 (-0600) Subject: Merge branch 'ax.25-netrom-rose' into next X-Git-Tag: v5.16.0~34 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c8c9111a4cc5a8aafc0f68e4a60e02d654254d59;p=thirdparty%2Fiproute2.git Merge branch 'ax.25-netrom-rose' into next Ralf Baechle says: ==================== net-tools contain support for these three protocol but are deprecated and no longer installed by default by many distributions. Iproute2 otoh has no support at all and will dump the addresses of these protocols which actually are pretty human readable as hex numbers: # ip link show dev bpq0 3: bpq0: mtu 256 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000 link/ax25 88:98:60:a0:92:40:02 brd a2:a6:a8:40:40:40:00 # ip link show dev nr0 4: nr0: mtu 236 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000 link/netrom 88:98:60:a0:92:40:0a brd 00:00:00:00:00:00:00 # ip link show dev rose0 8: rose0: mtu 249 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000 link/rose 65:09:33:30:00 brd 00:00:00:00:00 This series adds basic support for the three protocols to print addresses: # ip link show dev bpq0 3: bpq0: mtu 256 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000 link/ax25 DL0PI-1 brd QST-0 # ip link show dev nr0 4: nr0: mtu 236 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000 link/netrom DL0PI-5 brd * # ip link show dev rose0 8: rose0: mtu 249 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000 link/rose 6509333000 brd 0000000000 ==================== Signed-off-by: David Ahern --- c8c9111a4cc5a8aafc0f68e4a60e02d654254d59