boa tarde,

estou com um servidor rodando unix e as máquinas na rede não estão achando o
servidor pelo nome.

as pessoas tentam acessar nas estações digitando \\b180 (nome do servidor)
e da erro. não sei configurar um dns, só fiz alguns testes.
um problema eh que rodo um dhcp interno.
gostaria de saber como configurar certinho o meu arquivo named.conf abaixo.
vai também o meud dhcpd.conf.
OBS: o dhcp está rodando perfeitamente.

valeu.

// generated by named-bootconf.pl
key mykey {
algorithm hmac-md5
secret "MWXOjhQcnygYRGaIEZKuBQ==";
};
controls {
inet 127.0.0.1 port 953
allow { 127.0.0.1; }
keys { "mykey"; };
};
options {
directory "/var/named";
/*
* If there is a firewall between you and nameservers you want
* to talk to, you might need to uncomment the query-source
* directive below. Previous versions of BIND always asked
* questions using port 53, but BIND 8.1 uses an unprivileged
* port by default.
*/
// query-source address * port 53;
dump-file "/var/named/dump/named_dump.db";
statistics-file "/var/named/dump/named.stats";
memstatistics-file "/var/named/dump/named.memstats";
// remove this next line if you want named to listen on
// all available interfaces, or adjust add new ones as
// you see fit
listen-on { 127.0.0.1/32; };
};
//
// a caching only nameserver config
//
zone "empresa" {
type master;
notify no;
file "/etc/bind/db/db.empresa";
allow-update { key mykey; };
};
#
zone "0.17.172.in-addr.arpa" {
type master;
notify no;
file "/etc/bind/db/db.172.17.0";
allow-update { key mykey };
};
zone "." {
type hint;
file "named.ca";
};
zone "0.0.127.in-addr.arpa" {
type master;
file "named.local";
};




meu dhcpd.conf

ddns-update-style interim;
ignore client-updates;
#
#
key mykey {
algorithm hmac-md5;
secret "MWXOjhQcnygYRGaIEZKuBQ==";
}
zone empresa. {
primary 172.17.0.76;
key mykey;
}
zone 0.17.172.in-addr.arpa. {
primary 172.17.0.76;
key mykey;
}
##
subnet 172.17.0.0 netmask 255.255.0.0{
range dynamic-bootp 172.17.0.15 172.17.0.230;
authoritative;
log-facility local7;
option domain-name-servers 172.17.0.76;
option netbios-name-servers 172.17.0.76;
option time-offset -4;
option routers 172.17.0.254;
option domain-name "empresa";
option subnet-mask 255.255.0.0;
option broadcast-address 172.17.0.255;
one-lease-per-client on;
default-lease-time 21600;
max-lease-time 43200;
#
## ips fixos
host b180 {
fixed-address 172.17.0.12;
hardware ethernet 0:60:b0:eb:eb:a9;
}
host mario {
fixed-address 172.17.0.61;
hardware ethernet 00:0a:e6:eC:a8:ee;
}
host mendonca {
fixed-address 172.17.0.125;
## hardware ethernet O:e0:7d:00:f7:8;
}
##host alceu {
## hardware ethernet ;
## fixed-address 172.17.0.92;
##}
##host ciro {
## hardware ethernet ;
## fixed-address 172.17.0.109;
##}
##host jana {
## hardware ethernet ;
## fixed-address 172.17.0.55;
##}
##host almox1 {
## hardware ethernet ;
## fixed-address 172.17.0.127;
##}
##host jaison {
## hardware ethernet ;
## fixed-address 172.17.0.128;
##}
}