06-19-2023, 06:06 PM
(06-19-2023, 03:13 PM)vusra Wrote: Adding U_BOOT_PARAMETERS="ipv6.disable=1" to /etc/default/u-boot and run u-boot-update use to work before tow boot. What is the new methodology to pass ipv6.disable=1 to kernel ?
i cannot be certain about kernel parameters with bootloader, but syntax should be same, just inserting the string input is little different, probably different place.
however, you could try sysctl.conf, this happens during boot of course, so it's not immediate.
Code:
# location: /etc/sysctl.conf
net.ipv6.conf.all.disable_ipv6=1
net.ipv6.conf.default.disable_ipv6=1