1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.ko/linux/ip-address.md

29 lines
714 B
Markdown
Raw Normal View History

# ip address
> IP 주소 관리 하위 명령어.
> 더 많은 정보: <https://manned.org/ip-address>.
- 네트워크 인터페이스와 해당 IP 주소 나열:
`ip address`
- 활성 네트워크 인터페이스만 표시하도록 필터링:
`ip address show up`
- 특정 네트워크 인터페이스에 대한 정보 표시:
`ip address show dev {{eth0}}`
- 네트워크 인터페이스에 IP 주소 추가:
`ip address add {{ip_주소}} dev {{eth0}}`
- 네트워크 인터페이스에서 IP 주소 제거:
`ip address delete {{ip_주소}} dev {{eth0}}`
- 지정된 범위의 모든 IP 주소를 네트워크 인터페이스에서 삭제:
`ip address flush dev {{eth0}} scope {{global|host|link}}`