当前位置:网站首页>DNS domain name space
DNS domain name space
2022-07-27 09:09:00 【Hua Weiyun】
DNS Naming system , It's a tree growing upside down , That is to say, the root grows to the sky .
The management of domain name space is feudal , Is it royal land in the world , It's the root . The following top-level domain is the local king . Each organization is responsible for naming and managing the domains assigned to it and the sub domains under it , Manage the hostname and IP Mapping . The task of management and interpretation is through DNS Server , frequently-used DNS The server is BIND, It was originally DARPA Funded a graduate program at the University of Berkeley .
centos8 Installation on :yum install bind bind-utils

When A The host wants to access B When it's on the mainframe , Inquire about DNS The path of the server is like this .
there A The host and B Hosts are all hosts or servers managed under the domain .
If the computer of an ordinary user wants to access a host , For example, the computer that accesses the Internet in the family , Or there is no domain management computer in the company ( Working group mode ) To access a host ,DNS The process of domain name resolution is like this :
According to this parsing process , If the root server is down , Then domain name network access paralysis will occur .
DNS There are main types of 、 from 、 Cache and other types , The configuration file has a master configuration file 、 Regional data files, etc .
bind Master profile /etc/named.conf, The default content is as follows :
// Provided by Red Hat bind package to configure the ISC BIND named(8) DNS server as a caching only nameserver (as a localhost DNS resolver only). See /usr/share/doc/bind*/sample/ for example named configuration files.// This shows that only localhost DNS resolver, So we have to change options { //listen-on port 53 { 127.0.0.1; }; listen-on port 53 { any; }; listen-on-v6 port 53 { ::1; }; directory "/var/named"; dump-file "/var/named/data/cache_dump.db"; statistics-file "/var/named/data/named_stats.txt"; memstatistics-file "/var/named/data/named_mem_stats.txt"; secroots-file "/var/named/data/named.secroots"; recursing-file "/var/named/data/named.recursing"; //allow-query { localhost; }; allow-query { any; }; recursion yes; dnssec-enable yes; //dnssec-validation yes; dnssec-validation no; managed-keys-directory "/var/named/dynamic"; pid-file "/run/named/named.pid"; session-keyfile "/run/named/session.key"; /* https://fedoraproject.org/wiki/Changes/CryptoPolicy */ include "/etc/crypto-policies/back-ends/bind.config";};logging { channel default_debug { file "data/named.run"; severity dynamic; };};zone "." IN { type hint; file "named.ca";};//include "/etc/named.rfc1912.zones";include "/etc/named.mine.zones";include "/etc/named.root.key";/var/named/├── data├── dynamic├── slaves├── named.ca├── named.empty├── named.localhost└── named.loopbackTo be continued
边栏推荐
- Primary function t1744963 character writing
- Kibana uses JSON document data
- CUDA programming-02: first knowledge of CUDA Programming
- 【微服务~Sentinel】Sentinel之dashboard控制面板
- Interface test tool -postman usage details
- Explanation of common basic controls for C # form application (suitable for Mengxin)
- 函数防抖节流
- 音乐体验天花板!14个网易云音乐的情感化设计细节
- Tensorflow loss function
- Ctfshow ultimate assessment
猜你喜欢
随机推荐
Matlab 利用M文件产生模糊控制器
Deep understanding of Kalman filter (1): background knowledge
Mangodb simple to use
ArkUI开发框架组件的生命周期
Svg drawing curve
函数防抖节流
linux安装和远程连接mysql记录
Pyqt5 rapid development and practice 4.1 qmainwindow
二叉树讲解
Detailed explanation of two methods of Sqlalchemy
qt中使用sqlite同时打开多个数据库文件
PyTorch自定义CUDA算子教程与运行时间分析
【微服务~Sentinel】Sentinel之dashboard控制面板
Tensorflow loss function
Qdoublevalidator does not take effect solution
B tree
MATLAB data import -- importdata and load functions
2036: [Blue Bridge Cup 2022 preliminary] statistical submatrix (two-dimensional prefix sum, one-dimensional prefix sum)
坚果天气
NiO Summary - read and understand the whole NiO process

![[flutter -- geTx] preparation](/img/5f/96075fa73892db069db51fe789715a.png)







