mirror of
https://github.com/lucaspalomodevelop/opnsense-core.git
synced 2026-03-13 00:07:27 +00:00
radvd: fix list of source addresses on overlapping link-locals (#8517)
This commit is contained in:
parent
557b793a4e
commit
25d629fcd3
@ -348,9 +348,10 @@ include("head.inc");
|
||||
$carplist[$ifname] = convert_friendly_interface_to_friendly_descr($ifname);
|
||||
}
|
||||
}
|
||||
foreach (get_configured_ip_aliases_list() as $vip => $ifname) {
|
||||
if ($ifname == $if && (is_linklocal($vip)))
|
||||
$aliaslist[$vip] = get_vip_descr($vip) . ' (' . $vip . ')';
|
||||
foreach (config_read_array('virtualip', 'vip') as $vip) {
|
||||
if ($vip['mode'] == 'ipalias' && $if == $vip['interface'] && is_linklocal($vip['subnet'])) {
|
||||
$aliaslist[$vip['subnet']] = get_vip_descr($vip['subnet']) . ' (' . $vip['subnet'] . ')';
|
||||
}
|
||||
} ?>
|
||||
<tr>
|
||||
<td><a id="help_for_rainterface" href="#" class="showhelp"><i class="fa fa-info-circle"></i></a> <?=gettext('Source Address') ?></td>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user