Showing posts with label dns. Show all posts
Showing posts with label dns. Show all posts
9/29/2016
9/28/2016
Dig Web Interface
1. Browse to http://www.digwebinterface.com/
2. Enter the list of hosts you wish to test under Hostnames or IP addresses:
3. Select Resolver under Name Servers:
4. Check Trace under Options
5. Click Dig
First section of results are root servers.
Next section are authoritative name servers for the TLD
Next section (your domain) are the NS records from the domain registry.
Next section (your domain) are the NS records provided an authoritative NS
2. Enter the list of hosts you wish to test under Hostnames or IP addresses:
3. Select Resolver under Name Servers:
4. Check Trace under Options
5. Click Dig
First section of results are root servers.
Next section are authoritative name servers for the TLD
Next section (your domain) are the NS records from the domain registry.
Next section (your domain) are the NS records provided an authoritative NS
Check DNS Propagation
Great online utility to check propagation of DNS changes.https://www.whatsmydns.net
10/20/2015
Reverse DNS records not registered when using DHCP
Reverse DNS records not registered when using DHCP
Windows client > NIC > ipv4 > check the box named:
Use this connection's DNS suffix in DNS registration
Windows client > NIC > ipv4 > check the box named:
Use this connection's DNS suffix in DNS registration
10/02/2015
Windows DNS Server: Security Settings
Do a DNS test at:
DNS Stuff
You will get warnings of various kinds. A couple of important fixes are:
DNS Stuff
You will get warnings of various kinds. A couple of important fixes are:
Disable Version Query
dnscmd /config /EnableVersionQuery 0
Disable Recursion
dnscmd /Config /NoRecursion 1
3/02/2015
DNS Name Server Entries in Parent Domain
Your domain registrar, for example Network Solutions, maintains the DNS records that resolve your name servers' names to IP's in the parent domain. Your name servers in your start of authority (SOA) might be, for example, ns1.examplename.com and ns2.examplename.com. Records for resolution of those names to IP numbers need to be in the parent domain, such as .com.
You can verify this with the following procedure:
You can verify this with the following procedure:
| Input | Result |
nslookup l.root-servers.net |
199.7.83.42 |
nslookup |
|
server 199.7.83.42 |
|
|
|
server 192.5.6.30 |
|
EXAMPLENAME.com. |
|
7/19/2013
Powershell - DNS Check
Check DNS Resolution using Powershell
##########################################################################################
#
# DNS-CHECK.PS1
#
##########################################################################################
$outfile = ".\results.txt"
$list = ".\LIST.TXT"
$names = Get-Content $list
$today = get-date
clear-host
write "==========================================================================="
write " $today"
write " Checking DNS Resolution"
write "$today" | out-file -encoding ASCII $outfile
foreach($name in $names) {
write "---------------------------------------------------------------------------"
write-host " $name"
try {[Net.DNS]::GetHostEntry($name) }
catch {
Write-host $server " ERROR: $name - NOT FOUND IN DNS"
"ERROR: $name - not resolved in DNS" | out-file -encoding ASCII $outfile -append
}
}#foreach server
write "==========================================================================="
#end
7/20/2012
Export DNS Zone
DNS::Microsoft::Export Zone
DNSCMD is a great utility
One of the many things you can do is backup a zone:
DNSCMD is a great utility
One of the many things you can do is backup a zone:
Oddly, you can't put that output anyplace other than the default:dnscmd SERVERNAME /ZoneExport domain.com DNS-BACKUP.TXT
C:\WINDOWS\SYSTEM32\DNS\
7/16/2012
Windows DNS TTL
Microsoft DNS::The pain of "simplicity"
I guess a lot of people just are going to say "DUH!!!" but I had to look hard today to figure out how to add a TTL to an individual DNS entry on MS DNS server.
VIEW > ADVANCED gives you the secret field to fill in the TTL
Sheesh!
I guess a lot of people just are going to say "DUH!!!" but I had to look hard today to figure out how to add a TTL to an individual DNS entry on MS DNS server.
VIEW > ADVANCED gives you the secret field to fill in the TTL
Sheesh!
9/04/2011
More on aliased server names
regarding authentication during access to machines using a name other than its "real" name.
http://www.marc-antho-etc.net/blog/post/2010/09/08/Multiple-Names-for-a-File-and-Print-Server-Running-Windows-Server-2008-R2.aspx
10/30/2009
Disable Strict Name Checking
Allow proper network access to a server using a DNS alias:
See 281308 Connecting to SMB share on a Windows 2000-based computer or a Windows Server 2003-based computer may not work with an alias name
Or copy out the codes below into a .REG file and import it.
Also may need to disable Loopback checking:
926642
DisableLoopbackCheck registry entry in the KEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa registry subkey to 1. To set the DisableLoopbackCheck registry entry to 1, follow these steps on the client computer:
- Click Start, click Run, type regedit, and then click OK.
- Locate and then click the following registry subkey:
- Right-click Lsa, point to New, and then click DWORD Value.
- Type DisableLoopbackCheck, and then press ENTER.
- Right-click DisableLoopbackCheck, and then click Modify.
- In the Value data box, type 1, and then click OK.
- Exit Registry Editor.
- Restart the computer.
Windows 2008
It still works for Windows 2008.
See 281308 Connecting to SMB share on a Windows 2000-based computer or a Windows Server 2003-based computer may not work with an alias name
Or copy out the codes below into a .REG file and import it.
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\lanmanserver\parameters]
"DisableStrictNameChecking"=dword:00000001
Also may need to disable Loopback checking:
926642
DisableLoopbackCheck registry entry in the KEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa registry subkey to 1. To set the DisableLoopbackCheck registry entry to 1, follow these steps on the client computer:
- Click Start, click Run, type regedit, and then click OK.
- Locate and then click the following registry subkey:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa
- Right-click Lsa, point to New, and then click DWORD Value.
- Type DisableLoopbackCheck, and then press ENTER.
- Right-click DisableLoopbackCheck, and then click Modify.
- In the Value data box, type 1, and then click OK.
- Exit Registry Editor.
- Restart the computer.
Windows 2008
It still works for Windows 2008.
Subscribe to:
Posts (Atom)