Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| public:my_own_ipv6_tips_for_servers [2010/01/04 23:51] – 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 23: | Line 24: | ||
| </ | </ | ||
| * / | * / | ||
| + | |||
| < | < | ||
| + | listen=NO | ||
| listen_ipv6=YES | listen_ipv6=YES | ||
| </ | </ | ||
| Line 29: | Line 32: | ||
| Then run each instance separately: | Then run each instance separately: | ||
| < | < | ||
| - | # / | + | # / |
| - | # / | + | # / |
| </ | </ | ||
| Line 44: | 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:// | ||