Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Opmantek software works much better if hostnames can be resolved; however some customer environments do not have DNS servers.  Opmantek software can function without DNS, but it functions much better with it.  With this in mind we'd like to suggest running BIND (Berkly Internet Name Domain) on the NMIS master Primary server if local DNS servers are not available. This master Primary server can then be the DNS server for all other NMIS servers in the customer environment.

...

Code Block
title/etc/named.conf
zone "nmis.local" IN {
        type masterPrimary;
        file "nmis.local.zone";
};

...

Code Block
[root@opmantek ~]# ping -c 3 r1
PING r1.nmis.local (10.10.1.1) 56(84) bytes of data.
64 bytes from 10.10.1.1: icmp_seq=1 ttl=255 time=10.1 ms
64 bytes from 10.10.1.1: icmp_seq=2 ttl=255 time=9.83 ms
64 bytes from 10.10.1.1: icmp_seq=3 ttl=255 time=8.61 ms
--- r1.nmis.local ping statistics ---
3 packets transmitted, 3 received, 0% packet loss, time 2012ms
rtt min/avg/max/mdev = 8.614/9.526/10.127/0.665 ms
[root@opmantek ~]# 


Related Topics