I know there is a parameter named ip
which lets you configure IPv4 addresses on the Linux kernel through the boot loader. That looks like the following:
ip=192.0.2.1::192.0.2.62:255.255.255.192::eth0:none
I'm looking for an equal parameter for IPv6 configuration. I couldn't find anything about this in the kernel documentations.
Update: Because of a lot of you asked why I would need this: The idea to use a kernel configuration came up related to this problem. I suspect the regular boot-up interface configuration is not done, because the interfaces are already up. The reason for this could be that I'm using a pre-boot environment with a Dropbear SSH server to allow me to unlock my encrypted root partition. The IP addresses for this environment are configured through GRUB with the ip=
parameter. There is no DHCP or Router Advertisement available on that Ethernet segment and as this is the uplink segment provided by a large hosting company, there is no way to change that fact.
Sorry, but if you want this, you'll have to build it yourself, or more likely, reuse someone else's implementation.
The
ip=
command line option you've been using is actually part of the kernel's boot code for mounting an NFS root filesystem. It has never been extended for IPv6, and there is no kernel boot parameter for configuring IPv6 at boot time.That said, some Linux distributions such as Red Hat have implemented their own
ipv6=
boot parameter for their installation media. You may be able to reuse this code in your custom initramfs.According to Fedora, the ip= parameter can be used with IPv4 or IPv6 addresses. IPv6 addresses must be enclosed in square brackets. If you need both, you can use multiple ip= options on the kernel line as in:
... ip=[2001:db8::dead:beef]::[2001:db8::cafe:babe]:64::eth0:none ip=192.0.2.5::192.0.2.1:255.255.255.0::eth0:none ...
All your boot parameters are available via /proc/cmdline after boot. So, you can just set up all needed options via custom mkinitcpio hook, which would parse cmdline in search for specific param. You can use ipv6= like ip= one.
Here is how it looks like in Hetzner's Rescue mode (Debian 11):