취미와 밥줄사이

[ ipmitool ] ipmitool_BMC Interface 확인방법 본문

OS/Linux

[ ipmitool ] ipmitool_BMC Interface 확인방법

취미와 밥줄사이 2025. 4. 16. 10:29

BMC 내부 인터페이스 확인방법

LAN 인터페이스 (네트워크 연결 가능/BMC (X))

ipmitool channel info 1

출력예시

Channel number             : 1
Channel medium type        : 802.3 LAN
Channel protocol type      : IPMB-1.0
Session support            : multi-session
Active session count       : 1
  • Channel medium type: 802.3 LAN → 이 채널은 네트워크(LAN) 인터페이스
  • ipmitool lan print 1 명령어로 네트워크 설정을 확인할 수 있음

BMC 내부 인터페이스 (네트워크 X / BMC (O))

ipmitool channel info 2

출력 예시:

Channel number             : 2
Channel medium type        : System Interface
Channel protocol type      : KCS
Session support            : single-session
Active session count       : 0

  • Channel medium type: System Interface → 이 채널은 BMC 내부에서 CPU와 직접 통신하는 채널
  • LAN과 무관하며, ipmitool lan print 2 실행 시 오류 발생 가능

결론

  • Channel medium type: 802.3 LAN → 네트워크(LAN) 인터페이스
  • Channel medium type: System Interface → BMC 내부 채널 (서버 내부에서 BMC와 직접 통신)
  • ipmitool lan print <채널> 실행 전에 LAN 인터페이스인지 먼저 확인하는 것이 중요