logo       


Choosing A Webhost:
A web hosting service is a type of Internet hosting service that allows individuals and organizations to provide their own website accessible via the World Wide Web. Web hosts are companies that provide space on a server they own for use by their clients as well as providing Internet connectivity, typically in a data center. Web hosts can also provide data center space and connectivity to the Internet for servers they do not own to be located in their data center, called colocation. more...

Re: Hostname lookup failure in LAN.: msg#00259

Subject: Re: Hostname lookup failure in LAN.
I'm not so experienced but as I can see, for me if your problem is the
Dynamic Update, I see that only the HOST 192.168.2.0 is allowed to Dynamic
subscribe.
If you want to mean the SubNet (local)  192.168.2.0 - 192.168.2.254
192.168.2.255 Broadcast, I think that you have to put the Mask:

> zone "iwave.net" {
>         type master;
>         notify yes;
>         file "iwave.net";
>         allow-transfer {
>                 192.168.2.0;
>         };
>         allow-update {
>                 192.168.2.0/24;
>         };
> };

And restart you BIND daemon.

If you want, you can define an alias with the NET or NETs

acl alias_name{
     192.168.2.0/24;
};

> zone "iwave.net" {
>         type master;
>         notify yes;
>         file "iwave.net";
>         allow-transfer {
>                 192.168.2.0;
>         };
>         allow-update {
>                 alias_name;
>         };
> };


Alberto Colosi
IBM Global  Services
Sistemi Informativi S.P.A.
IT Division
NCC GRUPPO Sistemi Informativi




                                                                                
                                                     
                    "Manjunath H N"                                             
                                                     
                    <manjunath@iwavesy       To:     
<alberto.colosi@xxxxxxxxxx>                                                     
                    stems.com>               cc:     <bind9-users@xxxxxxx>, 
<bind9-users-bounce@xxxxxxx>                             
                    Sent by:                 Subject:     Re: Hostname lookup 
failure in LAN.                                        
                    bind9-users-bounce                                          
                                                     
                    @isc.org                                                    
                                                     
                                                                                
                                                     
                                                                                
                                                     
                    24/02/2003 13.15                                            
                                                     
                                                                                
                                                     
                                                                                
                                                     




On Monday, February 24, 2003 4:56 PM
alberto.colosi@xxxxxxxxxx <alberto.colosi@xxxxxxxxxx> wrote:

