Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Separation and parsing of DNS on Centos7 based on VMware (details + diagram)

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/02 Report--

I. definition of DNS separation resolution

DNS separation resolution means that the same domain name of the internal and external network is resolved into different IP addresses. In order to give users a better experience and faster parsing speed, some e-commerce websites in the real network parse users from different operators to corresponding servers, which greatly improves the access speed.

II. Purpose of the experiment

Separate parsing of DNS is used to achieve the purpose of load balancing when different clients visit websites and resolve them to different hosts.

III. Specific requirements of the experiment

1. Three hosts (host mode only). The specific functions are:

Centos7 (DNS server, gateway), 192.168.100.100 (local area network test client), 12.0.0.12 (wide area network test client)

2. Implement the DNS server on Centos7 to realize that when the client is a WAN, the resolution result of any domain name is 12.0.0.1.

four。 Experimental procedure

1. Open the centos7 virtual machine to enter the terminal and install the bind package

Yum install bind-y

two。 Create a new network card (for the settings of dual network cards, please refer to the previous LInux network foundation section.

3. Configure the original first network card with the address 192.168.100.1 as the gateway of the LAN

Vim ifcfg-ens33

4. Configure the new network card with the address 12.0.0.1 as the gateway for the WAN

Vim ifcfg-ens36

5. Restart the service

Systemctl restart network

6. Assign addresses to LAN clients

7. Assign addresses to WAN clients

8. Enter Centos7 to modify the dns main configuration file

Vim / etc/named.conf

9. Modify the zone configuration file and delete the following

Vim / etc/named.rfc1912.zones

10. Cut the configuration of the root server in the main configuration file to the zone configuration file

11. Copy 2 regional data file configuration templates

Cd / var/named

Cp-p named.localhost kgc.com.lan

Cp-p named.localhost kgc.com.wan

twelve。 Modify zone data configuration file (lan)

Vim kgc.com.lan

13. Modify zone data configuration file (wan)

Vim kgc.com.wan

14. Turn off the firewall and turn on the service

Systemctl stop firewalld.service

Setenforce 0

Systemctl start named

15. Verification

Wan resolution is the address of the gateway (public network)

Address of private network parsed by local area network

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report