alexkaim
(usa Debian)
Enviado em 03/01/2011 - 00:51h
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet static
address 192.168.1.2
netmask 255.255.255.0
gateway 192.168.1.1
Meu ip fixo que a operadora disponibilizou e esse:200.146.104.140.
#iptables -A PREROUTING -t nat -d 200.146.104.140 -j DNAT --to 192.168.1.2
#iptables -A PREROUTING -t nat -s 192.168.1.2 -j SNAT --to 200.146.104.140
Configuracao do Bind
named.conf
Minhas Zonas#
zone "alexkaim.com.br"{
type master ;
file "/etc/bind/db.alexkaim.com.br";
};
###reverso da rede 200.146.104.140##
zone "db.104.146.200.in-addr.arpa"{
type master;
file "/etc/bind/db.104.146.200";
};
###depois o db.alexkaim.com.br
$TTL 604800
@ IN SOA servidor.alexkaim.com.br. root.servidor.alexkaim.com.br. (
1 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS servidor.alexkaim.com.br.
@ IN MX 5 mx.alexkaim.com.br.
servidor IN A 200.146.104.140
mx IN A 200.146.104.140
www IN A 200.146.104.140
###depois db.104.146.200
servidor:/etc/bind# cat db.104.146.200
$ TTL 604800
@ IN SOA servidor.alexkaim.com.br. root.servidor.alexkaim.com.br. (
1 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTl
;
@ IN NS servidor.alexkaim.com.br.
140 IN PTR servidor.alexkaim.com.br.
140 IN PTR mx.alexkaim.com.br.
140 IN PTR
www.alexkaim.com.br.
Minhas configuracao sao essa pois estou comecando agora no linux entao se poder me ajudar,poren onde moro nao tem a onde aprende,se nao for pela net.
Obrigado pela atencao.