Hi!,
I'm testing a dns website on FC4. I can ping to the testing website (
www.lnunez.cl) and (mail.lnunez.cl) (made twice local ...)
The big problem happens i can't send/receive emails from local accounts. KMail / THunderbird says (access denied...)
Here more info :
- 10.0.0.3 (ifcfg-eth0) (main website)
- 192.168.0.3 (ifcfg-eth0:1) (mail server)
ifcfg-eth0
Code:
DEVICE=eth0
BOOTPROTO=static
IPADDR=10.0.0.3
NETMASK=255.255.255.0
GATEGAY=10.0.0.1
HWADDR=00:10:DC:D7:BE:36
ONBOOT=yes
TYPE=Ethernet
ifcfg-eth0:1
Code:
DEVICE=eth0:1
BOOTPROTO=static
IPADDR=192.168.0.3
NETMASK=255.255.255.0
GATEGAY=10.0.0.1
HWADDR=00:10:DC:D7:BE:36
ONBOOT=yes
TYPE=Ethernet
hosts
Code:
# Do not remove the following line, or various programs
# that require network functionality will fail.
127.0.0.1 localhost.localdomain localhost
10.0.0.3 lnunez.lnunez.cl lnunez
resolv.conf
Code:
; generated by /sbin/dhclient-script
domain lnunez.cl
search lnunez.cl
nameserver 10.0.0.3
named.conf
Code:
zone "lnunez.cl" IN {
type master;
file "lnunez.zone";
allow-update { none; };
};
zone "10.0.0.in-addr.arpa" IN {
type master;
file "named.zero";
allow-update { none; };
};
lnunez.zone
Code:
;
; BIND data file for local loopback interface
;
$TTL 600
lnunez.cl. IN SOA dns.lnunez.cl. root.localhost. (
1 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
IN NS dns.lnunez.cl.
IN A 10.0.0.3
IN MX 5 mail.lnunez.cl.
dns IN A 10.0.0.3
mail IN A 192.168.0.3
www IN CNAME lnunez.cl.
ftp IN CNAME dns
;webmail IN CNAME dns
lnunez.rev
Code:
$TTL 86400
@ IN SOA lnunez. root.lnunez.cl. (
1997022700 ; Serial
28800 ; Refresh
14400 ; Retry
3600000 ; Expire
86400 ) ; Minimum
IN NS lnunez.cl.
1 IN PTR lnunez.cl.
Best Regards,
Luis (Chile)