# 리눅스에선 예전에는 ip 확인을 위해서 /sbin/ifconfig 를 사용했다.
# ifconfig 가 없다면 net-tools 패키지를 설치하면 된다.
yum install net-tools
# 이제는 /sbin/ip 를 사용한다.
# ip 가 없다면 다음과 iproute 패키지를 설치하면 된다.
yum install iproute
# ifconfig 명령은
ip addr
# route 명령은
ip route
# arp 명령은
ip neigh
# netstat 명령은
ss
# 참고 https://en.wikipedia.org/wiki/Iproute2
comments:
댓글 쓰기