본문 바로가기
OS-OE Knowledge/Linux-Unix KB

RHEL7/Using ifconfig command

by 스쳐가는인연 2019. 5. 18.

RHEL7 을 기본 설치 후 ifconfig 명령을 수행하면 오류가 난다. 더이상 기본 패키지가 아니다.


# ifconfig
-bash: ifconfig: command not found


대신 다른 명령을 통해 확인 가능하다. (Check IP Address)

# ip a s
# ip addr show


# ip -s link


너무 익숙해서 다시 사용하고 싶다면, 설치하면 되는 것~


ifconfig 명령을 사용하기 위해 설치해야 하는 패키지 확인

# yum provides ifconfig

# yum whatprovides ifconfig


필요 패키지 설치

# yum install net-tools


이제 잘 된다.

# ifconfig -a

반응형