> Have you tried to query an FQDN string?
>
> Don't make quesries for    helpdesk     but for    helpdesk.iwave.net
> (FQDN
> name

helpdesk.iwave.net
Server:         192.168.2.37
Address:        192.168.2.37#53

** server can't find helpdesk.iwave.net: NXDOMAIN

Still same problem


> Hello,
>
> I am using bind 9.2.1
> When I use nslookup and give the host name of a node in my LAN
>> helpdesk
> Server:         192.168.2.37
> Address:        192.168.2.37#53
>
> ** server can't find helpdesk: NXDOMAIN
> I get this error, I have defined the domain name to be iwave.net in my
> dhcpd.conf
> Where am I wrong because DNS is working correctly for lookups on all
> external domains
> but only nodename internal to my LAN I am not able to resolve.
>
> Any pointers
>
> On my Win2k m/c this is the o/p of ipconfig /all
>
> Windows NT IP Configuration
>
>  Host Name . . . . . . . . . : helpdesk.iwave.net
>  DNS Servers . . . . . . . . : 192.168.2.37
>  IP Routing Enabled. . . . . : No
>
> ---SNIP--------
>
> Ethernet adapter DLKRTS1:
> ----SNIP---------
>
>  DHCP Enabled. . . . . . . . : Yes
>
>  IP Address. . . . . . . . . : 192.168.2.116
>
>  Subnet Mask . . . . . . . . : 255.255.255.0
>
>   DHCP Server . . . . . . . . : 192.168.2.37
>
>  Lease Obtained. . . . . . . : Saturday, February 22, 2003 9:47:00 PM
>
>  Lease Expires . . . . . . . : Saturday, March 01, 2003 8:27:00 PM
>
> This is the configuration on my DNS server
>
> This is my named.conf
>
> options {
>         directory "/var/named";
>         allow-transfer{
>                 192.168.2.0;
>         };
>         };
>
> controls {
>         inet 127.0.0.1 allow { localhost; } keys { rndckey; };
> };
> zone "." IN {
>         type hint;
>         file "named.ca";
> };
>
> zone "localhost" IN {
>         type master;
>         file "localhost.zone";
>         allow-update { none; };
> };
>
> zone "0.0.127.in-addr.arpa" IN {
>         type master;
>         file "named.local";
>         allow-update { none; };
> };
> zone "iwave.net" {
>         type master;
>         notify yes;
>         file "iwave.net";
>         allow-transfer {
>                 192.168.2.0;
>         };
>         allow-update {
>                 192.168.2.0;
>         };
> };
> zone "2.168.192.in-addr.arpa" {
>         type master;
>         notify yes;
>         file "192.168.2";
>         allow-transfer {
>                 192.168.2.0;
>         };
>         allow-update {
>                 192.168.2.0;
>         };
> };
> include "/etc/rndc.key";
>
> This is my zone file:
>
> ;Zone file for Iwave.net
> ;
> ; The full zone file
> ;
> $TTL 3D
> @       IN      SOA     ns.server.iwave.net. manjunath.server.iwave. (
>                         199802151       ; serial, todays date + todays
> serial #
>                         8H              ; refresh, seconds
>                         2H              ; retry, seconds
>                         4W              ; expire, seconds
>                         1D )            ; minimum, seconds
> ;
> ;                NS      ns              ; Inet Address of name server
>                 MX      1 server.iwave.net.     ; Primary Mail
> Exchanger
>
> @       IN      NS      server.iwave.net.
> @       IN      NS      iwave.net.
> @       IN      NS      server
> @       IN      A       192.168.2.37
> server          A       192.168.2.37
> ;server.iwave.net       IN      A       192.168.2.37
> ;localhost       A       127.0.0.1
> iwave.net       A       192.168.2.37
> mail            CNAME   192.168.2.37
> gw              A       192.168.2.254
> www             CNAME   ns
> ftp             CNAME   192.168.2.37
> proxy           IN      A       192.168.2.254
> ns1             IN      CNAME   proxy
> wpad            IN      CNAME   server
>
> This is my reverse lookup zone file
>
> $TTL 3D
> @       IN      SOA     ns.server.iwave.net. manjunath.server.iwave. (
>                         199802151 ; Serial, todays date + todays
>                         serial 8H      ; Refresh
>                         2H      ; Retry
>                         4W      ; Expire
>                         1D)     ; Minimum TTL
>
> 37      IN       PTR     server.iwave.net.
> 254     IN       PTR     proxy.iwave.net.
>
>
> TIA
> Manjunath H N
>
>
> DISCLAIMER:
>
> This e-mail and any attachment (s) is for authorised use by the
> intended
> recipient (s) only. It may contain proprietary material, confidential
> information and/or be subject to the legal privilege of iWave Systems
> Technologies Private Limited. If you have received this message in
> error,
> please notify the originator immediately. If you are not the intended
> recipient, you are notified that you are strictly prohibited from
> retaining, using, copying, alerting or disclosing the content of this
> message. Thank you for your co-operation.




DISCLAIMER:

This e-mail and any attachment (s) is for authorised use by the intended
recipient (s) only. It may contain proprietary material, confidential
information and/or be subject to the legal privilege of iWave Systems
Technologies Private Limited. If you have received this message in error,
please notify the originator immediately. If you are not the intended
recipient, you are notified that you are strictly prohibited from
retaining, using, copying, alerting or disclosing the content of this
message. Thank you for your co-operation.









Ruby Jobs
Java Jobs
Jobs in California
more...
what
job title, keywords
where
city, state, zip
jobs by job search
<Prev in Thread] Current Thread [Next in Thread>
Google Custom Search

Recently Viewed:
db.firebase.por...    text.xml.xalan....    qnx.openqnx.dev...    user-groups.zar...    internationaliz...    kde.devel.konve...    finance.e-gold....    emacs.latex.pre...    gis.therion/200...    web.webmin.gene...    yellowdog.gener...    vserver/2003-08...    redhat.release....    sysutils.tivoli...    xfree86.expert/...    mail.becky.user...    hardware.netapp...    netbsd.ports.xe...    python.distutil...    boot-loaders.gr...    culture.interne...    java.springfram...    activedir/2006-...   
Home | blog view | USPTO Patent Archive | advertise | OSDir is an inevitable website. super tiny logo

Free Magazines

Cisco News
Receive a free quarterly e-newsletter with exclusive articles on how Cisco IT uses its own products and solutions to enable the business.
subscribe

Systems Management News, the newspaper for IT systems administration and data center managers! Each issue of Systems Management News is chock-full of news and analysis to help you understand what's happening in your field.
subscribe

The Enterprise Newsweekly eWeek is the essential technology information source for builders of e-business.
subscribe

Oracle Magazine Oracle Magazine contains technology strategy articles, sample code, tips, Oracle and partner news, how to articles for developers and DBAs, and more. Oracle (NASDAQ: ORCL) is the world's largest enterprise software company.
subscribe

Total Telecom Total Telecom is "The Economist of the communications industry".
subscribe