Skip to content

Commit e05281b

Browse files
authored
Fix IPv6 node connections (munin-monitoring#1661)
Commit 012b33a changed `from IO::Socket::INET6` to `IO::Socket::IP` but that silently changed the meaning of our default `local_address 0` from `::` to `0.0.0.0` which made IPv6-connections fail by default. By explicitly defaulting to `::` we fix IPv6 connections to munin-node. Fixes munin-monitoring#1402
2 parents f5033d3 + 5cb1116 commit e05281b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/Munin/Master/Config.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ my %booleans = map {$_ => 1} qw(
153153
graph_data_size => 'normal',
154154
graph_strategy => 'cron',
155155
groups => {},
156-
local_address => 0,
156+
local_address => '::',
157157
logdir => $Munin::Common::Defaults::MUNIN_LOGDIR,
158158
logoutput => 'syslog',
159159
max_processes => 16,

0 commit comments

Comments
 (0)