1748181 Members
4127 Online
108759 Solutions
New Discussion юеВ

Re: BIND entries

 
SOLVED
Go to solution
Mulder_1
Frequent Advisor

BIND entries

Please let me know how to add entries to BIND database.
BIND service is already configured...
Local host is having entries :
TCPIP> show host

LOCAL database

Host address Host name

10.0.27.153 BLUE, VCL2
192.168.26.153 E0, VCL1
192.168.36.153 E1, VCL0
10.0.37.153 GREEN, VCL3

I need to add an entry to BIND database.Please suggest,

Thanks
11 REPLIES 11
Wim Van den Wyngaert
Honored Contributor

Re: BIND entries

Unable to use it here but I think you need this
http://h71000.www7.hp.com/doc/732final/6526/6526pro_015.html#index_x_304

Wim
Wim
Richard Whalen
Honored Contributor

Re: BIND entries

NSUPDATE is typically used to update dynamically assigned names and addresses. To update the permanent database you probably want to follow http://www.openvms.compaq.com/doc/83final/6526/6526pro_008.html#bind9_ascii
Steven Schweda
Honored Contributor
Solution

Re: BIND entries

> BIND service is already configured...

How, exactly?

Around here (antinode.info), the main
configuration file,
SYS$SPECIFIC:[TCPIP$BIND]TCPIP$BIND.CONF,
contains specifications like:

zone "ANTINODE.INFO" in {
type master;
file "ANTINODE_INFO.DB";
};

and

zone "0.0.10.IN-ADDR.ARPA" in {
type master;
file "0_0_10_IN-ADDR_ARPA.DB";
};

and the actual name-to-address and
address-to-name data (and SOA, and other
data) are maintained in those ".DB" files.
So, if I wish to add something, I edit those
files.

As usual, it might be interesting to know
which IP software you're using. Around here,

ALP $ tcpip show version

HP TCP/IP Services for OpenVMS Alpha Version V5.4 - ECO 7
on a COMPAQ Professional Workstation XP1000 running OpenVMS V7.3-2
Mulder_1
Frequent Advisor

Re: BIND entries

Thanks for your replies...

$tcpip show version

Compaq TCP/IP Services for OpenVMS Alpha Version V5.3 - ECO 1
on a Compaq AlphaServer ES45 Model 2BP running OpenVMS V7.3-1

The .conf files have entries :
zone "tcto.com" in {
type master;
file "AB_COM.DB";
allow-update { 192.168.25.4; 192.168.25.204; };
allow-transfer { LOCALHOST; 192.168.25.4; 192.168.25.19; };
};
the file AB_COM.DB gets generated every 1 hr. so manually adding the entries doesnot help.

Is the records in BIND server database is added using NSUPDATE ?

Thanks



Steven Schweda
Honored Contributor

Re: BIND entries

> the file AB_COM.DB gets generated every 1
> hr. so manually adding the entries doesnot
> help.

Who generates it every hour? (Talk to that
guy.)
Mulder_1
Frequent Advisor

Re: BIND entries

The TTL is set to 3600 sec,hence, it get refreshed every 1 hr

4975489 ; serial
3600 ; refresh (1 hour)
300 ; retry (5 minutes)
175000 ; expire (2 days 36 minutes 40 seconds)
43300 ; minimum (12 hours 1 minute 40 seconds)
)

Steven Schweda
Honored Contributor

Re: BIND entries

> [...] it get refreshed every 1 hr

From where? I assume that someone must have
the master files. Edit those?
Bob Blunt
Respected Contributor

Re: BIND entries

FOX2, let's start over...

$ TCPIP
TCPIP> SHOW NAME
TCPIP> SHOW HOST
TCPIP> EXIT

Look at the output from SHOW NAME and see what node is defined as the BIND/DNS source, if any. Check the SHOW HOST output. If you have any missing nodes, the system(s) listed in SHOW NAME should be the place your DNS Administrator needs to define the node you want to see. Your system may be the nameserver. If it is you should add nodes to your local host database using TCPIP SET HOST/ADDRESS=
Mulder_1
Frequent Advisor

Re: BIND entries

Yes..name server is already defined..
It is the same as the host server.

When I issue show host it lists 2 databases...1>LOCAL 2>BIND

I'm able to add to the local database confortably..but cannot do this in BIND database.

TCPIP> sh host

LOCAL database

Host address Host name

10.0.27.154 A_BLUE, VC3
192.168.26.154 AE0, VC0
192.168.36.154 A_E1, VC1
10.0.37.154 GREEN, VC2
10.0.37.1 P1
10.0.27.2 P2
10.0.37.3 P3
10.0.27.4 B4

BIND database

Server: 192.168.25.56 ABC

Host address Host name

192.168.25.199 a.om
192.168.25.2 b.com
192.168.25.202 c.m
192.168.25.3 d.com

I have not tried nsupdate yet...

Thanks