diff options
| author | Stefan Hanreich <s.hanreich@proxmox.com> | 2025-09-04 10:18:30 +0200 | 
|---|---|---|
| committer | Wolfgang Bumiller <w.bumiller@proxmox.com> | 2025-09-04 14:16:41 +0200 | 
| commit | 4628c6798ceceba20ae7e153b7080657d465ce5b (patch) | |
| tree | 5399858533a59ab7cd68c961e24949c3139555e9 | |
| parent | 1984f67433fa6ba9c9a60bc6046a6ae66120e919 (diff) | |
controllers: fix maximum value for ASN
ASNs are 32-bit unsigned integers where the maximum value is
4294967295.
Signed-off-by: Stefan Hanreich <s.hanreich@proxmox.com>
Reviewed-by: Dominik Csapak <d.csapak@proxmox.com>
Tested-by: Dominik Csapak <d.csapak@proxmox.com>
| -rw-r--r-- | src/PVE/Network/SDN/Controllers/EvpnPlugin.pm | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PVE/Network/SDN/Controllers/EvpnPlugin.pm b/src/PVE/Network/SDN/Controllers/EvpnPlugin.pm index 021673b..e53000a 100644 --- a/src/PVE/Network/SDN/Controllers/EvpnPlugin.pm +++ b/src/PVE/Network/SDN/Controllers/EvpnPlugin.pm @@ -25,7 +25,7 @@ sub properties {              type => 'integer',              description => "autonomous system number",              minimum => 0, -            maximum => 4294967296, +            maximum => 2**32 - 1,          },          fabric => {              description => "SDN fabric to use as underlay for this EVPN controller.",  | 
