惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Martin Fowler
Martin Fowler
博客园 - 【当耐特】
GbyAI
GbyAI
M
MIT News - Artificial intelligence
Microsoft Azure Blog
Microsoft Azure Blog
A
About on SuperTechFans
罗磊的独立博客
Apple Machine Learning Research
Apple Machine Learning Research
腾讯CDC
F
Fortinet All Blogs
IT之家
IT之家
WordPress大学
WordPress大学
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Last Week in AI
Last Week in AI
Google DeepMind News
Google DeepMind News
Jina AI
Jina AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
D
DataBreaches.Net
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
H
Help Net Security
V
Visual Studio Blog
小众软件
小众软件
Y
Y Combinator Blog

Proxmox Support Forum

[SOLVED] - Github Auth for Mirrors-Kernel Repo? [Automation] Mass migration tool for MS Win11/Server Proxmox GUI hang - not response is it possible to reject or quarantine spam based on conditions I set ? The PVENode task list in PVE9 is partially obscured due to the terminal font being too large. About 100% error reporting due to pveproxy.service hooks Kubernetes overlay networking breaks when upgrading from PVE 9.1 to PVE 9.2.3 Zentraler Speicher No space left on device Combine datastore and direct file archival to tape Kernel panic VFS: Unable to mount root fs on unknown-block (0,0) sobald ein 7.x Kernel verwendet wird. How to migrate disk of a VM from one ZFS to another Windows Server 2025 fails to boot after PVE 9.2 / Linux 7.0 Kernel upgrade Cannot Install Proxmox on T610 Poweredge with H700 PERC card sdn Config. gateway not reachable How to safely change domain/FQDN? Welche Filterquote erreicht ihr? NFS Share status unknown on 2 of 5 nodes Can't connect to PVE9 consoles [solved] Can't connect to PVE9 consoles [solved] [SOLVED] - Use secondary network for PVE commands Created cluster, one node storage gone BUG: proxmox mail gateway FROM = null bypass spam filtering Moving existing PBS from VMWare workstation to PVE cluster Does eBGP SDN fabric support external peering? Bug: PDM 1.1 not recognizing valid license status Proxmox GUI hang - not response PVE crashes unexpectedly Proxmox Backup Server 4.2 released! Advice
IPv4 not available in newly created VM
invalid@exam · 2026-05-29 · via Proxmox Support Forum

Hi,

  • I am installing Flatcar in a Proxmox VM. I have already several VMs working under the `vmbr0` bridge.
  • I disabled the Firewall while defining the VM in Proxmox.
  • Everything goes fine during the install from the Flatcar Production ISO image.
  • But when I `ip a` , only IPV6 is available under the `eth0` interface, not IPV4, which I need to connect to my local network and upload the Ignition file.

'20230619_131421'.jpg

What am I doing wrong?
Thanks.
S.

Last edited:

And BTW, it would be REALLY nice to have a native Flatcar Container template.

I also double-checked using the Flatcar ISO image I had used previously to create another Flatcar CT. The IPv4 is also not available.
So I guess there is something in my Proxmox deployment which is wrong.

This happened on my Flatcar linux as well, and I solved it by adding a bit more to the `/etc/systemd/network/static.network` unit... specifically:

```
[Match]
Name=eth0

[Network]
LinkLocalAddressing=ipv6
Address=10.0.0.12
DNS=10.0.0.11
Domains=local

[Route]
Destination=0.0.0.0/0
Gateway=10.0.0.1
GatewayOnLink=true
```

I think the `GatewayOnLink` is the crucial component.