ice4j
ice4j copied to clipboard
Bug: NAT_HARVESTER_LOCAL_ADDRESS listener is always IPv6
My setup:
- jitsi-videobridge behind a NAT
- network interface
ens3with IP 192.168.1.5 - IPv6 is enabled system-wide, but disabled for the network interface
ens3 -
sip-communicator.propertiescontains: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?