ejabberd - Comments for "ejabberd on IPv6 AND IPv4" https://www.ejabberd.im/node/1003 en What does the IPv6 setting on https://www.ejabberd.im/node/1003#comment-54643 <p>What does the IPv6 setting on my router do? I was just looking thru the settings of my Airport Extreme base station router and came across IPv6. There's a check in the box that says "Block Incoming IPv6 Connections". What exactly changes if I uncheck that box and allow the incoming connections? Are there certain internet applications that it would help or hinder? It says something about how IPv6 increases the address size or something?? Any networking pros please advise. Thanx!</p> Tue, 08 Sep 2009 08:04:50 +0000 maryleen comment 54643 at https://www.ejabberd.im Related bug issue: https://www.ejabberd.im/node/1003#comment-51149 <p>Related bug issue: <noindex><a href="https://support.process-one.net/browse/EJAB-389" rel="nofollow" >Impossible to bind the same port to multiple interfaces</a></noindex></p> Mon, 29 Oct 2007 12:02:54 +0000 mfoss comment 51149 at https://www.ejabberd.im I don't know the erlang https://www.ejabberd.im/node/1003#comment-2190 <p>I don't know the erlang programming mode, but posix has the getaddrinfo call,<br /> which allows transparent ipv6/ipv4 working.</p> <p>Also, at least under linux (I think windows has a more complex process), listening<br /> on "::5222" will give a socket that will accept ipv4 and ipv6 connections.</p> Fri, 01 Sep 2006 21:05:48 +0000 sgala@jabber.org comment 2190 at https://www.ejabberd.im Set on different port numbers https://www.ejabberd.im/node/1003#comment-2154 <p>Unfortunately this is not possible:</p> <pre> {5222, ejabberd_c2s, []}, {5222, ejabberd_c2s, [inet6]},</pre><p> But you can get IPv4 and IPv6 at the same time if you bind each listening socket to a different port number, like this:</p> <pre> {5222, ejabberd_c2s, []}, {5224, ejabberd_c2s, [inet6]},</pre> Sat, 19 Aug 2006 17:27:22 +0000 mfoss comment 2154 at https://www.ejabberd.im