Different formatting options for Mac Addresses. #5746
Replies: 4 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.
-
Why not just add another option here? |
Beta Was this translation helpful? Give feedback.
-
I will do it. Closing here, opening feature request in mactrack |
Beta Was this translation helpful? Give feedback.
-
fixed here Cacti/plugin_mactrack#253 |
Beta Was this translation helpful? Give feedback.
-
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