HOME PHP Python CentOS Web Development IPv6 DNS IPv4 Networking Socket Programming CloudFlare DNS Internet Protocols Google DNS netsh Programming Domain Name Service DNS Server REMOTE_ADDR sysconfig SQLite IPv4 DNS IPv4 Domain Name Service Spectrum socket IPv6 DNS IPv6 Domain Name Service KT DNS Malware Free DNS Server Management network-scripts Server Development ifcfg-eth0 resolv.conf Programming Tutorial Public Domain Name Service Tutorial Educational Ad Free Domain Name Service Adult Free DNS BBNplanet DNS Database Management Disable IPv4 Disable IPv6 disable_ipv4.bat disable_ipv6.bat DNS Protocol DNS Records DNS64 Dynamic DNS ifconfig Enable IPv4 Enable IPv6 enable_ipv4.bat enable_ipv6.bat FILTER_FLAG_IPV4 FILTER_FLAG_IPV6 FILTER_VALIDATE_IP Flask getaddrinfo gethostname Ad Free DNS

GOOGLE DNS.ZIP

Public DNS (Domain Name Service) based on IPv4, IPv6 widely used   (created at Feb 23, 2024)   236  

In most cases, the Dynamic Host Configuration Protocol (DHCP) automatically configures your system to use the IP addresses of your ISP's domain name servers.To use Public DNS, you need to explicitly change the DNS settings in your operating system or devic...
Public DNS (Domain Name Service) based on IPv4, IPv6 widely used

All Engineering Software Development How can you prioritize software design trade-offs when developing a new product?   (created at Feb 21, 2024)   371  

Software design criteria are specific guidelines and principles that help shape the development of a software system. These criteria ensure that the software meets certain requirements, performs effectively, and is maintainable. Here are some common softwa...

How do I determine the client IP type (IPv4/IPv6) in PHP   (updated at Apr 16, 2024)   123  

In the PHP, there are filters which can determine IPv4 and IPv6: FILTER_VALIDATE_IP, FILTER_FLAG_IPV4, FILTER_FLAG_IPV6.Below code shows how to determine the client protocol:This code snippet checks whether the client's IP address is IPv4 or IPv6 using fil...

How do I determine the client IP type in Python - IPv4 or IPv6   (created at Apr 13, 2024)   146  

We can determine IPv6 and IPv4 based on its separator character. IPv4 uses period(.) and IPv6 uses colon(:).Below code shows how to determine the client protocol In this Python code:We import the socket module.We use socket.getaddrinfo() to get the IP...

Implementing a Versatile DNS Server in Python: Handling A, AAAA, CNAME, and TXT Records   (created at Mar 16, 2024)   79  

Supporting AAAA records, which are used for IPv6 addresses, is a straightforward extension of the previous examples. The AAAA record type is essential for modern applications that operate over IPv6 networks. Here's how you can modify the existing Python DN...

Building a Basic DNS Server in PHP/Python: A Beginner's Guide   (created at Mar 15, 2024)   145  

Creating a full-fledged DNS server in PHP is not recommended for production environments due to performance and security concerns. DNS servers require low-level networking capabilities and efficient handling of DNS protocol messages, which PHP is not optim...

Dynamic DNS Made Easy: Building a Python-Based Solution   (created at Mar 15, 2024)   115  

Creating a dynamic DNS (Domain Name System) service in Python involves several components: a server that listens for DNS queries, a database to store mappings between domain names and IP addresses, and functionality to update these mappings dynamically. Be...

Enable/Disable IPv4 on Windows   (created at Feb 24, 2024)   115  

Disabling IPv4 on Windows through a batch script can be a bit more involved compared to disabling IPv6, but it's still achievable using netsh. Here's a script that disables IPv4 on all network interfaces:Save this script with a .bat extension (e.g., disabl...

Enable/Disable IPv6 on Windows   (created at Feb 24, 2024)   166  

Even though IPv6 is one of the key features by the most of network service providers, but its network equipments are not stable accordingly, so we face a lot of connectivity issues from time to time. Sometimes, it is recommended us to turn IPv6 off for sta...

Configuring IP Address on Centos 6.7   (created at Nov 08, 2015)   128  

On Centos 6.7, you can check IP address configuration by ifconfig command as below:# ifconfig The below is the example of files on "/etc/sysconfig/network-scripts"# cd /etc/sysconfig/network-scripts# cd ls -Faltotal 220drwxr-xr-x. 2 root root 4096 Oct...