jitsi/ice4j

Bug: NAT_HARVESTER_LOCAL_ADDRESS listener is always IPv6

casipw opened this issue · 1 comments

My setup:

  • jitsi-videobridge behind a NAT
  • network interface ens3 with IP 192.168.1.5
  • IPv6 is enabled system-wide, but disabled for the network interface ens3
  • sip-communicator.properties contains: org.ice4j.ice.harvest.NAT_HARVESTER_LOCAL_ADDRESS=192.168.1.5

Expected result:

  • jitsi-videobridge listens to 192.168.1.5::10000 (IPv4)

Actual result:

  • jitsi-videobridge listens to [::ffff:192.168.1.5]:10000 (IPv6), making it unusable for me
# ss -lpn | grep 10000
udp UNCONN 0 0 [::ffff:192.168.1.5]:10000 *:* users:(("java",pid=9368,fd=134))

Can you post the config and the startup logs?