linux/b*: add Korean translation (#14681)

This commit is contained in:
코드싸이
2024-11-08 15:53:25 +09:00
committed by GitHub
parent 53b2ce7e7f
commit 781a19fc2e
39 changed files with 909 additions and 0 deletions

24
pages.ko/linux/brctl.md Normal file
View File

@@ -0,0 +1,24 @@
# brctl
> Ethernet 브리지 관리 도구.
> 더 많은 정보: <https://manned.org/brctl>.
- 현재 존재하는 Ethernet 브리지에 대한 정보를 나열:
`sudo brctl show`
- 새 Ethernet 브리지 인터페이스 생성:
`sudo brctl add {{브리지_이름}}`
- 기존 Ethernet 브리지 인터페이스 삭제:
`sudo brctl del {{브리지_이름}}`
- 기존 브리지에 인터페이스 추가:
`sudo brctl addif {{브리지_이름}} {{인터페이스_이름}}`
- 기존 브리지에서 인터페이스 제거:
`sudo brctl delif {{브리지_이름}} {{인터페이스_이름}}`