#### python 이용(IP에 대한 절대값) ####
- hostid 확인법 -
# hostid
007f0100
- 서비스 IP에 대한 hostid 16진수로 변환
# gethostip 192.168.253.50
C0A8FD32
- 변환된 ID를 변경 (2-1-4-3순으로 변경)
C0 A8 FD 32 -> A8 C0 32 FD
# vi hostid.py
from struct import pack
filename = "/etc/hostid"
hostid = pack("I",int("0xA8C032FD",16)) // 0x 부분에 변경한 16진수 값 입력
open(filename,"wb").write(hostid)
- hostid 값 적용 및 확인
# python hostid.py
# hostid
'Linux > CentOS & RHEL' 카테고리의 다른 글
[Tip] TCPWRAPPER 설정 (0) | 2020.08.27 |
---|---|
[Bonding] CentOS / RHEL bonding 구성 (0) | 2020.08.20 |
[Tip] RPM 명령 및 옵션 (0) | 2020.08.18 |
[Tip] ssh만 되는 계정과 sftp만 되는 계정 생성(특정제한계정) (0) | 2020.08.10 |
[Tip] RHEL7.x / CentOS7.x 관련(Command) (0) | 2020.07.31 |