"이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다."


[Linux] 우분투에서 DNS 캐시 조회 및 삭제하기
728x90

 

우분투에서 DNS 캐시를 조회하고 삭제하는 명령어를 알아보겠습니다.

 

DNS 캐시 조회

DNS 캐시는 다음과 같이 systemd-resolve 명령어를 사용하면 됩니다. Current Cache Size가 현재 캐싱되어 있는 있는 DNS 캐시라고 보시면 됩니다.

$ sudo systemd-resolve --statistics
DNSSEC supported by current servers: no

Transactions                
Current Transactions: 0     
  Total Transactions: 363864
                            
Cache                       
  Current Cache Size: 420   
          Cache Hits: 163212
        Cache Misses: 201095
                            
DNSSEC Verdicts             
              Secure: 0     
            Insecure: 0     
               Bogus: 0     
       Indeterminate: 0

 

 

 

DNS 캐시 삭제

DNS 삭제도 조회와 마찬가지로 systemd-resolve 명령어를 이용합니다. 다음과 같이 --flush-caches 옵션으로 DNS 캐시를 삭제할 수 있습니다. 삭제한 뒤 조회명령으로 보면 Current Cache Size가 0으로 되었음을 볼 수 있습니다.

$ sudo systemd-resolve --flush-caches
DNSSEC supported by current servers: no

Transactions                
Current Transactions: 0     
  Total Transactions: 363864
                            
Cache                       
  Current Cache Size: 0     
          Cache Hits: 163212
        Cache Misses: 201095
                            
DNSSEC Verdicts             
              Secure: 0     
            Insecure: 0     
               Bogus: 0     
       Indeterminate: 0

 

이상 우분투에서 DNS 캐시를 삭제하는 명령어를 알아보았습니다.

 

728x90
728x90
LIST