Different formatting options for Mac Addresses. #5746
Closed
AdamMason1877
started this conversation in
Ideas
Replies: 3 comments
-
Mactrack has only "Mac Address Delimiter" in settings. If you want to extend setting for mac address format and display mac address in configured format, your pull request is welcome. I suggest to preserve current format in database, use custom format only for view, email and reports. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Why not just add another option here? |
Beta Was this translation helpful? Give feedback.
0 replies
-
I will do it. Closing here, opening feature request in mactrack |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Currently in order to search our network cores, Cisco based, for the mac addresses under mac tracker, we have to change the mac address format to xxxx.xxxx.xxxx manually because it is not output as such in Mac Track exports.
Currently to work around this I use Excel formula,
=SUBSTITUTE(MID(F2,1,2)&MID(F2,4,2),"-", ".") & "." & SUBSTITUTE(MID(F2,7,2)&MID(F2,10,2),"-", ".") & "." & SUBSTITUTE(MID(F2,13,2)&MID(F2,16,2),"-", ".")
F2 in this case being the cell name of the original mac value. Is there a location in settings that specifies mac formatting? If not, where is the code, I would like to push this option to the repository.
Beta Was this translation helpful? Give feedback.
All reactions