Hello,
I’ve always used Asterisk with IPv4 until now, but I’m planning to make the move to (or at least also start supporting) IPv6. I currently have the following transports configured in pjsip.conf:
; — transports —
[transport-udp]
type = transport
protocol = udp
bind = 0.0.0.0:5060
[transport-udp6]
type = transport
protocol = udp
bind = ::
[transport-wss]
type = transport
protocol = wss
bind = 0.0.0.0:55435
Asterisk seems to work well with these UDP transport configurations. Users register both via IPv6 and IPv4, all normal. But something seems misplaced or misconfigured in the WSS transport because nobody can use WSS via IPv6; all registrations are done via IPv4. Here’s what my http.conf file looks like:
[general]
enabled=yes
enablestatic=no
bindaddr=0.0.0.0
bindport=55434
tlsenable=yes
tlsbindaddr=0.0.0.0:55435
tlscertfile=/etc/letsencrypt/live/myserver.mydomain.com.br/fullchain.pem
tlsprivatekey=/etc/letsencrypt/live/myserver.mydomain.com.br/privkey.pem
Any ideas on what I might be doing wrong?
Thank you in advance!