-
Hi all, how can I make sure that a baremetal node has a working network connection after booting up from the ISO? I am trying to deploy Talos to a singlenode x86_64 device. I found the
Unfortunately I cannot log in (as intended). Is there any kernel parameter that sets a more verbose logging? Just applying the configuration ( Using another machine with the same network cable, setting the IP address etc. manually and trying to resolve DNS or NTP I do not see any errors. Any ideas how to debug this? Thanks in advance! Kind Regards, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
I just tried again, the ping stops working sometime after the |
Beta Was this translation helpful? Give feedback.
The only way to debug Talos while networking is not set up is to use the console.
The best way is to hook up to the serial console (physical or virtual via IPMI or similar).
If that is not available, use video console. You can switch from the dashboard view to the Linux console via
Alt
+F1
to see logs only.Simple "ping" would be
talosctl disks --insecure -n <IP>
before the machine config is applied.You can also inspect the current state via resources:
talosctl get addresses --insecure -n <IP>
, etc.If you use static network configuration via kernel cmdline
ip=
, make sure you apply the same via machine config as well.