Konfiguracja i rozwiązywanie nazw DNS
Zrozum, jak działa DNS w systemie Linux, skonfiguruj klientów DNS i diagnozuj problemy z rozwiązywaniem nazw.
Konfiguracja i rozwiązywanie nazw DNS to bezpłatna lekcja Linux Networking & TCP/IP for Developers na CoddyKit. To lekcja 3 z 4. Możesz przeczytać całą lekcję poniżej za darmo — a potem ćwiczyć ją interaktywnie w przeglądarce z wbudowanym edytorem kodu i tutorem AI dostępnym 24/7. To część ścieżki edukacyjnej Linux Networking & TCP/IP for Developers, a Twój postęp synchronizuje się między webem a aplikacją CoddyKit. Kurs Linux Networking & TCP/IP for Developers zawiera 4 lekcji w sumie.
Części tej lekcji nie zostały jeszcze przetłumaczone i są wyświetlane po angielsku.
DNS: Name to Number
Welcome! Today we'll explore DNS (Domain Name System) in Linux. DNS is like the internet's phonebook, translating human-friendly domain names (like google.com) into machine-readable IP addresses (like 142.250.186.174).
Without DNS, you'd have to remember long numbers for every website or service you want to reach!
Your Linux DNS Client
In Linux, the primary configuration file for how your system resolves domain names is /etc/resolv.conf. This file tells your computer which DNS servers to ask when it needs to find an IP address for a hostname.
Think of it as your local DNS directory.
The `nameserver` Directive
The most important line in /etc/resolv.conf is nameserver. It specifies the IP address of a DNS server that your system should use.
- You can list multiple
nameserverentries. - Your system will try them in order until it gets a response.
- Common public DNS servers are Google's (
8.8.8.8,8.8.4.4) or Cloudflare's (1.1.1.1).
View Your Current DNS
Let's see what DNS servers your system is currently configured to use. We can do this by displaying the contents of the /etc/resolv.conf file.
Try running the command below:
cat /etc/resolv.confDomain & Search Directives
Besides nameserver, you might also see domain and search directives in /etc/resolv.conf:
domain example.com: Sets the default domain name for the local host.search example.com mycorp.local: Specifies a list of domains to try appending to hostnames that aren't fully qualified.
For example, if you ping webserver and search is mycorp.local, it will try webserver.mycorp.local.
Basic Lookups with `host`
The host command is a simple utility for performing DNS lookups. It's great for quickly finding the IP address of a domain or the domain name for an IP address.
It provides concise answers, making it perfect for quick checks.
`host` Command in Action
Let's use host to resolve a common domain. This command will query your configured DNS servers and return the associated IP address(es).
Run the example:
host coddykit.comDetailed Queries with `dig`
For more detailed DNS information, the dig (Domain Information Groper) command is your go-to tool. It provides a comprehensive output of DNS records, including authoritative nameservers, record types (A, MX, NS, etc.), and more.
It's invaluable for troubleshooting.
`dig`ging for Records
Execute dig to see a full DNS query in action. Notice the different sections of the output, like the ANSWER SECTION, which contains the IP address, and AUTHORITY SECTION, which lists the authoritative nameservers for the domain.
Try it out:
dig coddykit.comBasic DNS Troubleshooting
If you can't access a website by name but can by IP, it's likely a DNS issue. Here's a quick checklist:
- Check
/etc/resolv.conf: Are thenameserverIPs correct and reachable? - Test with
ping 8.8.8.8: Can you reach an external DNS server by IP? - Use
dig google.com @8.8.8.8: Explicitly query a working DNS server to see if resolution works that way. - Restart network service: Sometimes a network service restart can help apply changes.
DNS Client Configuration
You've learned about the key components of DNS client configuration in Linux.
Which of the following directives are commonly found in /etc/resolv.conf for configuring DNS client behavior?
Recap: DNS in Linux
Great job! You've learned how DNS works in Linux. You can now:
- Identify
/etc/resolv.confas the primary DNS client configuration file. - Understand the role of
nameserver,domain, andsearchdirectives. - Use
hostfor quick DNS lookups. - Use
digfor detailed DNS queries. - Perform basic troubleshooting for name resolution issues.
Mastering these tools is key to managing network services effectively!
Ucz się Linux Networking & TCP/IP for Developers dzięki korepetycjom AI — za darmo
Pisz i uruchamiaj kod w przeglądarce, otrzymuj natychmiastową pomoc od korepetytora AI dostępnego 24/7 i kontynuuj naukę w sieci lub w aplikacji.
- Kursy
- 12
- Lekcje
- 48
Często zadawane pytania
Czy lekcja „Konfiguracja i rozwiązywanie nazw DNS” jest bezpłatna?
Tak — pełny tekst „Konfiguracja i rozwiązywanie nazw DNS” jest dostępny za darmo tutaj w sieci. Aby ćwiczyć ją interaktywnie (wbudowany edytor kodu i tutor AI dostępny 24/7) i odblokować resztę kursu Linux Networking & TCP/IP for Developers, przejdź na CoddyKit PRO. Kurs Linux Networking & TCP/IP for Developers zawiera 4 lekcji w sumie.
Co nauczysz się w „Konfiguracja i rozwiązywanie nazw DNS”?
Zrozum, jak działa DNS w systemie Linux, skonfiguruj klientów DNS i diagnozuj problemy z rozwiązywaniem nazw. Ćwiczysz Linux Networking & TCP/IP for Developers z praktycznym kodem, który uruchamiasz bezpośrednio w przeglądarce, a tutor AI dostępny 24/7 odpowiada na Twoje pytania podczas pracy nad lekcją.
Czy potrzebuję doświadczenia, aby zacząć Linux Networking & TCP/IP for Developers?
Nie wymagamy żadnego doświadczenia. Linux Networking & TCP/IP for Developers w CoddyKit jest strukturyzowany dla początkujących i zaawansowanych użytkowników, więc możesz zacząć tutaj lub od początku i uczyć się w swoim tempie. To lekcja 3 z 4.
Ile czasu zajmuje lekcja „Konfiguracja i rozwiązywanie nazw DNS”?
Większość lekcji CoddyKit trwa około 5–10 minut. Każda lekcja to mały, interaktywny krok, dzięki czemu robisz systematyczne postępy i zawsze wracasz dokładnie do tego samego miejsca — na webie i w aplikacji.
Czy mogę pisać i uruchamiać kod w tej lekcji Linux Networking & TCP/IP for Developers?
Tak. Każda lekcja Linux Networking & TCP/IP for Developers zawiera wbudowany edytor kodu, więc piszesz i uruchamiasz prawdziwy kod bezpośrednio w przeglądarce i od razu otrzymujesz sprzężenie zwrotne od AI — bez konfiguracji na komputerze.
Wszystkie lekcje w tym kursie
- Zarządzanie interfejsami sieciowymi
- Tablice routingu i bramy
- Konfiguracja i rozwiązywanie nazw DNS
- Konfigurowanie zapory systemu Linux za pomocą nftables