A solução que sugiro é chamar um script em anexo que analise o endereço mac e renomeie o dispositivo.
attach 0 { device-name "(ue)[0-9]+"; action "yourscript $device-name"; };
Não testado:
#!/bin/sh MAC='ifconfig $1 | grep ether' INBOUND_MAC="foo" OUTBOUND_MAC="bla" if [ "$MAC" == "$INBOUND_MAC" ]; then ifconfig $1 name inbound else ifconfig $2 name outbound fi