View Single Post
  #17 (permalink)  
Old 11-22-2007, 01:46 AM
Centurion Centurion is offline
Active Member
 
Posts: 37
Default

Hi Phoenix - thanks for your input!

Ok, fixed the hosts file with the correct IP for the FQDN (10.0.0.5):
Code:
127.0.0.1       localhost.localdomain   localhost
10.0.0.5        node.gray.net.au        node
Verified the DNS resolution:
Code:
>dig node.gray.net.au

; <<>> DiG 9.3.2 <<>> node.gray.net.au
;; global options:  printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 47522
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 1, ADDITIONAL: 1

;; QUESTION SECTION:
;node.gray.net.au.              IN      A

;; ANSWER SECTION:
node.gray.net.au.       600     IN      A       10.0.0.5

;; AUTHORITY SECTION:
gray.net.au.            600     IN      NS      ns1.gray.net.au.

;; ADDITIONAL SECTION:
ns1.gray.net.au.        600     IN      A       10.0.0.40
Which was retruned from the DNS server as coconfigured in /etc/resolv.conf.

Disabled IPv6 (which broke DCC too along the way - need to recompile it)
Code:
>cat /etc/modprobe.d/blacklist-ipv6 
# Never load IPv6 support
blacklist       ipv6
Rebooted to make sure IPv6 wasn't coming back, and removed IPv6 entries from /etc/hosts.

Then retried the tests from Thunderbird and Apple Mail:
Code:
==> /var/log/zimbra.log <==
Nov 22 19:41:15 node postfix/smtpd[29593]: connect from iceman.gray.net.au[10.0.0.4]
Nov 22 19:41:15 node postfix/smtpd[29593]: setting up TLS connection from iceman.gray.net.au[10.0.0.4]
Nov 22 19:41:17 node postfix/smtpd[29593]: TLS connection established from iceman.gray.net.au[10.0.0.4]: TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)
Nov 22 19:41:24 node postfix/master[28946]: warning: process /opt/zimbra/postfix-2.2.9/libexec/smtpd pid 29593 killed by signal 11
Nov 22 19:41:24 node postfix/master[28946]: warning: /opt/zimbra/postfix-2.2.9/libexec/smtpd: bad command startup -- throttling
During this authenticated SMTP attempt, there was no activity on loopback or eth0 on port 443, and there was no auth request sent to tomcat.

FWIW, here's the listening ports on the systtem::
Code:
>sudo netstat -tadlp | grep LIST
tcp        0      0 *:imaps                 *:*                     LISTEN     28819/java          
tcp        0      0 localhost.localdo:11553 *:*                     LISTEN     26193/MailWatch SQL 
tcp        0      0 *:pop3s                 *:*                     LISTEN     28819/java          
tcp        0      0 *:7780                  *:*                     LISTEN     28850/httpd         
tcp        0      0 node.gray.net.au:ldap   *:*                     LISTEN     28305/slapd         
tcp        0      0 localhost.localdo:10025 *:*                     LISTEN     28946/master        
tcp        0      0 localhost.localdom:7306 *:*                     LISTEN     28693/mysqld        
tcp        0      0 localhost.localdom:7307 *:*                     LISTEN     28550/mysqld        
tcp        0      0 localhost.l:netbios-ssn *:*                     LISTEN     4076/smbd           
tcp        0      0 node.gray.n:netbios-ssn *:*                     LISTEN     4076/smbd           
tcp        0      0 *:pop3                  *:*                     LISTEN     28819/java          
tcp        0      0 *:imap2                 *:*                     LISTEN     28819/java          
tcp        0      0 *:10000                 *:*                     LISTEN     4268/perl           
tcp        0      0 *:www                   *:*                     LISTEN     4243/apache2        
tcp        0      0 *:7025                  *:*                     LISTEN     28819/java          
tcp        0      0 *:ssmtp                 *:*                     LISTEN     28946/master        
tcp        0      0 ns1.gray.net.au:domain  *:*                     LISTEN     3703/named          
tcp        0      0 localhost.locald:domain *:*                     LISTEN     3703/named          
tcp        0      0 shell.gray.net.au:ssh   *:*                     LISTEN     4097/sshd           
tcp        0      0 node.gray.net.au:ssh    *:*                     LISTEN     4097/sshd           
tcp        0      0 127.0.1.1:ssh           *:*                     LISTEN     4097/sshd           
tcp        0      0 news.gray.net.au:nntp   *:*                     LISTEN     4154/xinetd         
tcp        0      0 *:ipp                   *:*                     LISTEN     3735/cupsd          
tcp        0      0 *:3128                  *:*                     LISTEN     4176/(squid)        
tcp        0      0 *:smtp                  *:*                     LISTEN     28946/master        
tcp        0      0 localhost.localdoma:953 *:*                     LISTEN     3703/named          
tcp        0      0 *:7035                  *:*                     LISTEN     28819/java          
tcp        0      0 *:https                 *:*                     LISTEN     28819/java          
tcp        0      0 localhost.:microsoft-ds *:*                     LISTEN     4076/smbd           
tcp        0      0 node.gray.:microsoft-ds *:*                     LISTEN     4076/smbd           
tcp        0      0 *:7071                  *:*                     LISTEN     28819/java
I've just finished downloading 4.5.10_GA and I'll give that a shot.
Reply With Quote