2021년 10월 25일 11시 20분부터 최대 12시 45분까지 KT 통신사 인터넷이 안되는 큰 대란이 시작되었다. 초기에는 EMP, 화재, 디도스 등 다양한 설이 있었지만 알고 보니 원인은 KT 내부적 라우팅 설정 문제였다.
“서울에서 부산으로 가는 길은 매우 많다. 하지만 서울에서 부산으로 가는 길을 한 곳으로만 전국민이 다닐 수 있도록 (설정)하여 길이 막히는 현상”과 같은 트래픽 과부하가 발생하여 DNS 지연이 발생하였다.
PC 카카오톡 서비스는 DNS 다중화를 하여 정상적으로 서비스를 운행하였다.

컴퓨터 IP 설정
#pc1
ip 192.168.1.1 255.255.255.0 192.168.1.254
#pc4
ip 192.168.2.1 255.255.255.0 192.168.2.254
#pc3
ip 192.168.3.1 255.255.255.0 192.168.3.254
#pc2
ip 192.168.4.1 255.255.255.0 192.168.4.254
라우터 설정
#R1
config t
interface fastethernet 0/0
ip address 192.168.1.254 255.255.255.0
no shutdown
exit
interface serial1/0
ip address 1.1.1.1 255.255.255.252
no shutdown
exit
interface serial1/1
ip address 4.4.4.2 255.255.255.252
no shutdown
exit
ip route 192.168.2.0 255.255.255.0 1.1.1.2
ip route 192.168.4.0 255.255.255.0 4.4.4.1
ip route 192.168.3.0 255.255.255.0 1.1.1.2
ip route 192.168.3.0 255.255.255.0 4.4.4.1
#R4
config t
interface fastethernet 0/0
ip address 192.168.2.254 255.255.255.0
no shutdown
exit
interface serial1/0
ip address 1.1.1.2 255.255.255.252
no shutdown
exit
interface serial1/1
ip address 2.2.2.1 255.255.255.252
no shutdown
exit
ip route 192.168.1.0 255.255.255.0 1.1.1.1
ip route 192.168.3.0 255.255.255.0 2.2.2.2
ip route 192.168.4.0 255.255.255.0 1.1.1.1
ip route 192.168.4.0 255.255.255.0 2.2.2.2
#R3
config t
interface fastethernet 0/0
ip address 192.168.3.254 255.255.255.0
no shutdown
exit
interface serial1/0
ip address 3.3.3.1 255.255.255.252
no shutdown
exit
interface serial1/1
ip address 2.2.2.2 255.255.255.252
no shutdown
exit
ip route 192.168.4.0 255.255.255.0 3.3.3.2
ip route 192.168.2.0 255.255.255.0 3.3.3.2
ip route 192.168.2.0 255.255.255.0 2.2.2.1
ip route 192.168.1.0 255.255.255.0 2.2.2.1
#R2
config t
interface fastethernet 0/0
ip address 192.168.4.254 255.255.255.0
no shutdown
exit
interface serial1/0
ip address 3.3.3.2 255.255.255.252
no shutdown
exit
interface serial1/1
ip address 4.4.4.1 255.255.255.252
no shutdown
exit
ip route 192.168.3.0 255.255.255.0 3.3.3.1
ip route 192.168.1.0 255.255.255.0 4.4.4.2
ip route 192.168.2.0 255.255.255.0 3.3.3.1
ip route 192.168.2.0 255.255.255.0 4.4.4.2