BLOG main image
분류 전체보기 (781)
LENOVO (19)
HP (3)
DELL (7)
IBM (32)
My Retain Tip (697)
자료실 (0)
Firmware (5)
기타서버관련소식 (5)
IBM Server Picture (3)
STUDY (2)
설정세팅 (0)
Visitors up to today!
Today hit, Yesterday hit
daisy rss
tistory 티스토리 가입하기!
2021. 5. 21. 23:32
Notice!!
IBM
본 블로그의 모든내용은 ibm.com에 있는 내용이며 본 블로그의 내용은 증빙내용으로는 활용 불가능합니다
주의! 모든 방문자는 공지를 반드시 읽어본 후 글을 읽으시기 바랍니다.:*필독공지*

딴지 거실분들은 절대 읽지 마시고 100% 정확한 정보가 있는 ibm.com 에서 확인하시기 바랍니다.

Convert the VPD-related information from ASCII to hexadecimal

  1. Convert the ASCII characters to a space-delimited group of hex bytes.
    Example:
    J1234567 converted to hexadecimal is 4a 31 32 33 34 35 36 37
  2. Take each of those bytes and add 0x to the front.
    Example:
    4a 31 32 33 34 35 36 37 becomes 0x4a 0x31 0x32 0x33 0x34 0x35 0x36 0x37
  3. Repeat these steps for the System Serial number, Machine Type / Model, Asset ID, and Product Description.
  4. The UUID is already written in hexadecimal bytes, so just add 0x before each pair of characters.

Perform the VPD update

  1. Download the IPMI tool.
  2. Open a command prompt and navigate to the directory where you extracted the IPMI tool. Or if you already have an IPMI tool, you can go there.
  3. To update the VPD, run one of the commands set out below with root privileges.
    Note:
    - The blue text in the example command is the universal part of the RAW command, which should not be changed.
    - The red text in the example command is the unique system data, which should be changed to the hexadecimal values specific to your server.
    - In the example commands shown below, the IP address is 10.10.0.1, the user name is USERID, and password is PASSW0RD.

a. Use the following command to update the serial number
ipmitool -H "HOST IP" -U "USERID" -P "PASSWORD" -I lanplus raw 0x3c 0x6b 0xf3 0x01 0x00

Example command for a serial number of J1234567:

ipmitool -H 10.10.0.1 -U USERID -P PASSW0RD -I lanplus raw 0x3c 0x6b 0xf3 0x01 0x00 0x4a 0x31 0x32 0x33 0x34 0x35 0x36 0x37

b. Use the following command to update the Machine Type/ Model
ipmitool -H "HOST IP" -U "USERID" -P "PASSWORD" -I lanplus raw 0x3c 0x6b 0xe9 0x01 0x00

Example command for a machine type of 7Z01CTO1WW:

ipmitool -H 10.10.0.1 -U USERID -P PASSW0RD -I lanplus raw 0x3c 0x6b 0xe9 0x01 0x00 0x37 0x5a 0x30 0x31 0x43 0x54 0x4f 0x31 0x57 0x57

c. Use the following command to update the asset ID
ipmitool -H "HOST IP" -U "USERID" -P "PASSWORD" -I lanplus raw 0x3c 0x6b 0x1c 0x00 0x00

Example command for an asset ID of 0000000000:

ipmitool -H 10.10.0.1 -U USERID -P PASSW0RD -I lanplus raw 0x3c 0x6b 0x1c 0x00 0x00 0x30 0x30 0x30 0x30 0x30 0x30 0x30 0x30 0x30 0x30

d. Use the following command to update the machine description
ipmitool -H "HOST IP" -U "USERID" -P "PASSWORD" -I lanplus raw 0x3c 0x6b 0x0e 0x01 0x00

Example command for a machine description of Thinksystem SR635:

ipmitool -H 10.10.0.1 -U USERID -P PASSW0RD -I lanplus raw 0x3c 0x6b 0x0e 0x01 0x00 0x54 0x68 0x69 0x6e 0x6b 0x53 0x79 0x73 0x74 0x65 0x6d 0x20 0x53 0x52 0x36 0x33 0x35

e. Use the following command to update the UUID
ipmitool -H "HOST IP" -U "USERID" -P "PASSWORD" -I lanplus raw 0x3c 0x6b 0x9f 0x00 0x00

Example command for a UUID of 7D2F0A98712A11EA816700000000003C:

ipmitool -H 10.10.0.1 -U USERID -P PASSW0RD -I lanplus raw 0x3c 0x6b 0x9f 0x00 0x00 0x7d 0x2f 0xa 0x98 0x71 0x2a 0x11 0xea 0x81 0x67 0x0 0x0 0x0 0x0 0x0 0x3c

Note: For UUID, just add 0x before each pair of characters.

 

IPMITOOL 파일입니다

윈도우 1.8.18버전

ipmitool.zip
3.38MB

 

 

리눅스 버전

https://github.com/ipmitool/ipmitool

About
IBM 최신서버에 관련된 경험과 지식을 공유하는 블로그이며 블로그에 처음오신분은 *필독공지*를 꼭 먼저 읽어보시기 바랍니다.