-
Meta
Tags
TS Status
Error (ID 0) php_network_getaddresses: getaddrinfo failed: Name or service not knownGameSpace
SANS
Steam
Star Citizen
Tag Archives: DNS
Solaris 10 DNS Oops! WTF?! Oh Yeah!
When building Solaris 10 servers in bulk.. That is 1 or more at a time. I usually don’t enable any sort of name resolution until later.
That’s the problem. When later rolls around, I’ve forgotten that I hadn’t enabled anything.
This would be fine and dandy if nslookup or host would let me know that my /etc/nsswitch.conf is only looking at files. It ignores that and goes strictly with what is in /etc/resolv.conf seemingly. So if that’s broke or incorrect it will, at least, tell you that.
Bind9: Master Only
Configuration for a master only DNS server.
1. WILL NOT answer queries
2. WILL NOT forward queries
3. WILL NOT perform recursion
4. WILL allow transfers from specified slaves
Zone and configuration files are backed up disk to disk via rsync.
Single point editing of our name space.
Single point of failure. If server is lost, updates to DNS cannot be made until another master is brought online.
options {
directory “/etc”;
pid-file “/var/run/named.pid”;
version “Windows 3.11″;
allow-query {“none”; };
allow-recursion {“none”; };
notify yes;
also-notify {
IPn.IPn.IPn.IPn;
};
allow-transfer {
IPn.IPn.IPn.IPn;
};
};
FTP Reporting Unknown Host
So, I’m staring the problem in the face for quite some time (though it’s probably obvious to those that have encountered it before.)
Test server #1: Redhat 9
Test server #2: Redhat 7.1
Both in the same network segment.
Both using the same DNS servers.
Let the hilarity ensue!
On #1:
host ftp.lanside.net reports fine
ftp ftp.landside.net connects fine
On #2:
host ftp.lanside.net reports fine
ftp ftp.lanside.net reports Unknown Host
Figured it was a configuration file, but wasn’t sure which one. Finally found the answer to my problem on a Solaris site. Theres one for google-fu, leave off the operating system next time.