본문 바로가기
OS/Ubuntu

Linux Ubuntu IP 확인하는 방법 및 설명

by 아우럼 2024. 10. 7.
반응형

Linux 계열인 CentOS, Ubuntu OS 최신 설치 후 ifconfig 명령어 이용해서 IP 확인하는 방법을 알아보겠습니다.

 

CentOS, Ubuntu에서 ifconfig 명령어 설명

  • Mac OS는 최신 설치 후 ifconfig 명령어 사용할 수 있습니다.
  • 그러나 Linux 계열인 CentOS, Ubuntu는 최초 설치할 때 ifconfig 명령어를 사용할 수 없습니다.
  • 물론 Windows 계열은 Ipconfig 명령어로 확인할 수 있습니다.

ifconfig 명령어 활성화 방법

net-tools 패키지 설치하면 ifconfig 명령어로 IP를 확인할 수 있습니다.

ifconfig 명령어 에러, command 'ifconfig' not found, but can be installed with.

command 'ifconfig' not found, but can be installed with.
command 'ifconfig' not found, but can be installed with.

net-tools 패키지 install 방법.

  • ubuntu OS
aurumguide@aurum-ubuntu:$ sudo apt install net-tools

net-tools
net-tools

  • CentOS
aurumguide@aurum-CentOS:$ sudo yum install net-tools

Ubuntu에서 IP 확인할 수 있는 명령어

  • ifconfig 명령어로 확인 방법.
aurumguide@aurum-ubuntu:$ ifconfig

ifconfig
ifconfig

  • ip addr 명령어로 확인 방법.
aurumguide@aurum-ubuntu:$ ip addr

ip addr
ip addr

  • ip a 명령어로 확인 방법.
aurumguide@aurum-ubuntu:$ ip a

ip a
ip a

  • hostname -I 명령어로 확인 방법.
aurumguide@aurum-ubuntu:$ hostname -I

hostname -I
hostname -I

반응형