Fórum Ubuntu CZ/SK

Ostatní => Ubuntu Server => Téma založeno: hama4tux 03 Září 2009, 19:17:13

Název: DNS - server
Přispěvatel: hama4tux 03 Září 2009, 19:17:13
Ahojky
Naconfiguroval jsem DNS server nastavil nějaké záznami

smudlov A 10.0.0.2

server to pingne, ale se stanící MS Windows která ma jako DNS ten server nepingnu.

Nevíte kde by mohl být problém?
Název: Re: DNS - server
Přispěvatel: nettezzaumana 03 Září 2009, 19:29:33
uff. podobne ignorantsky polozenej dotaz jsem videl nekdy v 93 :D

http://www.root.cz/texty/jak-se-spravne-ptat/
Název: Re: DNS - server
Přispěvatel: hama4tux 04 Září 2009, 14:36:54
uff. podobne ignorantsky polozenej dotaz jsem videl nekdy v 93 :D

http://www.root.cz/texty/jak-se-spravne-ptat/

.) no co každý může být někdy utahaný.
Pingnu z win XP stanice flag A, ale nepingnu CNAME
ze serveru pingam jak flag A tak CNAME

Takže základ máte na vrchu doplním configy
Kód: [Vybrat]
  GNU nano 2.0.7                                      File: 10.17.97.0.rev

$ORIGIN .
$TTL 38400 ; 10 hours 40 minutes
97.17.10.in-addr.arpa IN SOA atento-brno2.atento.int. root.atento.int. (
                2003021825 ; serial
                10800 ; refresh (3 hours)
                3600 ; retry (1 hour)
                604800 ; expire (1 week)
                38400 ; minimum (10 hours 40 minutes)
                )
                NS atento-brno2.atento.int.
;
$ORIGIN 97.17.10.in-addr.arpa.
1 PTR atento-brno2.atento.int.

Kód: [Vybrat]
  GNU nano 2.0.7                                     File: atento.int.hosts

$ORIGIN .
$TTL 38400 ; 10 hours 40 minutes
atento.int IN SOA atento-brno2.atento.int. root.atento.int. (
                2003021833 ; serial
                10800 ; refresh (3 hours)
                3600 ; retry (1 hour)
                604800 ; expire (1 week)
                38400 ; minimum (10 hours 40 minutes)
                )
                NS dns.atento.int.
                MX 10 mail.atento.int.
$ORIGIN atento.int.
atento-brno2    A 10.17.97.26
atento-brno3    A 10.17.97.28
dns             CNAME atento-brno2
pdc             CNAME atento-brno2
mail            CNAME atento-brno2
bdc             CNAME atento-brno3

Kód: [Vybrat]
  GNU nano 2.0.7                                       File: named.conf

// This is the primary configuration file for the BIND DNS server named.
//
// Please read /usr/share/doc/bind9/README.Debian.gz for information on the
// structure of BIND configuration files in Debian, *BEFORE* you customize
// this configuration file.
//
// If you are just adding zones, please do that in /etc/bind/named.conf.local

// prime the server with knowledge of the root servers
zone "." {
        type hint;
        file "/etc/bind/db.root";
};

// be authoritative for the localhost forward and reverse zones, and for
// broadcast zones as per RFC 1912

zone "localhost" {
        type master;
        file "/etc/bind/db.local";
};

zone "127.in-addr.arpa" {
        type master;
        file "/etc/bind/db.127";
};
zone "0.in-addr.arpa" {
        type master;
        file "/etc/bind/db.0";
};

zone "255.in-addr.arpa" {
        type master;
        file "/etc/bind/db.255";
};

acl brno {
        10.17.97.0/24;
        127.0.0.1;
};
acl seconddns {
        10.17.97.28;
};

zone "atento.int" {
        type master;
        file "/etc/bind/atento.int.hosts";
        allow-query { brno; };
        allow-transfer { brno; };
        allow-update { brno; };
};

zone "97.17.10.in-addr.arpa" {
        type master;
        file "/etc/bind/10.17.97.0.rev";
        allow-query {
                brno;
        };
        allow-update {
                brno;
        };
};

include "/etc/bind/named.conf.options";
include "/etc/bind/named.conf.local";
Název: Re: DNS - server
Přispěvatel: hama4tux 10 Září 2009, 12:06:22
Zkus to přeložit do srozumělštiny

Co konkrétně chceš přeložit?.)


Tak ti nic nepřeložím, protože to funguje jen jeden malí překlep tam byl:)