MT#58452 Add missing IPv4 listening addresses

These services also listen on the localhost and any address. Add these
explicitly as we might have other components relying on being able
to access these services through them.

Change-Id: I6d234620847ccc88f2c709a20692c6d5b7174229
mr12.1.1
Guillem Jover 2 years ago
parent 28b1bed078
commit 028ca40233

@ -12,6 +12,7 @@ port:
# NTP (systemd-timesyncd does not listen)
udp:123:
listening: [% ntp.backend == 'timesyncd' ? 'false' : 'true ' %]
ip: ["0.0.0.0", "127.0.0.1"]
# Check for a closed port, nothing there.
tcp:7777:

@ -197,7 +197,7 @@ port:
# Redis
tcp:6379:
listening: true
ip: ["[% ha_int_ips.0 %]"]
ip: ["127.0.0.1", "[% ha_int_ips.0 %]"]
[% END -%]
[% IF is_rtp -%]

Loading…
Cancel
Save