Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save sfoolish/3750673043502a9f4d8b37f719584743 to your computer and use it in GitHub Desktop.

Select an option

Save sfoolish/3750673043502a9f4d8b37f719584743 to your computer and use it in GitHub Desktop.

Revisions

  1. @DavidWittman DavidWittman revised this gist Oct 25, 2016. 1 changed file with 6 additions and 1 deletion.
    7 changes: 6 additions & 1 deletion supermicro-ipmi-mac-address.md
    Original 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 <redacted> -P <redacted> -H 10.4.0.10 raw 0x30 0x21 | tail -c 18
    $ 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
    ```
  2. @DavidWittman DavidWittman created this gist Jun 11, 2014.
    6 changes: 6 additions & 0 deletions supermicro-ipmi-mac-address.md
    Original 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
    ```