Hi
I'm running ZCS 7.1.1 GA 3196.UBUNTU10_64 UBUNTU10_64 FOSS edition inside a Virtualbox VM.
The server has been running absolutely brilliantly since I installed in March.
However, recently I had some problems with my router (provided by my ISP) where my ADSL line kept dropping out so I had to change it for another router.
The router I changed it for was an original router I used to use and the IP addresses ranges and everything were set up just the same as the faulty router except for 1 thing and that was the IP address of the router itself. The faulty router (and therefore my default gateway on all my machines) was set to 192.168.20.254, whereas my replacement router was set to 192.168.20.1.
So, when this router change happened my ZCS stopped sending/receiving mail so I figured there must be the old .254 address somewhere in one of the config files. I went digging around and of course it was set up in BIND as a forwarder in named.conf.options.
I changed that IP to be 192.168.20.1, changed the serial number in db.<domain> (not sure if I needed to do this or not) and restarted BIND hoping this would fix the problem but it hasn't.
If I login to the webclient and try to send an email, when I click the 'Send' button it just sits there for a few seconds and then comes up with a 'Work In Progress' box saying 'The server appears to be slow to respond, and may be unavailable. Press the button to cancel your request.'
I can't see anything in any of the logs that looks like an error so I'm really confused as to what is happening here.
If someone could help me I would be VERY grateful.
I've attached the logs.
Here's my BIND setup:
named.conf
Code:
// 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
include "/etc/bind/named.conf.options";
include "/etc/bind/named.conf.local";
include "/etc/bind/named.conf.default-zones";
db.brynjellis.me.uk
Code:
;
; BIND data file for local loopback interface
;
$TTL 604800
@ IN SOA zimbra.brynjellis.me.uk. hostmaster.brynjellis.me.uk. (
201111061442 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
brynjellis.me.uk. IN NS zimbra.brynjellis.me.uk.
brynjellis.me.uk. IN MX 10 zimbra.brynjellis.me.uk.
brynjellis.me.uk. IN A 192.168.20.17
zimbra.brynjellis.me.uk. IN A 192.168.20.17 named.conf.options
Code:
options {
directory "/var/cache/bind";
// If there is a firewall between you and nameservers you want
// to talk to, you may need to fix the firewall to allow multiple
// ports to talk. See http://www.kb.cert.org/vuls/id/800113
// If your ISP provided one or more IP addresses for stable
// nameservers, you probably want to use them as forwarders.
// Uncomment the following block, and insert the addresses replacing
// the all-0's placeholder.
forwarders {
192.168.20.1;
};
};
//include "/etc/bind/rndc.key";
//auth-nxdomain no; # conform to RFC1035
// listen-on-v6 { any; };
// we are the mast server for zimbra.brynjellis.me.uk
//zone "brynjellis.me.uk" {
// type master;
// file "/etc/bind/db.brynjellis.me.uk";
//}; named.conf.local
Code:
//
// Do any local configuration here
//
// Consider adding the 1918 zones here, if they are not used in your
// organization
//include "/etc/bind/zones.rfc1918";
zone "brynjellis.me.uk" {
type master;
file "/etc/bind/db.brynjellis.me.uk";
};