Replies: 3 comments 4 replies
-
Some progress... I discovered the 'new' (since 1.6) Image Factory images were needed since my test server requires However more generally I still need to be able to not specify the interface name as this varies between different server hardware types in the cluster. |
Beta Was this translation helpful? Give feedback.
-
The |
Beta Was this translation helpful? Give feedback.
-
Having gone back to test this to submit a bug it does eventually succeed, but there is around 3 minutes of Looking at the dracut kernel params documentation, it provides the option:
I can confirm that setting this in the I'll see about making a documentation PR to add this to the talos kernel docs as this might be generally more useful than |
Beta Was this translation helpful? Give feedback.
-
I'm trying to PXE boot talos 1.8, having previously been booting 1.3.1 successfully.
Our servers can't reach the outside, so we need to specify the DNS (and NTP) servers, but want to just use DHCP/defaults otherwise.
I'm using the following on the kernel command-line to set the DNS server and NTP server (same host):
ip=:::::::10.0.0.254::10.0.0.254
However it seems to try to create a `bond0 interface which then never gets a network address, rather than using the 'physical' interface:
I can explictly set the interface by changing the
ip
param to:ip=:::::eno1:dhcp:10.0.0.254::10.0.0.254
This doesn't then try to generate
bond0
but instead seems to fail to being up the interface properly (no DHCP requests are seen on the DHCP server) and the logs show:I have also tried using
net.ifnames=0
and settingeth0
instead ofeno1
but the result is the same:I can boot this server from PXE into other environments and the networking stack all works as expected for DHCP/DNS/NTP.
Any ideas on how to fix this?
Beta Was this translation helpful? Give feedback.
All reactions