mtu 값 변경하여 막힌 싸이트에 접속하기


1)cmd.exe를 관리자 권한으로 실행
2)현재 랜카드 상태 확인
netsh interface ipv4 show interface
**이더넷 색인 번호(10) 기억하여 아래 4번에서 사용한다
**mtu 값이 보통 1500으로 되어 있는데, 이 값을 400으로 변경하는 작업을 한다

3)최소 설정 가능한 mtu 값을 352로 설정하기
netsh interface ip set global minmtu=352

4)mtu 값을 400으로 설정하기
netsh interface ipv4 set subinterface “10” mtu=400 store=persistent

5)chrome 브라우저를 사용하여 차단된 https 싸이트에 접속하면 된다

** 참고로 Mac에서는 mtu 값을 500으로 설정한다
sudo ifconfig en0 mtu 500
참고 영상: https://youtu.be/3K8w2EKxapU

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s