ifstat: fix typo, linux/i*: add Korean translation (#14706)

* linux/i*: add Korean translation

* ifstat: fix typo
This commit is contained in:
코드싸이
2024-11-09 13:27:36 +09:00
committed by GitHub
parent 65635e8a74
commit 340dd5cc12
51 changed files with 1171 additions and 1 deletions

View File

@@ -0,0 +1,28 @@
# 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}}`