Hi,
I just sent a patch to fix ipv6 RA.
(we need to remove listen-ip from config, and use interface=, to
get it work)
I correctly see the packet sent now:
Nov 22 08:55:13 formationkvm3 dnsmasq-dhcp[1222769]: IPv6 router
advertisement enabled
Nov 22 08:55:13 formationkvm3 dnsmasq[1222769]: c
Hello!
Am 22/11/2023 um 05:50 schrieb Jeremy Davis:
> Apologies in advance if this is not the right place to post this. Please
> redirect me to the appropriate forum if not. I'm also happy to discuss
> off list if that is deemed more appropriate.
It's fine here, thanks for reaching out.
> My n
and refer to the (updated) wiki article for more in-depth explanations.
Signed-off-by: Fabian Grünbichler
---
local-zfs.adoc | 6 +-
system-booting.adoc | 42 +-
2 files changed, 42 insertions(+), 6 deletions(-)
diff --git a/local-zfs.adoc b/loc
Thank you for the update. This works now. I tested with IPv6 only and
dual stack.
- ping gateway
- ping VM
- hotplug NIC and get a new IP
- migration
___
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/lis
Zones previously expected a complete config, but the API schema
also contains a 'delete' parameter via the SectionConfig's
updateSchema() helper. This was not handled, and instead failed to
validate as part of the config.
The same is true for vnets and subnets, while ipams, dns and
controller entr
Handle 'delete' parameter and partial updates.
See 2 commits earlier for explanation.
Cc: Alexandre Derumier
Signed-off-by: Wolfgang Bumiller
---
src/PVE/API2/Network/SDN/Subnets.pm | 12 ++--
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/src/PVE/API2/Network/SDN/Subnet
Signed-off-by: Wolfgang Bumiller
---
src/PVE/API2/Network/SDN/Controllers.pm | 7 +++
1 file changed, 7 insertions(+)
diff --git a/src/PVE/API2/Network/SDN/Controllers.pm
b/src/PVE/API2/Network/SDN/Controllers.pm
index d8f18ab..0540a65 100644
--- a/src/PVE/API2/Network/SDN/Controllers.pm
++
This is a breaking API change for zones, vnets and subnets!
These previously expected the *complete* config, which is not how our
usual SectionConfigs work.
Further, they advertised a 'delete' API parameter which was simply
passed through as a config property which of course failed validation.
I
Handle 'delete' parameter and partial updates.
See previous commit for explanation.
Cc: Alexandre Derumier
Signed-off-by: Wolfgang Bumiller
---
src/PVE/API2/Network/SDN/Vnets.pm | 24
1 file changed, 20 insertions(+), 4 deletions(-)
diff --git a/src/PVE/API2/Network/SD
This reverts commit 53ab1495621f46c8af4dc560905f7e501bee75a7.
This also affects the updateSchema which is not intentional, since the
update API calls are supposed to take changes, not full replacements.
Signed-off-by: Wolfgang Bumiller
---
src/PVE/Network/SDN/Zones/SimplePlugin.pm | 1 -
1 file
Signed-off-by: Wolfgang Bumiller
---
src/PVE/API2/Network/SDN/Dns.pm | 7 +++
1 file changed, 7 insertions(+)
diff --git a/src/PVE/API2/Network/SDN/Dns.pm b/src/PVE/API2/Network/SDN/Dns.pm
index 3d08552..826d111 100644
--- a/src/PVE/API2/Network/SDN/Dns.pm
+++ b/src/PVE/API2/Network/SDN/Dns.
this is for completeness, currently no plugin has optional
properties...
Signed-off-by: Wolfgang Bumiller
---
src/PVE/API2/Network/SDN/Ipams.pm | 7 +++
1 file changed, 7 insertions(+)
diff --git a/src/PVE/API2/Network/SDN/Ipams.pm
b/src/PVE/API2/Network/SDN/Ipams.pm
index d6e0bc8..27ead02
Am 22/11/2023 um 08:58 schrieb Alexandre Derumier:
> - don't listen to ip address, but use interface= instead
> - generate 1 config file by vnet instead 1 by subnet
> - enable-ra is global to server, enable it in default conf
>
> Signed-off-by: Alexandre Derumier
> ---
> src/PVE/Network/SDN/Dhcp
Am 22/11/2023 um 09:54 schrieb Fabian Grünbichler:
> and refer to the (updated) wiki article for more in-depth explanations.
>
> Signed-off-by: Fabian Grünbichler
> ---
> local-zfs.adoc | 6 +-
> system-booting.adoc | 42 +-
> 2 files changed, 42
else this fails with secureboot, where the entry point must be shim and not
grub.
Signed-off-by: Fabian Grünbichler
---
tested by using the "Hard Disk" boot option, instead of the (higher priority)
'proxmox' one when booting a freshly installed system using LVM and Secure Boot
Proxmox/Install.p
On 11/22/23 12:53, Wolfgang Bumiller wrote:
> This is a breaking API change for zones, vnets and subnets!
>
> These previously expected the *complete* config, which is not how our
> usual SectionConfigs work.
>
> Further, they advertised a 'delete' API parameter which was simply
> passed throu
When removing a gateway do not attempt to delete its entry from
macs.db since we do not have anything cached for the gateway anyway.
Reported-By: Wolfgang Bumiller
Signed-off-by: Stefan Hanreich
---
src/PVE/Network/SDN/Subnets.pm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
This is needed so dhcp-ranges are properly displayed as changed in the
web UI.
Also took the chance to properly indent the encode_value function with
our indentation scheme.
Signed-off-by: Stefan Hanreich
---
src/PVE/Network/SDN.pm | 14 --
1 file changed, 8 insertions(+), 6 deletio
The ip parameter has been added to the delete endpoint, so only a
specific mapping gets deleted instead of all mappings for that mac
address. Reflect this change in the UI.
Signed-off-by: Stefan Hanreich
---
www/manager6/tree/DhcpTree.js | 1 +
1 file changed, 1 insertion(+)
diff --git a/www/ma
Currently when updating or deleting a mapping in the IPAM we would
delete all existing entries in the IPAM with that mac address. Now we
only delete the specific entry we are updating / deleting.
Signed-off-by: Stefan Hanreich
---
src/PVE/API2/Network/SDN/Ips.pm | 20 +---
src/PV
Am 22/11/2023 um 13:19 schrieb Fabian Grünbichler:
> else this fails with secureboot, where the entry point must be shim and not
> grub.
>
> Signed-off-by: Fabian Grünbichler
> ---
> tested by using the "Hard Disk" boot option, instead of the (higher priority)
> 'proxmox' one when booting a fresh
This fixes the host->guest direction with noNVC as a client (and
likely others).
Signed-off-by: Fiona Ebner
---
...-ui-vnc-clipboard-fix-inflate_buffer.patch | 33 +++
debian/patches/series | 1 +
2 files changed, 34 insertions(+)
create mode 100644
deb
This fixes the host->guest direction with noNVC as a client (and
likely others).
Reported-by: Friedrich Weber
Signed-off-by: Fiona Ebner
---
...-ui-vnc-clipboard-fix-inflate_buffer.patch | 34 +++
debian/patches/series | 1 +
2 files changed, 35 insertio
Am 22.11.23 um 13:36 schrieb Fiona Ebner:
> This fixes the host->guest direction with noNVC as a client (and
> likely others).
>
> Signed-off-by: Fiona Ebner
Sorry, completely forgot to add Friedrich's Reported-by's. Sent a v2.
___
pve-devel mailing
Installed a patched pve-qemu-kvm package provided by Fiona and can
confirm that the host->guest clipboard direction works now.
More specifically: Entering something in the noVNC clipboard textbox,
trying to paste in a text editor running inside a Debian Bullseye+XFCE
VM with spice-vdagent 0.20.0-2
Am 22/11/2023 um 13:45 schrieb Friedrich Weber:
> Would be great if we could get this in, as the VNC clipboard is
> half-broken without it.
not configurable via the UI though, hmm..
___
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.
Am 22.11.23 um 13:41 schrieb Fiona Ebner:
> This fixes the host->guest direction with noNVC as a client (and
> likely others).
>
> Reported-by: Friedrich Weber
> Signed-off-by: Fiona Ebner
Patch also sent upstream now:
https://lists.nongnu.org/archive/html/qemu-devel/2023-11/msg04845.html
___
applied, thanks
___
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel
Am 22/11/2023 um 13:29 schrieb Stefan Hanreich:
> Currently when updating or deleting a mapping in the IPAM we would
> delete all existing entries in the IPAM with that mac address. Now we
> only delete the specific entry we are updating / deleting.
>
> Signed-off-by: Stefan Hanreich
> ---
> src
Am 22/11/2023 um 13:41 schrieb Fiona Ebner:
> This fixes the host->guest direction with noNVC as a client (and
> likely others).
>
> Reported-by: Friedrich Weber
> Signed-off-by: Fiona Ebner
> ---
> ...-ui-vnc-clipboard-fix-inflate_buffer.patch | 34 +++
> debian/patches/series
Am 22/11/2023 um 14:22 schrieb Stefan Hanreich:
>> is this really related?
>
> somewhat. add_ip never added a cache entry in macs.db which didn't cause
> any issues when we added gateways via add_ip. But now that we use it in
> update as well we need to create the entries in this function as well
Am 22/11/2023 um 13:29 schrieb Stefan Hanreich:
> The ip parameter has been added to the delete endpoint, so only a
> specific mapping gets deleted instead of all mappings for that mac
> address. Reflect this change in the UI.
>
> Signed-off-by: Stefan Hanreich
> ---
> www/manager6/tree/DhcpTree
Am 22/11/2023 um 14:00 schrieb Stefan Lendl:
> * start- and end-addresses must be valid IPs
> * must both be in the subnet's CIDR
> * and start needs to smaller (or equal) to end
>
> Signed-off-by: Stefan Lendl
> ---
> src/PVE/Network/SDN/SubnetPlugin.pm | 28
> 1 fi
Am 20/11/2023 um 20:19 schrieb Stefan Hanreich:
> When editing a NIC there was a possibility of duplicate IPAM entries being
> generated. This should be fixed with this patch series.
>
> Additionally when creating vNICs for a container there were multiple warnings
> in the log due to the LXC modul
I tested this with multiple Subnets:
It works if MAC is 1x in IPv4 subnet and 1x in IPv6 subnet.
- updating either IPv4 or IPv6
- other one persists
- update IPv4 to be in another subnet
- auto-selects the new subnet
Encountered issues:
- change IPv4 to IPv6 (and vice versa)
> can't find an
Signed-off-by: Christian Ebner
---
pvesdn.adoc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pvesdn.adoc b/pvesdn.adoc
index 5d87d09..f362da4 100644
--- a/pvesdn.adoc
+++ b/pvesdn.adoc
@@ -423,7 +423,7 @@ Controllers
---
Some zones implement a separated control a
Am 22/11/2023 um 14:52 schrieb Christian Ebner:
> Signed-off-by: Christian Ebner
> ---
> pvesdn.adoc | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
>
applied, thanks!
___
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.pr
Signed-off-by: Christian Ebner
---
pvesdn.adoc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pvesdn.adoc b/pvesdn.adoc
index f362da4..fdc6ea7 100644
--- a/pvesdn.adoc
+++ b/pvesdn.adoc
@@ -538,7 +538,7 @@ stack of the guest or rebooting it.
[[pvesdn_ipam_plugin_netbox]]
Signed-off-by: Christian Ebner
---
www/manager6/sdn/ZoneView.js | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/www/manager6/sdn/ZoneView.js b/www/manager6/sdn/ZoneView.js
index 71890dd3..67e86e16 100644
--- a/www/manager6/sdn/ZoneView.js
+++ b/www/manager6/sdn/ZoneView.
Am 22/11/2023 um 15:22 schrieb Christian Ebner:
> Signed-off-by: Christian Ebner
> ---
> www/manager6/sdn/ZoneView.js | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
>
applied, thanks!
___
pve-devel mailing list
pve-devel@lists.proxm
Am 22/11/2023 um 15:09 schrieb Christian Ebner:
> Signed-off-by: Christian Ebner
> ---
> pvesdn.adoc | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
>
applied, thanks!
___
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.pr
applied, thanks
___
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel
Signed-off-by: Alexander Zeidler
---
de.po | 183 ++
1 file changed, 81 insertions(+), 102 deletions(-)
diff --git a/de.po b/de.po
index 5bc5e42..ceadce6 100644
--- a/de.po
+++ b/de.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: proxmox
zfs-2.2.1 was released yesterday.
We've already picked all critical patches (potentially involving dataloss)
and a few cosmetic ones.
quickly skimming through the changelog adds - nothing stands out that
sounds particularly scary w.r.t. regressions, but also nothing that we
missed until now. Some
Signed-off-by: Stoiko Ivanov
---
debian/zfsutils-linux.install | 2 ++
1 file changed, 2 insertions(+)
diff --git a/debian/zfsutils-linux.install b/debian/zfsutils-linux.install
index e788e27c..2fd7aefe 100644
--- a/debian/zfsutils-linux.install
+++ b/debian/zfsutils-linux.install
@@ -35,6 +35,7
Signed-off-by: Stoiko Ivanov
---
...-move-manpage-arcstat-1-to-arcstat-8.patch | 2 +-
...-guard-access-to-l2arc-MFU-MRU-stats.patch | 2 +-
...uncate_shares-without-etc-exports.d.patch} | 0
...ol-Remove-broken-blk-mq-optimization.patch | 99 -
...evert-zvol-Temporally-disable-blk
Hi,
I think it could be improve with checking that
we don't have overlapping ranges in a subnet, like
range=start=192.168.0.10,end=192.168.0.20
range=start=192.168.0.15,end=192.168.0.25
I'm 100% sure it'll break with netbox ipam.
Message initial
De: Thomas Lamprecht
Répond
On Wed, 2023-11-22 at 16:27 +0100, Alexander Zeidler wrote:
> Signed-off-by: Alexander Zeidler
> ---
> de.po | 183
Hannes Duerr mentioned:
1. that my sent translation "Severität" for Severity/Severities is
maybe not as appropriate as "Schweregrad". "Schwere" is so far used
once in de.po
2. "Be
As this procedure could *potentially* lead to data loss (however
unlikely if followed correctly), put a big warning on top, for safety.
Signed-off-by: Christoph Heiss
---
Tested both (GRUB on ext4, system-boot with ZFS-on-root) scenarios by
installing a clean PVE 8.0, upgrading, rebooting and the
Am 22/11/2023 um 16:27 schrieb Alexander Zeidler:
> Signed-off-by: Alexander Zeidler
> ---
> de.po | 183 ++
> 1 file changed, 81 insertions(+), 102 deletions(-)
>
>
applied, with s/Datenträger/Laufwerk/ for the virtio-driver convenience f
Am 22/11/2023 um 18:07 schrieb Christoph Heiss:
> As this procedure could *potentially* lead to data loss (however
> unlikely if followed correctly), put a big warning on top, for safety.
>
> Signed-off-by: Christoph Heiss
> ---
> Tested both (GRUB on ext4, system-boot with ZFS-on-root) scenarios
PUT endpoints have changed so they work like the other SectionConfig
endpoints. Reflect those changes in the UI.
Signed-off-by: Stefan Hanreich
---
www/manager6/sdn/SubnetEdit.js | 23 ++---
www/manager6/sdn/VnetEdit.js | 18 +-
www/manager6/sdn/zones/Base.j
Signed-off-by: Christoph Heiss
---
This is essentially what Fabian and Aaron discovered earlier today. Just
let users know that if that happens, it's not something we can do much
about on our end.
system-booting.adoc | 6 ++
1 file changed, 6 insertions(+)
diff --git a/system-booting.adoc b
Hi,
Could it be possible to apply this small pve-network patch ?
Message initial
De: Alexandre Derumier
Répondre à: Proxmox VE development discussion
À: pve-devel@lists.proxmox.com
Objet: [pve-devel] [PATCH pve-network] Fix #4917: evpn: forbid vlan-
aware bridge
Date: 27/10/2
Signed-off-by: Stefan Hanreich
---
www/manager6/sdn/zones/Base.js | 1 +
1 file changed, 1 insertion(+)
diff --git a/www/manager6/sdn/zones/Base.js b/www/manager6/sdn/zones/Base.js
index db9b47b18..cabb7d21a 100644
--- a/www/manager6/sdn/zones/Base.js
+++ b/www/manager6/sdn/zones/Base.js
@@ -78,
Am 22/11/2023 um 18:45 schrieb Christoph Heiss:
> Signed-off-by: Christoph Heiss
> ---
> This is essentially what Fabian and Aaron discovered earlier today. Just
> let users know that if that happens, it's not something we can do much
> about on our end.
>
> system-booting.adoc | 6 ++
> 1 f
Signed-off-by: Stefan Hanreich
---
src/PVE/Network/SDN/Dhcp/Dnsmasq.pm | 8
1 file changed, 8 insertions(+)
diff --git a/src/PVE/Network/SDN/Dhcp/Dnsmasq.pm
b/src/PVE/Network/SDN/Dhcp/Dnsmasq.pm
index 654f9e4..ed930cf 100644
--- a/src/PVE/Network/SDN/Dhcp/Dnsmasq.pm
+++ b/src/PVE/Netwo
Am 22/11/2023 um 18:41 schrieb Stefan Hanreich:
> PUT endpoints have changed so they work like the other SectionConfig
> endpoints. Reflect those changes in the UI.
>
> Signed-off-by: Stefan Hanreich
> ---
> www/manager6/sdn/SubnetEdit.js | 23 ++---
> www/manager6/sdn/VnetEdit
Am 22/11/2023 um 19:05 schrieb Stefan Hanreich:
> Signed-off-by: Stefan Hanreich
> ---
> www/manager6/sdn/zones/Base.js | 1 +
> 1 file changed, 1 insertion(+)
>
>
applied, thanks!
___
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists
Am 27/10/2023 um 13:53 schrieb Alexandre Derumier:
> Do it on vnet update instead throwing a warning at config generation.
>
> Signed-off-by: Alexandre Derumier
> ---
> src/PVE/Network/SDN/Zones/EvpnPlugin.pm | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
>
applied, thanks!
__
Am 22/11/2023 um 19:33 schrieb Stefan Hanreich:
> Signed-off-by: Stefan Hanreich
> ---
> src/PVE/Network/SDN/Dhcp/Dnsmasq.pm | 8
> 1 file changed, 8 insertions(+)
>
>
applied, thanks!
___
pve-devel mailing list
pve-devel@lists.proxmox.com
Signed-off-by: Thomas Lamprecht
---
fixes the recent refactoring into its own component
www/manager6/form/IsoSelector.js | 5 +
1 file changed, 5 insertions(+)
diff --git a/www/manager6/form/IsoSelector.js b/www/manager6/form/IsoSelector.js
index 632ee7f0..0bc6346c 100644
--- a/www/manager
Thanks for your quick and comprehensive response! You guys rock! :)
On 22/11/23 19:19, Thomas Lamprecht wrote:
It's fine here, thanks for reaching out.
:)
As a housekeeping matter, we're looking to update our GPG signing key -
that we sign the index file we provide for downloading our LXC t
For the record, two things inline
Am 22/11/2023 um 18:41 schrieb Stefan Hanreich:
> diff --git a/www/manager6/sdn/zones/Base.js b/www/manager6/sdn/zones/Base.js
> index db9b47b18..2eecb101a 100644
> --- a/www/manager6/sdn/zones/Base.js
> +++ b/www/manager6/sdn/zones/Base.js
> @@ -34,9 +34,9 @@ Ext
64 matches
Mail list logo