From b59fc3ced1e8fc92e578fbfd9e43808449e1ba7a Mon Sep 17 00:00:00 2001
From: F Wolf <121829015+DocRuben@users.noreply.github.com>
Date: Tue, 2 Dec 2025 22:37:14 +0100
Subject: [PATCH 1/2] Update use-dedibackup-ftp-backup.mdx
Added note regarding curls default behavior in newer versions, to ignore IP given from server for passive connection.
---
pages/dedibox/how-to/use-dedibackup-ftp-backup.mdx | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/pages/dedibox/how-to/use-dedibackup-ftp-backup.mdx b/pages/dedibox/how-to/use-dedibackup-ftp-backup.mdx
index 9657517f30..c40afd2f62 100644
--- a/pages/dedibox/how-to/use-dedibackup-ftp-backup.mdx
+++ b/pages/dedibox/how-to/use-dedibackup-ftp-backup.mdx
@@ -153,4 +153,10 @@ curl -T "path_to_your_file.7z" -u "sd-XXXXX:your_password" ftp://dedibackup-dc3.
```
Replace `dedibackup-dc3` with the actual backup location (`-dc2`, `-dc3`, etc.), as specified in your Dedibox console.
-
\ No newline at end of file
+
+
+
+ Since curl version 7.74.0 the default behavior is to not get a new IP from the server for the passive connection.
+ You have to use --no-ftp-skip-pasv-ip for curl to make the passive connection required.
+
+
From a8453dd148c51c61df83d85dadf7ec1953978561 Mon Sep 17 00:00:00 2001
From: Benedikt Rollik
Date: Tue, 9 Dec 2025 11:06:01 +0100
Subject: [PATCH 2/2] Update pages/dedibox/how-to/use-dedibackup-ftp-backup.mdx
---
pages/dedibox/how-to/use-dedibackup-ftp-backup.mdx | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/pages/dedibox/how-to/use-dedibackup-ftp-backup.mdx b/pages/dedibox/how-to/use-dedibackup-ftp-backup.mdx
index c40afd2f62..6d8f37bfa7 100644
--- a/pages/dedibox/how-to/use-dedibackup-ftp-backup.mdx
+++ b/pages/dedibox/how-to/use-dedibackup-ftp-backup.mdx
@@ -156,7 +156,6 @@ curl -T "path_to_your_file.7z" -u "sd-XXXXX:your_password" ftp://dedibackup-dc3.
- Since curl version 7.74.0 the default behavior is to not get a new IP from the server for the passive connection.
- You have to use --no-ftp-skip-pasv-ip for curl to make the passive connection required.
+ Starting with **curl 7.74.0**, the default behavior in FTP passive mode is to ignore the IP address returned by the server. To make curl use the server’s `PASV IP` (the previous behavior), use the option `--no-ftp-skip-pasv-ip`.