Solutions to DNS pollution
In some enterprises, some DNS requests will be directly modified by the gateway. Cause inaccessibility. The traditional socks proxy can only proxy at the IP level. When the address to be accessed exists in the form of domain name, the DNS resolution is automatically completed by the system, and the previously set socks proxy will not be used, r ...
Posted by dannymm on Wed, 02 Feb 2022 00:03:14 +0100
Build DNS server in Intranet
Build DNS server in IntranetDNS:Domain Name Service, domain name resolution serviceListening port: udp/53, tcp/53Application: bindRoot domain:Primary domain:Organization domain: com, .org, .net, .mil, .edu, .gov, .info, .cc, .me, .tvCountry domain: cn, .us, .uk, .jp, .tw, .hk, .iq, .irReverse domain: in-addr.arpaDNS record type: the DNS domain ...
Posted by steelmanronald06 on Tue, 28 Dec 2021 19:45:12 +0100
Build DNS server in Intranet
DNS:Domain Name Service, domain name resolution serviceListening port: udp/53, tcp/53Application: bindRoot domain:Primary domain:Organization domain: com, .org, .net, .mil, .edu, .gov, .info, .cc, .me, .tvCountry domain: cn, .us, .uk, .jp, .tw, .hk, .iq, .irReverse domain: in-addr.arpaDNS record type: the DNS domain name database consists of re ...
Posted by nttaylor on Thu, 23 Dec 2021 15:19:10 +0100
Detailed explanation of Linux DNS Service -- DNS master-slave architecture configuration
Today, I will continue to introduce you to the basic knowledge of Linux. The main content of this article is the master-slave configuration of DNS. To read this article, you need to have a certain DNS foundation. If you are still confused about this, please refer to the following articles: Detailed explanation of Linux DNS Service -- basic know ...
Posted by shoppingspree on Thu, 11 Nov 2021 19:17:34 +0100
Set up dns server-domain name resolution
1. Background Description
Deployed services require domain name access. Configuration in the host file is OK, but if more than one computer accesses, you need to modify all the host files manually. If you add a domain name one day, you need to modify all the host files manually.
2. Set up dns services
The best way to solve the above probl ...
Posted by mizz key_me on Sat, 11 Jul 2020 18:03:08 +0200
NetCat (nc command) for Linux command learning
brief introduction
NetCat, known as "Swiss Army Knife" in network tools, is short and practical (1.84 version is no more than 25k, old version or reduced version or even smaller), and is designed as a simple and reliable network tool, which can transmit read and write data through TCP or UDP ...
Posted by sargenle on Mon, 22 Jun 2020 09:48:38 +0200
GitHub access failed, solution < 2020 / 4 / 21 >
#Include < date: April 21, 2020 articles have been changed and updated to solve your problems more effectively
<----------------------------------------------------------------------------------------------------------------------------------------------> Preface: I don't know what the reason is, GitHub is not very friendly in China ...
Posted by vikela on Mon, 01 Jun 2020 05:38:55 +0200
k8s deployment and installation dashboard based on Centos8
Install and deploy dashboard
1. Check pod operation
kubectl get pods -A -o wide
Download the recommended.yaml filewget https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.0/aio/deploy/recommended.yamlModify the recommended.yaml filevim recommended.yamlkind: ServiceapiVersion: v1metadata: labels: k8s-app: kubernetes-dashboard name ...
Posted by anto on Mon, 04 May 2020 18:02:22 +0200
Modify DNS server configuration by raspberry pie
Modify profile
1
sudo vim /etc/dhcpcd.conf
Add the following content, we use Google DNS (Beijing Unicom test speed is good)
1
static domain_name_servers=8.8.8.8 8.8.4.4
Complete sample file section
1
2
3
4
interface eth0
static ip_address=192.168.1.3/24
static routers=192.168.1 ...
Posted by mars_rahul on Sun, 03 May 2020 06:41:09 +0200
Python -- an example of business monitoring based on domain name polling
Please indicate the source of Reprint: http://blog.csdn.net/l1028386804/article/details/78965865
Most of DNS resolution is a domain name corresponding to an IP address, but through DNS polling technology, a domain name corresponding to multiple IPS can be achieved, so as to achieve the simplest and most efficient load balancing. However, the b ...
Posted by charlesg on Thu, 30 Apr 2020 20:59:38 +0200