They are configured to listen on IPv6, at least the web server is.
The counters are pretty low, that is partly because I have been messing with it and the tables were flushed recently and partly because traffic is low since the main address does not have a DNS entry yet since I am still trying to get it working. I've updated the counters below, the 1 accepted packet on port 80 is from me just doing a telnet on the localhost.
I forgot about the log rules, I'll try adding that to see if it offers any additional clues.
Code:
root# netstat -an|grep tcp6
tcp6 0 0 :::587 :::* LISTEN
tcp6 0 0 :::80 :::* LISTEN
tcp6 0 0 :::465 :::* LISTEN
tcp6 0 0 :::53 :::* LISTEN
tcp6 0 0 :::22 :::* LISTEN
tcp6 0 0 :::25 :::* LISTEN
tcp6 0 0 :::443 :::* LISTEN
root#
Code:
root# ip6tables -L -v -n
Chain INPUT (policy ACCEPT 0 packets, 0 bytes)
pkts bytes target prot opt in out source destination
1 80 ACCEPT tcp * * ::/0 ::/0 state NEW tcp dpt:80
0 0 ACCEPT tcp * * ::/0 ::/0 state NEW tcp dpt:443
0 0 ACCEPT tcp * * ::/0 ::/0 state NEW tcp dpt:25
0 0 ACCEPT tcp * * ::/0 ::/0 state NEW tcp dpt:465
0 0 ACCEPT tcp * * ::/0 ::/0 state NEW tcp dpt:587
0 0 ACCEPT udp * * ::/0 ::/0 state NEW udp dpt:53
0 0 ACCEPT tcp * * ::/0 ::/0 state NEW tcp dpt:53
0 0 REJECT tcp * * ::/0 ::/0 tcp dpt:113 reject-with tcp-reset
0 0 ACCEPT tcp * * ::/0 ::/0 state NEW tcp dpt:22
5 368 ACCEPT all * * ::/0 ::/0 state RELATED,ESTABLISHED
201 20808 DROP all * * ::/0 ::/0
Chain FORWARD (policy ACCEPT 0 packets, 0 bytes)
pkts bytes target prot opt in out source destination
Chain OUTPUT (policy ACCEPT 0 packets, 0 bytes)
pkts bytes target prot opt in out source destination
6 448 ACCEPT all * * ::/0 ::/0
root#