Differences
This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| public:my_own_ipv6_tips_for_servers [2010/01/04 23:31] – created Nico | public:my_own_ipv6_tips_for_servers [2024/03/30 22:22] (current) – cosmetic fixes Nico | ||
|---|---|---|---|
| Line 5: | Line 5: | ||
| ===== SSH ===== | ===== SSH ===== | ||
| add to / | add to / | ||
| + | |||
| < | < | ||
| ListenAddress :: | ListenAddress :: | ||
| Line 18: | Line 19: | ||
| ===== vsftpd ===== | ===== vsftpd ===== | ||
| you'll have to run to different instances of vsftpd, one for ipv4, and one for ipv6. | you'll have to run to different instances of vsftpd, one for ipv4, and one for ipv6. | ||
| - | * / | + | |
| < | < | ||
| listen=YES | listen=YES | ||
| </ | </ | ||
| - | * / | + | |
| < | < | ||
| + | listen=NO | ||
| listen_ipv6=YES | listen_ipv6=YES | ||
| </ | </ | ||
| Line 29: | Line 32: | ||
| Then run each instance separately: | Then run each instance separately: | ||
| < | < | ||
| - | # / | + | # / |
| - | # / | + | # / |
| </ | </ | ||
| + | |||
| ===== qmail ===== | ===== qmail ===== | ||
| - | compile ucspi-tcp (a.k.a. // | + | compile |
| ===== dovecot ===== | ===== dovecot ===== | ||
| for each " | for each " | ||
| Line 42: | Line 47: | ||
| of course, ssl_listen have to be used only if you use SSL version of the protocols (that is, imaps or pop3s). | of course, ssl_listen have to be used only if you use SSL version of the protocols (that is, imaps or pop3s). | ||
| + | |||
| + | ===== netfilter ===== | ||
| + | remember that ipv6 needs icmp to work, so you have to enable it: | ||
| + | < | ||
| + | # ip6tables -A INPUT -p icmpv6 -j ACCEPT | ||
| + | </ | ||
| + | |||
| + | ===== Packet Filter ===== | ||
| + | remember that ipv6 needs icmp to work, so you have to enable it. add this to / | ||
| + | < | ||
| + | pass proto ipv6-icmp all | ||
| + | </ | ||
| + | |||
| + | ===== MySQL ===== | ||
| + | as stated [[http:// | ||