Index: sbin/ifconfig/af_link.c =================================================================== --- sbin/ifconfig/af_link.c (revision 195818) +++ sbin/ifconfig/af_link.c (working copy) @@ -57,6 +57,10 @@ /* XXX no const 'cuz LLADDR is defined wrong */ struct sockaddr_dl *sdl = (struct sockaddr_dl *) ifa->ifa_addr; + if (sdl != NULL && sdl->sdl_type == IFT_CARP) + printf("\tether %s\n", + ether_ntoa((struct ether_addr *)LLADDR(sdl))); + if (sdl != NULL && sdl->sdl_alen > 0) { if (sdl->sdl_type == IFT_ETHER && sdl->sdl_alen == ETHER_ADDR_LEN)