How to view and refresh dns cache in Linux
Mar 07, 2024 am 08:43 AMDNS (Domain Name System) is a system used in the Internet to convert domain names into corresponding IP addresses.
In Linux systems, DNS caching is a mechanism that stores the mapping relationship between domain names and IP addresses locally, which can increase the speed of domain name resolution and reduce the burden on the DNS server. DNS caching allows the system to quickly retrieve the IP address when subsequently accessing the same domain name without having to issue a query request to the DNS server each time, thereby improving network performance and efficiency.
This article will discuss with you how to view and refresh the DNS cache on Linux, as well as related details and sample code.
The Importance of DNS Caching
In Linux systems, DNS caching plays a key role. Its existence can not only effectively reduce the time of DNS resolution and speed up network access, but also effectively reduce the load on the DNS server.
When the system accesses a specific domain name, if the resolution result of the domain name is already stored in the local cache, the system can directly obtain the result from the cache without sending a query request to the DNS server again. This mechanism effectively saves time and network bandwidth. By utilizing local caching, the system can improve access efficiency, especially when accessing the same domain name frequently. This method not only reduces the burden on the DNS server, but also reduces the consumption of network traffic, optimizing the overall network performance. Therefore, the caching mechanism plays an important role in improving system response speed and reducing resource consumption
How to check DNS cache
In the Linux operating system, there are many ways to view the contents of the DNS cache.
a. Use dig command
dig
The command is a powerful DNS tool that can be used to query DNS information, including domain name resolution results and DNS cache content.
dig example.com
Output result:
; <<>> DiG 9.16.1-Ubuntu <<>> example.com ;; global options: +cmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 62233 ;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1 ;; OPT PSEUDOSECTION: ; EDNS: version: 0, flags:; udp: 65494 ;; QUESTION SECTION: ;example.com. INA ;; ANSWER SECTION: example.com.604800INA 93.184.216.34 ;; Query time: 43 msec ;; SERVER: 127.0.0.53#53(127.0.0.53) ;; WHEN: Sat Feb 19 12:00:00 UTC 2024 ;; MSG SIZErcvd: 57
b. View nscd cache
nscd
(Name Service Cache Daemon) is a daemon process responsible for managing the system name service cache.
You can use the nscd
command to view the contents of the DNS cache.
nscd -g
Output result:
hosts cache: yescache is enabled yescache is persistent yescache is shared 211suggested size 216320total data pool size 1408used data pool size 7200seconds time to live for positive entries 20seconds time to live for negative entries 20cache hits on positive entries 0cache hits on negative entries 3cache misses on positive entries 0cache misses on negative entries 100 % cache hit rate 8current number of cached values 9maximum number of cached values 0maximum chain length searched 0number of delays on rdlock 0number of delays on wrlock 0memory allocations failed
c. View systemd-resolved cache
systemd-resolved
is a system service responsible for resolving DNS queries. It also maintains a DNS cache.
You can use the systemd-resolve
command to view the cache content.
systemd-resolve --statistics
Output result:
DNSSEC supported by current servers: no Transactions Current Transactions: 0 Total Transactions: 2422 Cache Current Cache Size: 15 Cache Hits: 2312 Cache Misses: 110
How to refresh DNS cache
Sometimes, you may need to manually refresh the DNS cache to ensure that the system uses the latest DNS resolution results.
a. Use systemd-resolved
You can use the systemd-resolved
command to refresh the DNS cache of the systemd-resolved service.
sudo systemd-resolve --flush-caches
b. Restart nscd service
If the nscd service is running on the system, you can try to refresh the DNS cache by restarting the service.
sudo systemctl restart nscd
c. Clear DNS cache files
You can also manually delete the DNS cache file to clear the DNS cache.
sudo rm -rf /var/cache/bind/named_dump.db
Advanced Usage and Precautions
a. Use DNS caching to optimize performance
DNS caching can significantly increase the speed of domain name resolution and reduce the request pressure on the DNS server.
By properly configuring the DNS cache, system performance and network connection speed can be further optimized.
The size and timeout of the DNS cache can be adjusted to meet needs.
Sample code:
# 調(diào)整 systemd-resolved 的 DNS 緩存大小和超時(shí)時(shí)間 sudo systemctl edit systemd-resolved.service # 查看 systemd-resolved 的配置 cat /etc/systemd/resolved.conf
b. Pay attention to DNS cache consistency
When refreshing the DNS cache, you need to pay attention to ensure that all related DNS caches are refreshed to avoid DNS cache inconsistency.
This may cause the application to be unable to access a specific domain name or connect to the wrong IP address.
Sample code:
# 刷新 systemd-resolved 服務(wù)的 DNS 緩存 sudo systemd-resolve --flush-caches
c. Avoid frequently refreshing DNS cache
Although refreshing the DNS cache can solve some DNS-related problems, refreshing the DNS cache too frequently may affect system performance and network connection speed.
It is recommended to flush the DNS cache only when necessary, and make sure to understand the impact of the flush operation before flushing.
Sample code:
# 重啟 nscd 服務(wù) sudo systemctl restart nscd # 清除 DNS 緩存文件 sudo rm -rf /var/cache/bind/named_dump.db
Summarize
In Linux systems, viewing and refreshing the DNS cache is an important step in managing network connections and optimizing system performance.
By using command line tools such as dig
, nscd
and systemd-resolved
, you can easily view the current system’s DNS cache information and take necessary actions Measures to flush the cache to ensure availability of the latest data.
The above is the detailed content of How to view and refresh dns cache in Linux. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Integrating Postman applications on CentOS can be achieved through a variety of methods. The following are the detailed steps and suggestions: Install Postman by downloading the installation package to download Postman's Linux version installation package: Visit Postman's official website and select the version suitable for Linux to download. Unzip the installation package: Use the following command to unzip the installation package to the specified directory, for example /opt: sudotar-xzfpostman-linux-x64-xx.xx.xx.tar.gz-C/opt Please note that "postman-linux-x64-xx.xx.xx.tar.gz" is replaced by the file name you actually downloaded. Create symbols

