C.W.K.
Stream
Lesson 13 of 14 · published

Thunderbolt Bridge

~12 min · thunderbolt, bridge, p2p, static-ip

Level 0Pinger
0 XP0/101 lessons0/12 achievements
0/150 XP to next level150 XP to go0% complete

지을 가장 빠른 LAN

Thunderbolt 케이블로 두 맥 연결하면 macOS 가 양쪽에 자동으로 Thunderbolt Bridge 네트워크 인터페이스 제시. Throughput 이 staggering — iperf3 가 보통 20–30 Gbps 보고, 실제 파일 전송이 2–3 GB/s (디스크 제한, 네트워크 제한 X).

셋업이 두 명령

케이블 연결 순간 Thunderbolt Bridge 가 System Settings → Network 에 나타남. 디폴트로 link-local 주소지정 (169.254.x.x) 자동 설정. 예측 가능한 사용엔 static IP 수동 — 케이블이 point-to-point, 두 사용 가능 주소의 /30 충분.

Code

양쪽에 static IP·bash
# On Mac A
sudo networksetup -setmanual "Thunderbolt Bridge" 10.10.10.1 255.255.255.252

# On Mac B
sudo networksetup -setmanual "Thunderbolt Bridge" 10.10.10.2 255.255.255.252

# Verify
ifconfig | grep -A 2 'Thunderbolt'

# Test
ping 10.10.10.2   # from Mac A
ping 10.10.10.1   # from Mac B

# Throughput test
iperf3 -s         # on Mac A
iperf3 -c 10.10.10.1 -P 4   # on Mac B
# Expect 20-30 Gbps
~/.ssh/config 에 추가·ssh-config
Host office.tb
    HostName 10.10.10.1
    User you_username

Host server.tb
    HostName 10.10.10.2
    User you_username

External links

Exercise

Thunderbolt 포트 있는 두 맥과 TB3/TB4 케이블 있으면 연결. 위처럼 static IP 설정. Ping 테스트. Bridge 너머 iperf3 — 어처구니없는 속도 메모. ~/.ssh/config.tb alias 추가 — 두 specific 맥 사이 가장 빠른 path 위해 ssh office.tb (마이그레이션이나 임시 빠른 전송에 좋음).

Progress

Progress is local-only — sign in to sync across devices.
이 페이지에서 버그를 발견하셨거나 피드백이 있으세요?문제 신고

댓글 0

🔔 답글 알림 (로그인 필요)
로그인댓글을 남기려면 로그인해 주세요.

아직 댓글이 없어요. 첫 댓글을 남겨보세요.