Dear Maintainer,
There is a dual problem to this bug: the configuration interface *only*
listens on IPv6. I think this is the same problem. I've seen this on two
different machines.
* What led up to the situation?
Set the following in the configuration file:
ipv6_enabled on
stream_port 8281
stream_localhost off
webcontrol_port 8280
webcontrol_localhost off
* What was the outcome of this action?
- Configuration server listen on IPv6 only,
- Streaming server listens on IPv4 only
netstat -ln shows the following
tcp 0 0 0.0.0.0:8281 0.0.0.0:* LISTEN
tcp6 0 0 ::1:8280 :::* LISTEN
* What outcome did you expect instead?
Both configuration and streaming server listen on both IPv4 and IPv6,
i.e.,
tcp 0 0 0.0.0.0:8280 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:8281 0.0.0.0:* LISTEN
tcp6 0 0 ::1:8280 :::* LISTEN
tcp6 0 0 ::1:8281 :::* LISTEN