[comp.sys.mips] named

dalton@mit-caf.MIT.EDU (Timothy J. Dalton) (07/29/90)

Being chemical engineers and not cs majors, we face a small problem when
it comes to keeping our system running...

My question is, how to we get a name server running on our mips m-120/5.
We have 2 ethernet cards for a gateway, but, now we need a name server.

I have the names for several servers at mit, but I do not know how to
configure our 120 to use these servers.

Any and all help is appreciated.

Thanks,  Tim

+============================================================================+
|                              Timothy J. Dalton                             |
+============================================================================+
| Materials Etching Technologies Laboratory        dalton@caf.mit.edu        |
| Department of Chemical Engineering               tjdalton@athena.mit.edu   | 
| Massachusetts Institute of Technology                                      |
+============================================================================+
|                           You Are So Far From Me                           |
+============================================================================+

kss8021@helios.TAMU.EDU (Kevin Stroud) (07/30/90)

In article <4845@mit-caf.MIT.EDU>, dalton@mit-caf.MIT.EDU (Timothy J. Dalton) writes:
> Being chemical engineers and not cs majors, we face a small problem when
> it comes to keeping our system running...
> 
> My question is, how to we get a name server running on our mips m-120/5.
> We have 2 ethernet cards for a gateway, but, now we need a name server.
> 
> I have the names for several servers at mit, but I do not know how to
> configure our 120 to use these servers.
> 
> Any and all help is appreciated.
> 
> Thanks,  Tim
> 

The following four config files should get named running on your mips.
Edit the first 3 files as appropriate for your site and place the four
files in their correct locations.  Then start up /etc/named.

------------------------------------------------------------------------
; this file is /etc/named.boot
;	BOOT FILE for caching name server.
;
primary		0.0.127.IN-ADDR.ARPA	/usr/local/lib/named/local
cache		.			/usr/local/lib/named/cache
forwarders	<ip address of primary nameserver> <ip address of backup>
-----------------------------------------------------------------------
; this file is /etc/resolv.conf
domain		<your internet domain name, mit.edu in this case>
nameserver	127.0.0.1
------------------------------------------------------------------------
; this file is /usr/local/lib/named/local
;	Authoratative data for 0.0.127.IN-ADDR.ARPA
;
@		IN	SOA	<your fully qualified host name>.	Postmaster.<your fully qualified host name>. (
					2	; Serial
					21600	; Refresh every 6 hours
					900	; Retry every 15 minutes
					3600000	; Expire after 1000 hours
					21600 )	; Minimum of 6 hours
		IN	NS	<your fully qualified host name>.	; Host with nameserver

1		IN	PTR	LOCALHOST.
LOCALHOST.	IN	A	127.0.0.1
---------------------------------------------------------------------------
; this file is /usr/local/lib/named/cache
;	@(#)named.ca	1.9	(Berkeley)	87/02/06
;
; Initial cache data for root domain servers.
;

.			99999999	IN	NS	NS.NIC.DDN.MIL.
			99999999	IN      NS	A.ISI.EDU.
			99999999	IN	NS	AOS.BRL.MIL.
			99999999	IN	NS	GUNTER-ADAM.AF.MIL.
			99999999	IN	NS	C.NYSER.NET.
			99999999	IN	NS	TERP.UMD.EDU.
			99999999	IN	NS	NS.NASA.GOV.
;
;  Prep the cache (hotwire the addresses).  Order does not matter
;

NS.NIC.DDN.MIL.        99999999        IN      A           192.67.67.53
A.ISI.EDU.             99999999        IN      A           26.3.0.103
A.ISI.EDU.             99999999        IN      A           128.9.0.107
AOS.BRL.MIL.           99999999        IN      A           192.5.25.82
AOS.BRL.MIL.           99999999        IN      A           128.20.1.2
GUNTER-ADAM.AF.MIL.    99999999        IN      A           26.1.0.13
C.NYSER.NET.           99999999        IN      A           192.33.4.12
TERP.UMD.EDU.          99999999        IN      A           128.8.10.90
NS.NASA.GOV.           99999999        IN      A           128.102.16.10
NS.NASA.GOV.           99999999        IN      A           192.52.195.10
-------------------------------------------------------------------------