반응형
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.
net-tools 패키지 install 방법.
- ubuntu OS
aurumguide@aurum-ubuntu:$ sudo apt install net-tools
- CentOS
aurumguide@aurum-CentOS:$ sudo yum install net-tools
Ubuntu에서 IP 확인할 수 있는 명령어
- ifconfig 명령어로 확인 방법.
aurumguide@aurum-ubuntu:$ ifconfig
- ip addr 명령어로 확인 방법.
aurumguide@aurum-ubuntu:$ ip addr
- ip a 명령어로 확인 방법.
aurumguide@aurum-ubuntu:$ ip a
- hostname -I 명령어로 확인 방법.
aurumguide@aurum-ubuntu:$ hostname -I
반응형