Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
public:my_own_ipv6_tips_for_servers [2010/11/21 00:23] Nicopublic:my_own_ipv6_tips_for_servers [2024/03/30 22:22] (current) – cosmetic fixes Nico
Line 5: Line 5:
 ===== SSH ===== ===== SSH =====
 add to /etc/ssh/sshd_config: add to /etc/ssh/sshd_config:
 +
 <code> <code>
 ListenAddress :: ListenAddress ::
Line 23: Line 24:
 </code> </code>
   * /etc/vsftpd_ipv6.conf:   * /etc/vsftpd_ipv6.conf:
 +
 <code> <code>
 +listen=NO
 listen_ipv6=YES listen_ipv6=YES
 </code> </code>
Line 29: Line 32:
 Then run each instance separately: Then run each instance separately:
 <code> <code>
-# /path/to/vsftpd /usr/local/etc/vsftpd.conf +# /path/to/vsftpd /etc/vsftpd.conf 
-# /path/to/vsftpd /usr/local/etc/vsftpd_ipv6.conf+# /path/to/vsftpd /etc/vsftpd_ipv6.conf
 </code> </code>
  
Line 48: Line 51:
 remember that ipv6 needs icmp to work, so you have to enable it: remember that ipv6 needs icmp to work, so you have to enable it:
 <code> <code>
-        # ip6tables -A INPUT -p icmpv6 -j ACCEPT+# ip6tables -A INPUT -p icmpv6 -j ACCEPT
 </code> </code>
 +
 +===== Packet Filter =====
 +remember that ipv6 needs icmp to work, so you have to enable it. add this to /etc/pf.conf:
 +<code>
 +pass proto ipv6-icmp all    
 +</code>
 +
 +===== MySQL =====
 +as stated [[http://bugs.mysql.com/bug.php?id=49024|here]], you need at least MySQL v5.5.x for ipv6 to work.