> Salut! > > Cum pot face in DNS ceva de forma: > > Pentru un nume, sa spunem www.cucu.com, pentru query-uri de la anumite > adrese de IP sa le rezolv cu ip1 si pentru orice alte query-uri sa le > rezolv cu ip2? > > Mersi, > Radu
Din manualul de BIND9 (http://www.nominum.com/resources/documentation/Bv9ARM.pdf): Here is an example of a typical split DNS setup implemented using view statements. view "internal" { // This should match our internal networks. match-clients { 10.0.0.0/8; }; // Provide recursive service to internal clients only. recursion yes; // Provide a complete view of the example.com zone // including addresses of internal hosts. zone "example.com" { type master; file "example-internal.db"; }; }; view "external" { match-clients { any; }; // Refuse recursive service to external clients. recursion no; // Provide a restricted view of the example.com zone // containing only publicly accessible hosts. zone "example.com" { type master; file "example-external.db"; }; }; Sper ca asta iti rezolva problema. Toate bune, --------------------------- Bogdan Luca Network Administrator CANAD Systems Internet --------------------------- --- Send e-mail to '[EMAIL PROTECTED]' with 'unsubscribe rlug' to unsubscribe from this list.
