본문 바로가기
Linux/운영

[Linux] MAC Address 확인 방법

by A6K 2022. 2. 23.

리눅스에서 MAC 주소를 조회해보자.

1. ifconfig 명령

ifconfig 명령으로 MAC 주소를 조회하려는 인터페이스를 입력하고, ether 문자열로 grep 하면 맥 주소를 알 수 있다.

user@myhost:~$ ifconfig etho0 | grep ether
        ether 00:15:7d:32:e5:63  txqueuelen 1000  (Ethernet)

ether 뒤 쪽에 출력되는 '00:15:7d:32:e5:63' 문자열이 MAC 주소다

2. ip address 명령

ip address 명령으로 조회할 수도 있다.

user@myhost:~$ ip address show eth0 | grep ether
    link/ether 00:15:7d:32:e5:63 brd ff:ff:ff:ff:ff:ff

3. ip link 명령

ip link명령으로 조회할 수도 있다.

user@myhost:~$ ip link show eth0 | grep ether
    link/ether 00:15:7d:32:e5:63 brd ff:ff:ff:ff:ff:ff

댓글