Re: Need some advice on learning networking
Man, there's a lot to learn about how DNS works. Much more than I thought.
There's about 30 different types of DNS records. The more important ones are: A-records and AAAA-records (Quad Records). A-records are used to resolve IP addresses to hostnames in IP4. AAAA-records are used to resolve IP addresses to hostnames in IP6.
Wait, there's more....
You also have "Reverse Look Up Zones". Reverse lookup zones are used by certain applications, such as NSLookup. When I set up my DNS server, I didn't create a Reverse Look Up Zone, thus when I tried using NSLookup, it wouldn't work.
Due to my limited experience with Windows Server, I didn't realize that I could manually enter the A-records for every device on my network.
It's not that complicated, though. A -records are a simple text file.
Edit: Here's a brief explanation of the difference between a Forward Look Up Zone and a Reverse Look Up Zone.
A Forward Look Up Zone resolves an IP address to a hostname.
A Reverse Look Up Zone resolves a hostname to an IP address.
If I go to the command prompt and type: nslookup www.google. com, it will return the IP address of google. In other words, NSLookup is searching the A-records for a hostname.
Now if I go to command prompt and type: nslookup 192.168.1.143, it will return with a hostname. This time it's searching the A-records for an IP address. That's assuming I have the Reverse Lookup Zone set up correctly.
Man, there's a lot to learn about how DNS works. Much more than I thought.
There's about 30 different types of DNS records. The more important ones are: A-records and AAAA-records (Quad Records). A-records are used to resolve IP addresses to hostnames in IP4. AAAA-records are used to resolve IP addresses to hostnames in IP6.
Wait, there's more....

You also have "Reverse Look Up Zones". Reverse lookup zones are used by certain applications, such as NSLookup. When I set up my DNS server, I didn't create a Reverse Look Up Zone, thus when I tried using NSLookup, it wouldn't work.
Due to my limited experience with Windows Server, I didn't realize that I could manually enter the A-records for every device on my network.
It's not that complicated, though. A -records are a simple text file.
Edit: Here's a brief explanation of the difference between a Forward Look Up Zone and a Reverse Look Up Zone.
A Forward Look Up Zone resolves an IP address to a hostname.
A Reverse Look Up Zone resolves a hostname to an IP address.
If I go to the command prompt and type: nslookup www.google. com, it will return the IP address of google. In other words, NSLookup is searching the A-records for a hostname.
Now if I go to command prompt and type: nslookup 192.168.1.143, it will return with a hostname. This time it's searching the A-records for an IP address. That's assuming I have the Reverse Lookup Zone set up correctly.
Comment