diff options
Diffstat (limited to 'sys/net')
-rw-r--r-- | sys/net/if_ethersubr.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/net/if_ethersubr.c b/sys/net/if_ethersubr.c index 16d8f52..4f7ac0f 100644 --- a/sys/net/if_ethersubr.c +++ b/sys/net/if_ethersubr.c @@ -868,6 +868,9 @@ ether_ifattach(struct ifnet *ifp, const u_int8_t *llc) (*ng_ether_attach_p)(ifp); if (BDG_LOADED) bdgtakeifaces_ptr(); + + /* Announce Ethernet MAC address. */ + if_printf(ifp, "Ethernet address: %6D\n", llc, ":"); } /* |