DNS: Difference between revisions

From 太極
Jump to navigation Jump to search
(41 intermediate revisions by the same user not shown)
Line 5: Line 5:
* [https://www.lynda.com/Server-tutorials/Managing-DNS-Essential-Training/453346-2.html Managing DNS Essential Training] from lynda.com
* [https://www.lynda.com/Server-tutorials/Managing-DNS-Essential-Training/453346-2.html Managing DNS Essential Training] from lynda.com
* Use DNS to block or unblock websites. That is, you can effectively bypass geo-restrictions without using VPN.
* Use DNS to block or unblock websites. That is, you can effectively bypass geo-restrictions without using VPN.
== Block Ads ==
* [https://www.makeuseof.com/best-dns-servers-to-block-internet-ads/ The 7 Best DNS Servers to Block Internet Ads]


== TTL ==
== TTL ==
Line 10: Line 13:


== FQDN ==
== FQDN ==
* [https://www.godaddy.com/garage/whats-a-fully-qualified-domain-name-fqdn-and-whats-it-good-for/ What’s a Fully Qualified Domain Name (FQDN) and what’s it good for?]
* [https://www.lifewire.com/what-does-fqdn-mean-2625883 What Does FQDN Mean?]: '''hostname + domain name + top-level domain'''
* [https://linuxconfig.org/how-to-change-fqdn-domain-name-on-ubuntu-20-04-focal-fossa-linux How to change FQDN ( domain name ) on Ubuntu 20.04 Focal Fossa Linux]
* [https://www.hostinger.com/tutorials/fqdn FQDN (Fully Qualified Domain Name): What It Is, Examples, and More]
* [https://pve.proxmox.com/wiki/Quick_installation PVE quick installation]. '''cat /etc/hosts'''
* https://forum.proxmox.com/threads/hostname-fqdn-huh.63667/. [https://www.ietf.org/archive/id/draft-chapin-rfc2606bis-00.html IETF has reserved] the following top level domains for documentation or testing purposes:
** .example
** .invalid
** .test
** .localhost


== URL ==
== URL ==
Line 24: Line 33:
* [https://www.digitalocean.com/docs/networking/dns/how-to/manage-records/ How to Create, Edit, and Delete DNS Records]
* [https://www.digitalocean.com/docs/networking/dns/how-to/manage-records/ How to Create, Edit, and Delete DNS Records]
* [https://www.namecheap.com/support/knowledgebase/article.aspx/319/2237/how-can-i-set-up-an-a-address-record-for-my-domain How can I set up an A (address) record for my domain (namecheap)?], [https://support.prontomarketing.com/hc/en-us/articles/217414266-How-to-edit-DNS-records-on-Namecheap- How to edit DNS records on Namecheap?]
* [https://www.namecheap.com/support/knowledgebase/article.aspx/319/2237/how-can-i-set-up-an-a-address-record-for-my-domain How can I set up an A (address) record for my domain (namecheap)?], [https://support.prontomarketing.com/hc/en-us/articles/217414266-How-to-edit-DNS-records-on-Namecheap- How to edit DNS records on Namecheap?]
* [https://www.howtogeek.com/devops/how-to-buy-a-domain-name-for-your-website/ How To Buy a Domain Name For Your Website]
== A record ==
* A records are used to map a domain name to an IP address and CNAME records are used to map one domain name to another domain name.
* For example, "domain.com" is an A record, and "www.domain.com" is CNAME record which maps it to "www.domain.com".
* [https://serverfault.com/a/1101393 What does '''@''' mean when setting up A Records in your DNS settings?]  '''Apex records''', '''naked domain'''
** When creating a new A record, using the host as ''' @''' means that the record is for the root domain itself. In other words, if your domain is “example.com”, an A record with '''@''' as the host would point “example.com” to the specified IP address. This is often used to direct traffic for the bare domain (i.e., example.com without any subdomains like www) to a particular server.
* [https://servebolt.com/help/how-to-set-up-subdomains-with-cloudflare/ How to set up subdomains with Cloudflare], [https://youtu.be/Y02t6hzaUBM?si=10HEB2Hk0fwWEzMP&t=560 免费开源论坛程序推荐!含搭建教程,手把手教你安装].
== CNAME ==
* A CNAME record is used to map one domain name to another domain name. For example, a CNAME record for "www.example.com" might map to "example.com". This is useful when you want to point multiple domain names to the same server.
*  A CNAME record is used '''in lieu of''' an A record when a domain or subdomain is an '''alias''' of another domain. '''All CNAME records must point to a domain, never to an IP address'''. See [https://www.cloudflare.com/learning/dns/dns-records/dns-cname-record/ What is a DNS CNAME record?] For example, www.example.com is an alias of example.com.


= DNSCrypt =
= DNSCrypt =
Line 61: Line 82:
# open port 53, or let ufw to allow bind9
# open port 53, or let ufw to allow bind9
</syntaxhighlight>
</syntaxhighlight>
* [https://www.howtoforge.com/how-to-set-up-local-dns-with-dnsmasq-on-debian-12/ How to Set Up Local DNS with Dnsmasq on Debian 12]
* [https://www.howtoforge.com/how-to-setup-dns-server-with-bind-on-ubuntu-22-04/ How to Setup DNS Server with BIND on Ubuntu 22.04]
* [https://www.howtoforge.com/how-to-setup-dns-server-with-bind-on-ubuntu-22-04/ How to Setup DNS Server with BIND on Ubuntu 22.04]
* [https://www.makeuseof.com/find-and-change-dns-server-on-linux/ How to Find and Change Your DNS Server on Linux]
== AdGuard Home ==
[https://opensource.com/article/23/3/open-source-dns-server How to set up your own open source DNS server]


== Pi-hole ==
== Pi-hole ==
Line 68: Line 94:
** [https://jan-v.nl/post/2021/running-pihole-locally-using-docker/ Running Pi-hole locally using Docker]. After the container is booted, you can set up your DNS to 127.0.0.1.
** [https://jan-v.nl/post/2021/running-pihole-locally-using-docker/ Running Pi-hole locally using Docker]. After the container is booted, you can set up your DNS to 127.0.0.1.
* [[Raspberry#Pi-hole|Raspberry > Pi-hole]]
* [[Raspberry#Pi-hole|Raspberry > Pi-hole]]
== Unbound ==
[https://www.howtoforge.com/how-to-set-up-local-dns-with-unbound-on-ubuntu-22-04/ How to Set Up Local DNS Resolver with Unbound on Ubuntu 22.04]


== Client part ==
== Client part ==
Line 173: Line 202:
* https://blogging.dragon.org.uk/howto-setup-dnsmasq-as-dns-dhcp/
* https://blogging.dragon.org.uk/howto-setup-dnsmasq-as-dns-dhcp/
* [https://www.cloudsavvyit.com/14924/how-to-run-a-local-network-dhcp-server-with-dnsmasq/ How to Run a Local Network DHCP Server with Dnsmasq]
* [https://www.cloudsavvyit.com/14924/how-to-run-a-local-network-dhcp-server-with-dnsmasq/ How to Run a Local Network DHCP Server with Dnsmasq]
* [https://www.howtoforge.com/how-to-set-up-local-dns-with-dnsmasq-on-rocky-linux/ How to Install a Local DNS Resolver with Dnsmasq on Rocky Linux]


== Local forwarding server ==
== Local forwarding server ==
Line 273: Line 303:
http://www.makeuseof.com/tag/nifty-ways-use-dns-advantage/
http://www.makeuseof.com/tag/nifty-ways-use-dns-advantage/


== Discover subdomains ==
[https://www.makeuseof.com/linux-tools-to-discover-subdomains-ethical-hacker/ 5 Powerful Linux Tools to Discover Subdomains as an Ethical Hacker]


= DNStracer =
= DNStracer =
Line 281: Line 313:


= Dyndns and [https://help.dyn.com/ddclient/ ddclient] =
= Dyndns and [https://help.dyn.com/ddclient/ ddclient] =
See
 
According to a comment in [https://www.youtube.com/watch?v=Nf7m3h11y-s this video], Cloudflare tunnel completely replaces the need for reverse proxy like Traefik/Nginx Proxy Manager.
 
== Resources ==
* https://help.ubuntu.com/community/DynamicDNS#ddclient (works)
* https://help.ubuntu.com/community/DynamicDNS#ddclient (works)
* https://help.ubuntu.com/community/DynamicDNS#Namecheap_.26_Python (works)
* https://help.ubuntu.com/community/DynamicDNS#Namecheap_.26_Python (works)
Line 296: Line 331:
</pre>
</pre>


No matter which method we use, we can go to our DNS account (in namecheap, go to Dashboard -> MANAGE button -> Domains -> Advanced DNS) and temporarily change the global IP address to another one, run the update script and then check if the global IP address has been updated to the correct one.  
No matter which method we use, we can go to our DNS account (in namecheap, go to Dashboard -> MANAGE button -> Domains -> Advanced DNS) and temporarily change the global IP address to another one, run the update script and then check if the global IP address has been updated to the correct one.
 
<pre>
sudo systemctl restart ddclient.service
# sudo /etc/init.d/ddclient restart
 
sudo service ddclient status
</pre>


== namecheap ==
== namecheap ==
Line 321: Line 363:
* [https://developers.cloudflare.com/registrar/get-started/transfer-domain-to-cloudflare Transfer your domain to Cloudflare]
* [https://developers.cloudflare.com/registrar/get-started/transfer-domain-to-cloudflare Transfer your domain to Cloudflare]
* [https://youtu.be/2HhNFSsxFfM How To Transfer Domain From Namecheap To CloudFlare Instantly] (video)
* [https://youtu.be/2HhNFSsxFfM How To Transfer Domain From Namecheap To CloudFlare Instantly] (video)
* [https://mirrormirage0.medium.com/configuring-dynamic-ip-auto-update-for-custom-domain-name-alternative-to-dyndns-noip-etc-57a1e100efd5 Configuring Dynamic IP auto-update for custom domain name(Alternative to dyndns, noip etc… )]
* Use a Dynamic DNS IP updater bash script for Cloudflare API. [https://claudiu.psychlab.eu/post/homelab-2-tld-subdomains-ddns-cloudflare/ HomeLab 2: Web domain, subdomains and Dynamic DNS with Cloudflare API]. cron was used to check the update every 10 minutes. The bash script is from https://github.com/K0p1-Git/cloudflare-ddns-updater.
<ul>
<li>Cloudflare -> [https://developers.cloudflare.com/dns/manage-dns-records/how-to/managing-dynamic-ip-addresses Use dynamic IP addresses]
* Cloudflare API. [https://bytefreaks.net/gnulinux/bash/cloudflare-api-dns-update Cloudflare API DNS Update], [https://iotechonline.com/cloudflare-dns-dynamic-ip-updater-script/ Cloudflare dns dynamic ip updater script], [https://github.com/TheGnarlyGonzo/cloudflare-ddns-script cloudflare-ddns-script].
* [https://youtu.be/CS72kN2c6hU?t=680 Cloudflare API + Docker] from oznu. A docker container that allows you to use CloudFlare as a DDNS / DynDNS Provider. [https://youtu.be/Nf7m3h11y-s A video] by DB Tech.
* ddclient
: <syntaxhighlight lang='bash'>
daemon=3600 # check every 300 seconds
syslog=yes # log update msgs to syslog
mail=root # mail all msgs to root
mail-failure=root # mail failed update msgs to root
pid=/var/run/ddclient.pid # record PID in file.
ssl=yes # use ssl-support.
use=web
protocol=cloudflare,        \
zone=YourDomain.com,        \
ttl=1,                      \
login=Cloudflare_Email_Addr \
password=Cloudflare_API_Key \
Subdomain1.YourDomain.com,Subdomain2.YourDomain.com
</syntaxhighlight>
: Test run
: <syntaxhighlight lang='bash'>
/usr/bin/ddclient -daemon=0 -debug -verbose -noquiet
</syntaxhighlight>
* [https://hub.docker.com/r/linuxserver/ddclient ddclient + Docker] from linuxserver. [https://www.null-byte.org/homelab/cloudflare-and-dynamic-dns-with-ddclient-and-docker/ Cloudflare and Dynamic DNS with ddclient and docker]. Use '''docker logs <container id>''' to [https://docs.docker.com/engine/reference/commandline/container_logs/ check the log].
* DNS-O-Matic
</ul>


== Mail ==
== Mail ==
Line 332: Line 403:
= CDN =
= CDN =
[https://www.makeuseof.com/use-cdn-website/ Why You Should Use a CDN to Improve Your Website’s User Experience]
[https://www.makeuseof.com/use-cdn-website/ Why You Should Use a CDN to Improve Your Website’s User Experience]
= DuckDNS =
* [https://youtu.be/CS72kN2c6hU Tracking your Dynamic ISP IP Address for use with your Home Server with Cloudflare DDNS & Duck DNS]
** https://hub.docker.com/r/linuxserver/duckdns/
** It teaches how to create an API token from cloudflare (my profile). Create custom tokens.
** oznu/cloudflare-ddns docker container that allows you to use CloudFlare as a DDNS / DynDNS Provider.


= no-ip =
= no-ip =
Similar to Dyndns. It has its own client program. Needs to build it yourself.
* Similar to Dyndns. It has its own client program. Needs to build it yourself.
 
* See the [http://support.no-ip.com/customer/portal/articles/375955-basic-troubleshooting-guide troubleshooting guide].
Also see the [http://support.no-ip.com/customer/portal/articles/375955-basic-troubleshooting-guide troubleshooting guide].
* http://ducky-pond.com/posts/12 for instruction of setting autostart on Debian system.
 
* http://www.coulterfamily.org.uk/pages/PCs/Linux/FAQ-LINUX-NO-IP-CLIENT.php for another approach.
See http://ducky-pond.com/posts/12 for instruction of setting autostart on Debian system.
* Note: If noip2 cannot start automatically or noip2 does not update even it can be seen from ps -ef command, use '''sudo crontab -e''' command. <span style="color: red"> For some reason, after I use sudo crontab, noip2 can update IP.</span> So the only problem right now is it cannot update every 30 minutes even '''sudo noip2 -S''' says so. The problems may be 1. ps -ef shows the command runs from nobody user 2. sudo noip2 -S says it updates every 30 minutes via /dev/eth0 with NAT enabled.
 
* [https://github.com/loblab/noip-renew Auto renew (confirm) noip.com free hosts]
See http://www.coulterfamily.org.uk/pages/PCs/Linux/FAQ-LINUX-NO-IP-CLIENT.php for another approach.
 
Note: If noip2 cannot start automatically or noip2 does not update even it can be seen from ps -ef command, use '''sudo crontab -e''' command. <span style="color: red"> For some reason, after I use sudo crontab, noip2 can update IP.</span> So the only problem right now is it cannot update every 30 minutes even '''sudo noip2 -S''' says so. The problems may be 1. ps -ef shows the command runs from nobody user 2. sudo noip2 -S says it updates every 30 minutes via /dev/eth0 with NAT enabled.
 
Update: An alternative is to use ddclient. However, ddclient never updates the IP.


== Mail ==
== Mail ==
Line 361: Line 433:
* [https://twitgoo.com/check-if-proxy-is-working/ How to Check if Your Proxy is Working] '''http://showmyip.com/'''.
* [https://twitgoo.com/check-if-proxy-is-working/ How to Check if Your Proxy is Working] '''http://showmyip.com/'''.


= Cloudflare Tunnel =
= Zero trust network access =
[https://www.paloaltonetworks.com/cyberpedia/what-is-zero-trust-network-access-ztna What Is Zero Trust Network Access (ZTNA)]
 
== Cloudflare Tunnel ==
* Advantages:
** No port forward
** No static IP or DDNS service
* [https://www.cloudflare.com/products/tunnel/ Cloudflare Tunnel]
* [https://www.cloudflare.com/products/tunnel/ Cloudflare Tunnel]
* [https://www.makeuseof.com/how-to-securely-remote-access-wifi-router/ How to Securely Access Your Wi-Fi Router From Anywhere]
* [https://www.makeuseof.com/how-to-securely-remote-access-wifi-router/ How to Securely Access Your Wi-Fi Router From Anywhere]
* [https://bobcares.com/blog/cloudflare-tunneling-with-docker/ Cloudflare Tunneling with Docker | How-to Guide]
* [https://bobcares.com/blog/cloudflare-tunneling-with-docker/ Cloudflare Tunneling with Docker | How-to Guide]
* [https://www.makeuseof.com/build-personal-cloud-storage-with-remote-access/ How to Build a Personal DIY Cloud Storage With Remote Access]
* [https://www.makeuseof.com/build-personal-cloud-storage-with-remote-access/ How to Build a Personal DIY Cloud Storage With Remote Access]
* [https://www.makeuseof.com/use-cloudflare-tunnel-expose-local-servers-internet/ Set Up a Cloudflare Tunnel to Expose Local Servers to the Internet] using a lightweight tunneling daemon ('''cloudflared''') which is available on Windows macOS & Linux & Raspberry Pi. Free domain is fine.
* By using these new free CloudFlare Tunnels you don’t need ANY of that including the open ports on your local firewalls. [https://chriscolotti.us/technology/how-to-setup-and-use-cloudflare-tunnels/ How To Setup And Use CloudFlare Tunnels]
* (video)
** [https://youtu.be/ZvIdFs3M5ic You Need to Learn This! Cloudflare Tunnel Easy Tutorial]
** [https://youtu.be/fNSf7D8CXgA HOW TO: SSH into Raspberry Pi remotely through Cloudflare tunnel (using terminal and putty)]
** [https://youtu.be/Z6b3l1z0N7w HOW TO: Remote access a Raspberry Pi using a Cloudflare tunnel (node-red and ssh)]
** [https://youtu.be/wdmbAo02ktQ Cloudflare Tunnels: Restrict Access with Google and Github]. It works. Note in creating a policy, I choose Github authentication. In the '''Configure rules''', I choose '''Emails''' & my email associated with Github account.
* SSH
** [https://youtu.be/Z6b3l1z0N7w?t=834 HOW TO: Remote access a Raspberry Pi using a Cloudflare tunnel (node-red and ssh)]. Easy to follow!
** [https://orth.uk/ssh-over-cloudflare/ SSH into your private machines from anywhere, for free, using Cloudflare Tunnel] Feb 2022
** [https://danishshakeel.me/creating-an-ssh-tunnel-using-cloudflare-argo-and-access/ Creating An SSH Tunnel Using Cloudflare Argo And Access]
** [https://dev.to/tylerlwsmith/ssh-into-a-server-behind-cloudflare-using-an-ssh-config-file-355j SSH into a server behind Cloudflare using an SSH config file]
** [https://youtu.be/xRlM71fCdbY Raspberry Pi remote access - SSH Remotely from your browser using Cloudflare tunnel for FREE !]
== tailscale ==
* Tailscale is an alternative to cloudflare tunnel
* https://tailscale.com/kb/use-cases/. Some of the most common ones include deploying internal apps anywhere without changing firewall settings, replacing site-to-site VPNs with WireGuard, transparently interconnecting microservices between data centers and pods, and VPN from the couch to the office and HQ. Tailscale also allows remote access to computer resources and applications from any location.
* [https://tailscale.com/blog/how-nat-traversal-works/ How NAT traversal works] by tailscale
* [https://stanislas.blog/2021/08/tailscale/ How I use tailscale]
== Wireguard tunnel ==
[https://youtu.be/VCH8-XOikQc SelfHosted Gateway - WireGuard Tunnel for secure external access to all of your Self Hosted Apps] & [https://wiki.opensourceisawesome.com/books/selfhosted-gateway-reverse-proxy/page/selfhosted-gateway Notes]
== twingate ==


= IP spoofing =
= IP spoofing =
[https://www.makeuseof.com/what-is-ip-spoofing/ What Is IP Spoofing and What Is It Used For?]
[https://www.makeuseof.com/what-is-ip-spoofing/ What Is IP Spoofing and What Is It Used For?]

Revision as of 22:46, 6 January 2024

Resource

Block Ads

TTL

How to see Time-To-Live (TTL) for a DNS record

FQDN

URL

  • It seems we can append "?" and "#" after a valid URL.
  • What do "?" and "#" mean in a URL?
    • “?” in URL acts as separator
    • “#” was used as an anchor to jump to an element. However, nowadays it's usually used with AJAX-based pages since changing the hash can be detected using JavaScript and allows you to use the back/forward button without actually triggering a full page reload.
  • Which characters make a URL invalid?
  • Special character in URL ignored by browsers

Records

A record

CNAME

  • A CNAME record is used to map one domain name to another domain name. For example, a CNAME record for "www.example.com" might map to "example.com". This is useful when you want to point multiple domain names to the same server.
  • A CNAME record is used in lieu of an A record when a domain or subdomain is an alias of another domain. All CNAME records must point to a domain, never to an IP address. See What is a DNS CNAME record? For example, www.example.com is an alias of example.com.

DNSCrypt

Network commands

DNS server

Setup on Linux/Ubuntu

sudo apt install bind9
sudo nano /etc/bind/named.conf.options
  # update 'forwarders' key to use 1,1,1,1; 8.8.8.8;
  # add 'forward only;'
sudo systemctl restart bind9
# open port 53, or let ufw to allow bind9

AdGuard Home

How to set up your own open source DNS server

Pi-hole

Unbound

How to Set Up Local DNS Resolver with Unbound on Ubuntu 22.04

Client part

  • Windows/Mac/Linux
dig @192.168.1.2  linkedin.com  # Suppose the DNS server ips is 192.168.1.2
Pay attention to the Query time result. If we run the same command again, the query time will be reduced to 0 because of the cache in the DNS server.

Client part 2: what is my DNS server /etc/resolv.conf or /etc/network/interfaces. Static IP

Use one of the following commands

systemd-resolve  --status
resolvectl status
nmcli dev show | grep 'IP4.DNS'

PS. dig command can show my DNS server as part of its output.

On Ubuntu 18.04 and up, it uses netplan. PS. use space character instead tab in yml file.

Even I can change my DNS setting using the Network Manager (IPv4 -> disable Automatic -> Enter 8.8.8.8 -> Apply -> Toggle On/Off), the name solving does not work. Testing https://129.43.254.99 works but not https://brb.nci.nih.gov

To use the /etc/resolv.conf method, check out how to add DNS servers or Set permanent DNS nameservers on Ubuntu/Debian with resolv.conf (video).

On my home computer, it just shows one line nameserver 127.0.1.1. On work computer, it shows

# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
#     DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
nameserver 127.0.1.1
search XXX.XXX.gov

On the VM of my work computer, it shows

nameserver 127.0.0.53
search XXX.XXX.gov

It seems the /etc/resolv.conf file changes with the file on the host.

After any change, we can restart the network by using sudo service networking restart.

Note:

  • nameserver Name-server-IP-address: Point out to your your own nameserver or to ISP’s name server. Up to 3 name servers may be listed.
  • search domain.com: The search list is normally determined from the local domain name; by default, it contains only the local domain name. So when you type nslookup www, it will be matched to www.cyberciti.biz

You can also use Public Name Servers

nameserver 8.8.8.8
nameserver 8.8.4.4

dig Command Examples

dig (domain information groper) is a DNS lookup utility.

$ sudo apt install dnsutils
$ dig google.com ANY
$ dig r-project.org  # only 1 is returned
$ dig r-project.org  ANY
...
;r-project.org.                 IN      ANY

;; ANSWER SECTION:
r-project.org.          7199    IN      NS      ns2.urbanek.info.
r-project.org.          7199    IN      NS      ns1.urbanek.info.
r-project.org.          7199    IN      NS      ns2.wu-wien.ac.at.
r-project.org.          7199    IN      NS      ns3.urbanek.info.
r-project.org.          7199    IN      NS      ns4.urbanek.info.
r-project.org.          7199    IN      NS      ns1.wu-wien.ac.at.
r-project.org.          7199    IN      A       137.208.57.37
r-project.org.          7199    IN      MX      5 mc1.ethz.ch.
r-project.org.          7199    IN      MX      5 mc4.ethz.ch.
r-project.org.          7199    IN      MX      5 mc3.ethz.ch.
r-project.org.          7199    IN      MX      5 mc2.ethz.ch.
r-project.org.          7199    IN      TXT     "v=spf1 ip4:129.132.119.208/32 ~all"
r-project.org.          7199    IN      SOA     ns0.wu-wien.ac.at. postmaster.wu-wien.ac.at.

host command

Linux and Unix host Command Examples

DNSmasq (DNS + DHCP server)

Local forwarding server

dnsmasq program is running on my Ubuntu and Linux/Mint machines.

See nameserver 127.0.1.1 in resolv.conf won't go away!

$ ps -ef | grep -i dnsmasq

$ sudo netstat -anp | grep -i dnsmasq

DNS providers

Benchmark, bottleneck

How to determine bottleneck in page load time? Use a plugin or if you have Chrome, use its built-in inspector. Google Chrome: Right-click on anything and click "Inspect element" and click "Network" tab on the new box that appears. Navigate to your site, you will now see in real-time how the browser is receiving the information

Change DNS setting

Command line

How to Find and Change Your DNS Server on Linux.

resolvectl status

resolvectl dns <interface> <dns address 1> <dns address2>

Domain Setup & SSL Certificates, HTTPS - NGINX & Docker Compose

Shiny Production with AWS Book

Flush DNS cache

How To Set Permanent DNS Nameservers

How To Set Permanent DNS Nameservers in Ubuntu and Debian

Test if you are using OpenDNS

https://welcome.opendns.com/

I try to change the DNS ip using either Network Connection GUI or modifying /etc/resolv.conf (& calling sudo /etc/init.d/networking restart). But it does not change anything??

DNS-over-HTTPS (DoH) in Firefox

Query DNS server

DNS leak test

To list the current DNS servers used by my system,

Method 1:

# Ubuntu >= 15
$ nmcli dev show | grep 'IP4.DNS'
$ nmcli device show <interfacename> | grep IP4.DNS
# Ubuntu <= 14
$ nmcli dev list iface <interfacename> | grep IP4

Method 2:

$ cat /etc/resolv.conf

Method 3 (macOS):

scutil --dns | grep nameserver
# cat /etc/resolv.conf

Another way is to use the R packages: gdns and dnsflare. More Options For Querying DNS From R with 1.1.1.1.

3 Ways to Check DNS Propagation Status

https://www.makeuseof.com/tag/check-dns-propagation-status/

DNS tricks

5 DNS Servers Guaranteed to Improve Your Online Safety

http://www.makeuseof.com/tag/best-dns-providers-security/

5 Nifty Ways to Use DNS to Your Advantage

http://www.makeuseof.com/tag/nifty-ways-use-dns-advantage/

Discover subdomains

5 Powerful Linux Tools to Discover Subdomains as an Ethical Hacker

DNStracer

http://www.ubuntugeek.com/dnstracer-trace-dns-queries-to-the-source.html

Reverse DNS

Reverse DNS (rDNS) is a process that resolves an IP address back to a domain name, the opposite of a forward DNS query. What Is Reverse DNS and How Does It Work?

Dyndns and ddclient

According to a comment in this video, Cloudflare tunnel completely replaces the need for reverse proxy like Traefik/Nginx Proxy Manager.

Resources

nano /etc/ddclient.conf /etc/ddclient/ddclient.conf. See my 'ddclient' google doc.

Note that the specification should depend on the domain name registrar (eg namecheap). For namecheap, the login/password is NOT your actual credential from your domain name registrar. The password should be obtained from the domain name registrar website. The last line is about the host. If I am setting it up for a subdomain, I should enter the subdomain name (and skip the domain name part). The ssl=yes is to ensure the connection is made over https instead of http.

And run sudo ddclient -daemon=0 -debug -verbose -noquiet to verify ddclient is working. You shall get a long return with the last line looks like

SUCCESS:  updating YOURSUBDOMAIN: good: IP address set to XX.XXX.XXX.XXX

No matter which method we use, we can go to our DNS account (in namecheap, go to Dashboard -> MANAGE button -> Domains -> Advanced DNS) and temporarily change the global IP address to another one, run the update script and then check if the global IP address has been updated to the correct one.

sudo systemctl restart ddclient.service
# sudo /etc/init.d/ddclient restart

sudo service ddclient status

namecheap

Cloudflare

Mail

CDN

Why You Should Use a CDN to Improve Your Website’s User Experience

DuckDNS

no-ip

Mail

  • Allow only one MX record for each host for free no-ip account.
  • Click Host/Redirects > Manage Hosts > Modify.

DNS attack

What Are DNS Attacks and How Do You Prevent Them?

Proxy server

Zero trust network access

What Is Zero Trust Network Access (ZTNA)

Cloudflare Tunnel

tailscale

  • Tailscale is an alternative to cloudflare tunnel
  • https://tailscale.com/kb/use-cases/. Some of the most common ones include deploying internal apps anywhere without changing firewall settings, replacing site-to-site VPNs with WireGuard, transparently interconnecting microservices between data centers and pods, and VPN from the couch to the office and HQ. Tailscale also allows remote access to computer resources and applications from any location.
  • How NAT traversal works by tailscale
  • How I use tailscale

Wireguard tunnel

SelfHosted Gateway - WireGuard Tunnel for secure external access to all of your Self Hosted Apps & Notes

twingate

IP spoofing

What Is IP Spoofing and What Is It Used For?