Renew DNS Servers in VMWare ESXi via ESXCLI Commands

Renew DNS Servers in VMWare ESXi via ESXCLI Commands About Issue If you need to renew DNS servers on an ESXi host and are having trouble finding the DNS field in the ESXi portal, you can use ESXCLI commands to update the DNS servers. Procedure Enable SSH Service first on ESXi Open a console or SSH session to the ESXi host. ssh root@esxi_ip_address List Current DNS server IP Address Run the command esxcli network ip dns server list DNSServers: 10....

June 2, 2023 · 2 min · 254 words · King Tam

Set up SmartDNS in Alpine Linux (LXC)

Set up SmartDNS in Alpine Linux (LXC) SmartDNS is a local DNS server that retrieves DNS query results from multiple upstream DNS servers and delivers the fastest results to clients. It supports secure DNS protocols such as DoT (DNS over TLS) and DoH (DNS over HTTPS), providing enhanced privacy protection, avoiding DNS pollution, and improving network access speed. Additionally, SmartDNS supports high-performance ad filtering for an overall better browsing experience...

May 26, 2023 · 3 min · 570 words · King Tam

Alpine Linux as a DHCP and DNS Server

dnsmasq is a lightweight, easy-to-configure DHCP and DNS server. I’ll demonstrate how to set up dnsmasq as both a DHCP and DNS server on a Linux system. Procedure Procedure Network Card Configuration : Network Card Configuration ip address The physical interface eth1 is used to set up DHCP and DNS services. cat >> /etc/network/interfaces << EOF auto eth1 iface eth1 inet static address 192.168.0.1 network 192.168.0.0 netmark 255.255.255.0 broadcast 192....

May 26, 2023 · 2 min · 361 words · King Tam