Last active
June 16, 2025 12:53
-
-
Save DavidWittman/b7a509632ed92fccf237 to your computer and use it in GitHub Desktop.
Revisions
-
DavidWittman revised this gist
Oct 25, 2016 . 1 changed file with 6 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,11 @@ You can find the MAC address for LAN1/eth0 (*not* the BMC MAC) via the SuperMicro IPMI interface by running the following command: ``` bash $ ipmitool -U $IPMI_USER -P $IPMI_PASS -H $IPMI_HOST raw 0x30 0x21 | tail -c 18 ``` The eth0 MAC address will be output in this format: ``` 00 25 90 f0 be ef ``` -
DavidWittman created this gist
Jun 11, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ You can find the MAC address for LAN1/eth0 (*not* the BMC MAC) via the SuperMicro IPMI interface by running the following command: ``` bash $ ipmitool -U <redacted> -P <redacted> -H 10.4.0.10 raw 0x30 0x21 | tail -c 18 00 25 90 f0 be ef ```