removido
(usa Nenhuma)
Enviado em 26/03/2012 - 19:17h
Ae galera
seguinte eu preciso que as pessoas da minha rede local ao digitarem no navegador
http://hrtgb
esse nome seja redirecionado para o meu servidor que está rodando apache na porta 80 com o ip 10.1.1.1
segue minhas config do bind
#named.conf.local
acl "myNets" {
127.0.0.1;
10.1.0.0/22;
192.168.1.0/24;
};
controls {
inet 127.0.0.1 allow { localhost; } keys { "rndc-key"; };
};
zone "hrtgb" {
type master;
file "/var/lib/bind/smb-domain.zone";
allow-query {
"myNets";
};
allow-transfer {
none;
};
allow-update {
key "rndc-key";
};
notify yes;
};
zone "1.1.192.in-addr.arpa" {
type master;
file "/var/lib/bind/1.1.192.in-addr.arpa.zone";
allow-query {
"myNets";
};
allow-transfer {
none;
};
allow-update {
key "rndc-key";
};
notify yes;
};
zone "1.1.10.in-addr.arpa" {
type master;
file "/var/lib/bind/1.1.10.in-addr.arpa.zone";
allow-query {
"myNets";
};
allow-transfer {
none;
};
allow-update {
key "rndc-key";
};
notify yes;
};
#Logs bind
logging {
channel custom {
file "/var/log/named/named.log";
print-time yes;
print-category yes;
};
category config {custom;};
category notify {custom;};
category dnssec {custom;};
category general {custom;};
category security {custom;};
category xfer-out {custom;};
category lame-servers {custom;};
};
#Fim logs bind
include "/etc/bind/rndc.key";
//include "/etc/bind/zones.rfc1918";
#ARQUIVO DE ZONA 1.1.10.in-addr.arpa.zone
$ORIGIN .
$TTL 38400 ; 10 hours 40 minutes
1.1.10.in-addr.arpa IN SOA hrtgb-controle.hrtgb. admin.hrtgb-controle.hrtgb. (
0 ; serial
10800 ; refresh (3 hours)
3600 ; retry (1 hour)
604800 ; expire (1 week)
38400 ; minimum (10 hours 40 minutes)
)
NS hrtgb-controle.hrtgb.
$ORIGIN 1.1.10.in-addr.arpa.
1 PTR hrtgb-controle.hrtgb.
hrtgb-controle IN A 10.1.1.1
Desde já muito obrigado galera..
abraço a todos.