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] 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.
+
+