Skip to content
7 changes: 6 additions & 1 deletion source/scripts/init/service.d/service_dhcp_server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,12 @@ dnsmasq_server_start ()
fi
fi
else
$SERVER -P 4096 -C $DHCP_CONF $DNS_ADDITIONAL_OPTION #--enable-dbus
PARTNER_ID=$(syscfg get PartnerID)
if [ "$PARTNER_ID" != "comcast" ]; then
$SERVER -P 1232 -C $DHCP_CONF $DNS_ADDITIONAL_OPTION #--enable-dbus
else
$SERVER -P 4096 -C $DHCP_CONF $DNS_ADDITIONAL_OPTION #--enable-dbus
fi
fi

}
Expand Down
Loading