Linux - NetworkingThis forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
My DNS flow:
[root@sonar ~]# nslookup 192.168.1.68
Server: 192.168.1.5
Address: 192.168.1.5#53
** server can't find 68.1.168.192.in-addr.arpa.: NXDOMAIN
[root@sonar ~]# nslookup sonar.girmiti.com
Server: 192.168.1.5
Address: 192.168.1.5#53
My /etc/named.conf
** server can't find sonar.girmiti.com: NXDOMAIN
//
// named.conf
//
// Provided by Red Hat bind package to configure the ISC BIND named(8) DNS
// server as a caching only nameserver (as a localhost DNS resolver only).
//
// See /usr/share/doc/bind*/sample/ for example named configuration files.
//
include "/etc/named.rfc1912.zones";
include "/etc/named.root.key";
My rfc1912 file:
zone "girmiti.com" IN {
type master;
file "sonar.flz";
allow-update { none; };
};
zone "1.168.192.in-addr.arpa" IN {
type master;
file "sonar.rlz";
allow-update { none; };
};
My /etc/hosts & /etc/network:
default 192.168.1.2
loopback 127.0.0.0
link-local 169.254.0.0
Unless 192.168.1.5 has a dns server on it, you need to check your resolv.conf to see where dns queries go to. Your problem can be translated to: Internal network cannot resolve (External)internet names.
You can't just invent a subdomain and add it to some other name server
The authorative name servers for girmiti.com are NS1.BIZMAILSERVER.NET and NS2.BIZMAILSERVER.NET
That's where you'll need to add the subdomain of sonar.
You can't just invent a subdomain and add it to some other name server
The authorative name servers for girmiti.com are NS1.BIZMAILSERVER.NET and NS2.BIZMAILSERVER.NET
That's where you'll need to add the subdomain of sonar.
Quote:
Originally Posted by scasey
Contact the administrators of bizmailserver.net?
yes it's our server only. We have already contacted.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.