[pve-devel] [PATCH http-server 1/1] increase allowed spiceport range
Dominik Csapak
d.csapak at proxmox.com
Mon Mar 2 10:32:59 CET 2020
Signed-off-by: Dominik Csapak <d.csapak at proxmox.com>
---
PVE/APIServer/AnyEvent.pm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/PVE/APIServer/AnyEvent.pm b/PVE/APIServer/AnyEvent.pm
index 3ce948f..4bac1ca 100644
--- a/PVE/APIServer/AnyEvent.pm
+++ b/PVE/APIServer/AnyEvent.pm
@@ -808,7 +808,7 @@ sub handle_spice_proxy_request {
eval {
- die "Port $spiceport is not allowed" if ($spiceport < 61000 || $spiceport > 61099);
+ die "Port $spiceport is not allowed" if ($spiceport < 61000 || $spiceport > 61999);
my $clientip = $reqstate->{peer_host};
my $r = $reqstate->{request};
--
2.20.1
More information about the pve-devel
mailing list