AW: [Linux-Biella] DNS or not DNS?

Leonardo Buffa linux@bilug.linux.it
Tue, 05 Mar 2002 09:45:15 +0100


This is a multi-part message in MIME format.
--------------0CD3E42097334773F83FD418
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit


> Se non ha provato nemmeno a fare questo, allora deve far configurare il suo
> DNS e tutte le sue macchine a qualcun altro... :-)

ghghgh sempre detto che le mie sono braccia rubate all'agricoltura, ma
se ricordi il mio primo post, avevo detto che usando un altro dns per
risolvere i nomi, raggiungevo pure hp... il problema e' che non posso
usarne un altro in quanto col mio dns faccio anche taaaaaante altre
cose, dominii vertuali, macchine interne etc etc etc...
btw ora vi voglio fare un regalino!!! il file di configurazione!!!
--------------0CD3E42097334773F83FD418
Content-Type: text/plain; charset=us-ascii;
 name="named.conf"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
 filename="named.conf"

/*
 * BIND 8 configuration for MILPENGO
 */

options {
        directory "/var/named";
};

logging {
        category lame-servers { null; };
        category cname { null; };
};


acl acl-hosts-intranet {
        127.0.0.0/24;       # LocalHost

/*        10.0.0.0/8;         # Intranet Sapient
 *       172.16.1.0/24;      # Intranet Newmedia
 *       194.244.199.64/27;  # IP pubblici Newmedia
 *       194.244.182.0/24;   # IP pubblici Sapient
 *       195.219.117.2/32;   # Public DNS Server
  */
	217.30.0.0/24;	    #Sapient IP
	217.30.1.0/24;	    #Sapient IP 
};

acl acl-host-transer-sape {
        217.30.0.0/24;      #Sapient IP
        217.30.1.0/24;      #Sapient IP
        127.0.0.0/24;       # LocalHost
	195.54.32.0/24;		#Secondary SS
	193.205.245.0/24;	#NIC IT
};	


/* zone "foo.org" in {
 *        type master;
 *        file "foo.hosts";
 * };
 */

#zone "201.168.192.in-addr.arpa" in {
#        type slave;
#        file "192.168.201.rev";
#        allow-query { acl-hosts-intranet; };
#        allow-transfer { acl-hosts-intranet; };
#	masters { 10.208.17.34; };
#};


zone "sapient.it" in {
        type master;
	allow-transfer { acl-host-transer-sape; };
        file "sapientit.hosts";
};

zone "sapientventures.it" in {
        type master;
        file "sapientventuresit.hosts";
};


zone "0.30.217.in-addr.arpa" in {
        allow-transfer { acl-host-transer-sape; };
        type master;
        file "217.30.0.rev";
};

zone "1.30.217.in-addr.arpa" in {
        allow-transfer { acl-host-transer-sape; };
        type master;
        file "217.30.1.rev";
};


# Domini per Regione Toscana

zone "toscanapoint.it" in {
        allow-transfer { acl-host-transer-sape; };
        type master;
        file "toscanapointit.hosts";
};


zone "viverelatoscana.it" in {
        allow-transfer { acl-host-transer-sape; };
        type master;
        file "viverelatoscanait.hosts";
};

zone "toscanaguide.it" in {
        allow-transfer { acl-host-transer-sape; };
        type master;
        file "toscanaguideit.hosts";
};


zone "toscanapoint.com" in {
        allow-transfer { acl-host-transer-sape; };
        type master;
        file "toscanapointcom.hosts";
};


zone "viverelatoscana.com" in {
        allow-transfer { acl-host-transer-sape; };
        type master;
        file "viverelatoscanacom.hosts";
};


#Dominio per Comune di Cortona

zone "cittadicortona.it" in {
        allow-transfer { acl-host-transer-sape; };
        type master;
        file "cittadicortonait.hosts";
};


#Vecchie Zone 10.208

#zone "17.208.10.in-addr.arpa" in {
#        type slave;
#        file "10.208.17.rev";
#        allow-query { acl-hosts-intranet; };
#        allow-transfer { acl-hosts-intranet; };
#        masters { 10.208.17.34; };
#};

zone "stefy.it" in {
        allow-transfer { acl-host-transer-sape; };
	type master;
	file "stefy.hosts";
};


zone "hackdog.org" in {
        type slave;
        file "hackdog.hosts";
        masters { 195.54.32.78; };
};

zone "netrunners-hut.org" in {
        type slave;
        file "netrunners-hut.hosts";
        masters { 195.54.32.78; };
};

zone "sapientitalia.intra" in {
	type master;
	file "sapientitaliaintra.hosts";
        allow-query { acl-hosts-intranet; };
        allow-transfer { acl-hosts-intranet; };
};

zone "." in {
        type hint;
        file "root.cache";
};

zone "0.0.127.in-addr.arpa" in {
        allow-transfer { acl-host-transer-sape; };
        type master;
        file "named.local";
};


--------------0CD3E42097334773F83FD418--