1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-16 23:15:41 +02:00
tldr/pages.ko/linux/ip-address.md

29 lines
762 B
Markdown
Raw Normal View History

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