The main difference between Java and other programming languages ??is its cross-platform feature of "writing at once, running everywhere". 1. The syntax of Java is close to C, but it removes pointer operations that are prone to errors, making it suitable for large enterprise applications. 2. Compared with Python, Java has more advantages in performance and large-scale data processing. The cross-platform advantage of Java stems from the Java virtual machine (JVM), which can run the same bytecode on different platforms, simplifying development and deployment, but be careful to avoid using platform-specific APIs to maintain cross-platformity.

Setting the location of the interpreter in PyCharm can be achieved through the following steps: 1. Open PyCharm, click the "File" menu, and select "Settings" or "Preferences". 2. Find and click "Project:[Your Project Name]" and select "PythonInterpreter". 3. Click "AddInterpreter", select "SystemInterpreter", browse to the Python installation directory, select the Python executable file, and click "OK". When setting up the interpreter, you need to pay attention to path correctness, version compatibility and the use of the virtual environment to ensure the smooth operation of the project.

The steps to manually install the plug-in package in VSCode are: 1. Download the .vsix file of the plug-in; 2. Open VSCode and press Ctrl Shift P (Windows/Linux) or Cmd Shift P (Mac) to call up the command panel; 3. Enter and select Extensions:InstallfromVSIX..., then select .vsix file and install. Manually installing plug-ins provides a flexible way to install, especially when the network is restricted or the plug-in market is unavailable, but attention needs to be paid to file security and possible dependencies.

[Common Directory Description] Directory/bin stores binary executable files (ls, cat, mkdir, etc.), and common commands are generally here. /etc stores system management and configuration files/home stores all user files. The root directory of the user's home directory is the basis of the user's home directory. For example, the home directory of the user user is /home/user. You can use ~user to represent /usr to store system applications. The more important directory /usr/local Local system administrator software installation directory (install system-level applications). This is the largest directory, and almost all the applications and files to be used are in this directory. /usr/x11r6?Directory for storing x?window/usr/bin?Many

Understanding Nginx's configuration file path and initial settings is very important because it is the first step in optimizing and managing a web server. 1) The configuration file path is usually /etc/nginx/nginx.conf. The syntax can be found and tested using the nginx-t command. 2) The initial settings include global settings (such as user, worker_processes) and HTTP settings (such as include, log_format). These settings allow customization and extension according to requirements. Incorrect configuration may lead to performance issues and security vulnerabilities.

The installation and configuration of MySQL can be completed through the following steps: 1. Download the installation package suitable for the operating system from the official website. 2. Run the installer, select the "Developer Default" option and set the root user password. 3. After installation, configure environment variables to ensure that the bin directory of MySQL is in PATH. 4. When creating a user, follow the principle of minimum permissions and set a strong password. 5. Adjust the innodb_buffer_pool_size and max_connections parameters when optimizing performance. 6. Back up the database regularly and optimize query statements to improve performance.

Informix and MySQL are both popular relational database management systems. They perform well in Linux environments and are widely used. The following is a comparison and analysis of the two on the Linux platform: Installing and configuring Informix: Deploying Informix on Linux requires downloading the corresponding installation files, and then completing the installation and configuration process according to the official documentation. MySQL: The installation process of MySQL is relatively simple, and can be easily installed through system package management tools (such as apt or yum), and there are a large number of tutorials and community support on the network for reference. Performance Informix: Informix has excellent performance and
