We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c92114e commit c7036beCopy full SHA for c7036be
src/etc/inc/plugins.inc.d/dhcpd.inc
@@ -251,7 +251,7 @@ function dhcpd_radvd_configure($verbose = false, $blacklist = [])
251
}
252
253
foreach (config_read_array('virtualip', 'vip') as $vip) {
254
- if ($vip['interface'] != $dhcpv6if || !is_ipaddrv6($vip['subnet']) || $vip['subnet_bits'] == '128') {
+ if ($vip['interface'] != $dhcpv6if || !is_ipaddrv6($vip['subnet'])) {
255
continue;
256
257
@@ -263,7 +263,7 @@ function dhcpd_radvd_configure($verbose = false, $blacklist = [])
263
264
265
266
- if (!empty($vip['nobind'])) {
+ if ($vip['subnet_bits'] == '128' || !empty($vip['nobind'])) {
267
268
269
0 commit comments