summaryrefslogtreecommitdiffstats
path: root/contrib/bind/conf/master
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/bind/conf/master')
-rw-r--r--contrib/bind/conf/master/README45
-rw-r--r--contrib/bind/conf/master/named.boot18
-rw-r--r--contrib/bind/conf/master/named.boot.master16
-rw-r--r--contrib/bind/conf/master/named.hosts22
-rw-r--r--contrib/bind/conf/master/named.local13
-rw-r--r--contrib/bind/conf/master/named.rev30
-rw-r--r--contrib/bind/conf/master/root.cache63
7 files changed, 207 insertions, 0 deletions
diff --git a/contrib/bind/conf/master/README b/contrib/bind/conf/master/README
new file mode 100644
index 0000000..4e49af6
--- /dev/null
+++ b/contrib/bind/conf/master/README
@@ -0,0 +1,45 @@
+
+How to add new hosts to the name server data base:
+
+1) Edit 'named.hosts' file:
+
+ For each machine you need to enter the following information:
+ machine name, all its network addresses, host information, and common
+ aliases for it.
+
+ This is the entry for calder.
+
+CALDER IN A 128.32.130.1
+ IN A 128.32.129.3
+ IN HINFO VAX-11/750 UNIX
+UCBCALDER IN CNAME CALDER
+
+ For the machine you are adding:
+ 1) replace 'CALDER' with the new machine name
+ 2) replace '128.32.130.1' with the new machines address
+ if there is more then one address for the machine
+ then add lines like the one with '128.32.129.3'
+ 3) replace 'VAX-11/750' with the machine type
+ 4) If it doesn't run 'UNIX' then replace UNIX with its
+ operating system.
+
+2) Edit 'named.rev' file:
+
+ For each address of a machine you need to enter the reverse
+ address notation for the machine:
+
+ For calder the lines look as follows:
+
+12.0 IN PTR CALDER.BERKELEY.EDU.
+3.129 IN PTR CALDER.BERKELEY.EDU.
+
+ Calder has two address '128.32.0.12' and '128.32.129.3'
+
+ You take the two numbers after 128.32 and reverse them.
+ Then replace CALDER with the new machine name.
+
+ *** Note the trailing "." on "EDU." it needs to be there. Otherwise
+ BIND will add the current $ORIGIN to this name, which won't work.
+ ***
+
+3) Increment the serial number on both files.
diff --git a/contrib/bind/conf/master/named.boot b/contrib/bind/conf/master/named.boot
new file mode 100644
index 0000000..7d467f2
--- /dev/null
+++ b/contrib/bind/conf/master/named.boot
@@ -0,0 +1,18 @@
+;
+; @(#)named.boot.slave 1.13 (Berkeley) 87/07/21
+;
+; boot file for secondary name server
+; Note that there should be one primary entry for each SOA record.
+;
+;
+sortlist 10.0.0.0
+
+directory /usr/local/adm/named
+
+; type domain source host/file backup file
+
+cache . root.cache
+secondary Berkeley.EDU 128.32.137.8 128.32.137.3 ucbhosts.bak
+secondary 32.128.IN-ADDR.ARPA 128.32.137.8 128.32.137.3 ucbhosts.rev.bak
+primary 0.0.127.IN-ADDR.ARPA localhost.rev
+
diff --git a/contrib/bind/conf/master/named.boot.master b/contrib/bind/conf/master/named.boot.master
new file mode 100644
index 0000000..702ffcf
--- /dev/null
+++ b/contrib/bind/conf/master/named.boot.master
@@ -0,0 +1,16 @@
+;
+; boot file for authoritive master name server for Berkeley.EDU
+; Note that there should be one primary entry for each SOA record.
+;
+;
+sortlist 10.0.0.0
+
+directory /usr/local/adm/named
+
+; type domain source host/file backup file
+
+cache . root.cache
+primary Berkeley.EDU berkeley.zone
+primary 32.128.IN-ADDR.ARPA berkeley.rev
+primary 0.0.127.IN-ADDR.ARPA localhost.rev
+
diff --git a/contrib/bind/conf/master/named.hosts b/contrib/bind/conf/master/named.hosts
new file mode 100644
index 0000000..d31b3bd
--- /dev/null
+++ b/contrib/bind/conf/master/named.hosts
@@ -0,0 +1,22 @@
+; Authoritative data for Berkeley.EDU (ORIGIN assumed Berkeley.EDU)
+;
+@ IN SOA ucbvax.berkeley.edu kjd.ucbvax.berkeley.edu (
+ 1986020501 ; Serial
+ 10800 ; Refresh 3 hours
+ 3600 ; Retry 1 hour
+ 3600000 ; Expire 1000 hours
+ 86400 ) ; Minimum 24 hours
+ IN MX 10 ucb-vax
+ IN NS monet
+localhost IN A 127.1
+ucb-arpa IN A 10.0.0.78
+ IN A 128.32.0.4
+ IN HINFO VAX-11/780 UNIX
+arpa IN CNAME ucbarpa
+ucb-vax 9999 IN A 10.2.0.78
+ IN A 128.32.0.10
+ IN HINFO VAX-11/750 UNIX
+ucbvax IN CNAME ucb-vax
+monet IN A 128.32.0.7
+ IN HINFO VAX-11/750 UNIX
+ucbmonet IN CNAME monet
diff --git a/contrib/bind/conf/master/named.local b/contrib/bind/conf/master/named.local
new file mode 100644
index 0000000..e0270ea
--- /dev/null
+++ b/contrib/bind/conf/master/named.local
@@ -0,0 +1,13 @@
+;
+; @(#)named.local 1.1 (Berkeley) 86/01/21
+;
+
+@ IN SOA ucbvax.Berkeley.EDU. kjd.ucbvax.Berkeley.EDU. (
+ 1986012101 ; Serial
+ 3600 ; Refresh
+ 300 ; Retry
+ 3600000 ; Expire
+ 14400 ) ; Minimum
+ IN NS ucbvax.Berkeley.EDU.
+0 IN PTR loopback.ucbvax.Berkeley.EDU.
+1 IN PTR localhost.
diff --git a/contrib/bind/conf/master/named.rev b/contrib/bind/conf/master/named.rev
new file mode 100644
index 0000000..6d1fb58
--- /dev/null
+++ b/contrib/bind/conf/master/named.rev
@@ -0,0 +1,30 @@
+;
+; @(#)named.rev 1.1 (Berkeley) 86/02/05
+;
+
+@ IN SOA ucbvax.berkeley.edu kjd.ucbvax.berkeley.edu (
+ 1986020501 ; Serial
+ 10800 ; Refresh 3 hours
+ 3600 ; Retry 1 hour
+ 3600000 ; Expire 1000 hours
+ 86400 ) ; Minimum 24 hours
+ IN NS ucbvax.Berkeley.EDU.
+; RFC 1101 stuff
+0.0 IN PTR Berkeley-net.Berkeley.EDU.
+ IN A 255.255.255.0
+; real hosts
+0.130 IN PTR csdiv-net.Berkeley.EDU.
+2.129 IN PTR monet.Berkeley.EDU.
+2.140 IN PTR ucbarpa.Berkeley.EDU.
+3.132 IN PTR cad.Berkeley.EDU.
+4.0 IN PTR ucbarpa.Berkeley.EDU.
+5.0 IN PTR cad.Berkeley.EDU.
+6.0 IN PTR ernie.Berkeley.EDU.
+6.130 IN PTR monet-cs.Berkeley.EDU.
+7.0 IN PTR monet.Berkeley.EDU.
+7.130 IN PTR kim.Berkeley.EDU.
+9.0 IN PTR esvax.Berkeley.EDU.
+10.0 IN PTR ucbvax.Berkeley.EDU.
+11.0 IN PTR kim.Berkeley.EDU.
+11.156 IN PTR esvax-156.Berkeley.EDU.
+38.131 IN PTR monet.Berkeley.EDU.
diff --git a/contrib/bind/conf/master/root.cache b/contrib/bind/conf/master/root.cache
new file mode 100644
index 0000000..48abd78
--- /dev/null
+++ b/contrib/bind/conf/master/root.cache
@@ -0,0 +1,63 @@
+; This file holds the information on root name servers needed to
+; initialize cache of Internet domain name servers
+; (e.g. reference this file in the "cache . <file>"
+; configuration file of BIND domain name servers).
+;
+; This file is made available by InterNIC registration services
+; under anonymous FTP as
+; file /domain/named.root
+; on server FTP.RS.INTERNIC.NET
+; -OR- under Gopher at RS.INTERNIC.NET
+; under menu InterNIC Registration Services (NSI)
+; submenu InterNIC Registration Archives
+; file named.root
+;
+; last update: Nov 8, 1995
+; related version of root zone: 1995110800
+;
+;
+; formerly NS.INTERNIC.NET
+;
+. 3600000 IN NS A.ROOT-SERVERS.NET.
+A.ROOT-SERVERS.NET. 3600000 A 198.41.0.4
+;
+; formerly NS1.ISI.EDU
+;
+. 3600000 NS B.ROOT-SERVERS.NET.
+B.ROOT-SERVERS.NET. 3600000 A 128.9.0.107
+;
+; formerly C.PSI.NET
+;
+. 3600000 NS C.ROOT-SERVERS.NET.
+C.ROOT-SERVERS.NET. 3600000 A 192.33.4.12
+;
+; formerly TERP.UMD.EDU
+;
+. 3600000 NS D.ROOT-SERVERS.NET.
+D.ROOT-SERVERS.NET. 3600000 A 128.8.10.90
+;
+; formerly NS.NASA.GOV
+;
+. 3600000 NS E.ROOT-SERVERS.NET.
+E.ROOT-SERVERS.NET. 3600000 A 192.203.230.10
+;
+; formerly NS.ISC.ORG
+;
+. 3600000 NS F.ROOT-SERVERS.NET.
+F.ROOT-SERVERS.NET. 3600000 A 192.5.5.241
+;
+; formerly NS.NIC.DDN.MIL
+;
+. 3600000 NS G.ROOT-SERVERS.NET.
+G.ROOT-SERVERS.NET. 3600000 A 192.112.36.4
+;
+; formerly AOS.ARL.ARMY.MIL
+;
+. 3600000 NS H.ROOT-SERVERS.NET.
+H.ROOT-SERVERS.NET. 3600000 A 128.63.2.53
+;
+; formerly NIC.NORDU.NET
+;
+. 3600000 NS I.ROOT-SERVERS.NET.
+I.ROOT-SERVERS.NET. 3600000 A 192.36.148.17
+; End of File
OpenPOWER on IntegriCloud