🔧Fix DNS! A Fabric mod to use custom DNS server for resolve the Multiplayer servers IP address, including DoH.
This Fabric Mod for Minecraft Multiplayer provides a custom DNS resolver to resolve DNS hijacking, DNS pollution, and users not being able to connect to your server due to incorrect local DNS settings.
# This configuration item allows you to configure whether or not to use the local DNS settings of the user's computer system.
# When set to false, the system's local DNS is ignored and only the DNS servers configured by the Mod are used.
use-local-dns-server: true
# This configuration item allows you to add a custom DNS server that has a higher priority than the user system's local DNS settings.
customized-dns-resolvers:
- https://dns.alidns.com/dns-query
- https://dot.pub/dns-query
- 223.5.5.5
- 119.29.29.29
- 114.114.114.114
- 1.1.1.1
- 8.8.8.8
DNSLookupHelper.java is a modified class from tekgator, added AAAA support.