joshua.lyon
I'm trying to use SmartFTP to accommodate a transfer from one FTP server to another. The transfers will need to be able to go both ways as I have a development server and a production server running the same software. Essentially, I want to be able to copy files from the development server to the production server whenever I am done testing changes and feel they are ready to move to production. Also, in the case that I screw something up on the development server I want to be able to transfer working files back from the production server to the development.
Development Server:
Xampp for Windows 1.6.3a
-FileZilla Server 0.9.23 beta
Windows XP SP2
Production Server:
IIS6 with FTP component
-EnablePasvConnFrom3rdIP set to 1 in registry
-EnableDataConnTo3rdIP set to 1 in registry
Windows Server 2003 SP2
The following set of logs is me trying to transfer the file g2bridge.php from the production server to the development server. Let me know if there's any other details you need.
I should also note that these boxes are on the same network and are controlled by me so I can make any changes as necessary.
Log from Production Server (Source/Sending):
[12:21:04] PWD
[12:21:04] 257 "/components/com_comprofiler/plugin" is current directory.
[12:21:04] PASV
[12:21:04] 227 Entering Passive Mode (172,21,10,19,15,205).
[12:21:04] Opening data connection to 172.21.10.19 Port: 4045
[12:21:04] LIST -aL
[12:21:04] 125 Data connection already open; Transfer starting.
[12:21:04] 195 bytes transferred. (12.6 KB/s) (15 ms)
[12:21:04] 226 Transfer complete.
[12:21:05] CWD /components/com_comprofiler/plugin/user
[12:21:05] 250 CWD command successful.
[12:21:05] PWD
[12:21:05] 257 "/components/com_comprofiler/plugin/user" is current directory.
[12:21:05] PASV
[12:21:05] 227 Entering Passive Mode (172,21,10,19,15,206).
[12:21:05] Opening data connection to 172.21.10.19 Port: 4046
[12:21:05] LIST -aL
[12:21:05] 125 Data connection already open; Transfer starting.
[12:21:05] 978 bytes transferred. (63.6 KB/s) (15 ms)
[12:21:06] 226 Transfer complete.
[12:21:12] CWD /components/com_comprofiler/plugin/user/plug_g2bridge
[12:21:12] 250 CWD command successful.
[12:21:12] PWD
[12:21:12] 257 "/components/com_comprofiler/plugin/user/plug_g2bridge" is current directory.
[12:21:12] PASV
[12:21:12] 227 Entering Passive Mode (172,21,10,19,15,207).
[12:21:12] Opening data connection to 172.21.10.19 Port: 4047
[12:21:12] LIST -aL
[12:21:12] 125 Data connection already open; Transfer starting.
[12:21:12] 264 bytes transferred. (17.1 KB/s) (15 ms)
[12:21:12] 226 Transfer complete.
[12:21:30] TYPE I
[12:21:30] 200 Type set to I.
[12:21:30] SIZE g2bridge.php
[12:21:30] 213 13636
[12:21:30] MDTM g2bridge.php
[12:21:30] 213 20071219203110
[12:21:32] PASV
[12:21:32] 227 Entering Passive Mode (172,21,10,19,15,208).
[12:21:32] RETR g2bridge.php
[12:21:32] 426 Connection closed; transfer aborted.
[12:21:32] Transfer failed. Use the Transfer Queue for automatic retries.
Log From Development Server (Destination/Receiving)
[12:21:04] PWD
[12:21:04] 257 "/community/components/com_comprofiler/plugin" is current directory.
[12:21:04] PASV
[12:21:04] 227 Entering Passive Mode (172,21,101,114,5,48)
[12:21:04] Opening data connection to 172.21.101.114 Port: 1328
[12:21:04] MLSD
[12:21:04] 150 Connection accepted
[12:21:04] 226 Transfer OK
[12:21:04] 176 bytes transferred. (5.54 KB/s) (31 ms)
[12:21:06] CWD /community/components/com_comprofiler/plugin/user
[12:21:06] 250 CWD successful. "/community/components/com_comprofiler/plugin/user" is current directory.
[12:21:06] PWD
[12:21:06] 257 "/community/components/com_comprofiler/plugin/user" is current directory.
[12:21:06] PASV
[12:21:06] 227 Entering Passive Mode (172,21,101,114,5,49)
[12:21:06] Opening data connection to 172.21.101.114 Port: 1329
[12:21:06] MLSD
[12:21:06] 150 Connection accepted
[12:21:06] 226 Transfer OK
[12:21:06] 868 bytes transferred. (27.3 KB/s) (31 ms)
[12:21:12] CWD /community/components/com_comprofiler/plugin/user/plug_g2bridge
[12:21:13] 250 CWD successful. "/community/components/com_comprofiler/plugin/user/plug_g2bridge" is current directory.
[12:21:13] PWD
[12:21:13] 257 "/community/components/com_comprofiler/plugin/user/plug_g2bridge" is current directory.
[12:21:13] PASV
[12:21:13] 227 Entering Passive Mode (172,21,101,114,5,50)
[12:21:13] Opening data connection to 172.21.101.114 Port: 1330
[12:21:13] MLSD
[12:21:13] 150 Connection accepted
[12:21:13] 226 Transfer OK
[12:21:13] 331 bytes transferred. (10.4 KB/s) (31 ms)
[12:21:30] TYPE I
[12:21:30] 200 Type set to I
[12:21:30] SIZE g2bridge.php
[12:21:30] 213 0
[12:21:30] MDTM g2bridge.php
[12:21:30] 213 20071219203110
[12:21:30] No rule matched. Default Action="Ask".
[12:21:32] PORT 172,21,10,19,15,208
[12:21:32] 200 Port command successful
[12:21:32] STOR g2bridge.php
[12:21:32] 150 Opening data channel for file transfer.
[12:21:32] 226 Transfer OK
[12:21:32] ABOR
[12:21:32] MFMT 20071219203110 g2bridge.php
[12:21:32] 226 ABOR command successful
[12:21:32] 213 modify=20071219203110; /community/components/com_comprofiler/plugin/user/plug_g2bridge/g2bridge.php
[12:21:32] Transfer failed. Use the Transfer Queue for automatic retries.
Development Server:
Xampp for Windows 1.6.3a
-FileZilla Server 0.9.23 beta
Windows XP SP2
Production Server:
IIS6 with FTP component
-EnablePasvConnFrom3rdIP set to 1 in registry
-EnableDataConnTo3rdIP set to 1 in registry
Windows Server 2003 SP2
The following set of logs is me trying to transfer the file g2bridge.php from the production server to the development server. Let me know if there's any other details you need.
I should also note that these boxes are on the same network and are controlled by me so I can make any changes as necessary.
Log from Production Server (Source/Sending):
[12:21:04] PWD
[12:21:04] 257 "/components/com_comprofiler/plugin" is current directory.
[12:21:04] PASV
[12:21:04] 227 Entering Passive Mode (172,21,10,19,15,205).
[12:21:04] Opening data connection to 172.21.10.19 Port: 4045
[12:21:04] LIST -aL
[12:21:04] 125 Data connection already open; Transfer starting.
[12:21:04] 195 bytes transferred. (12.6 KB/s) (15 ms)
[12:21:04] 226 Transfer complete.
[12:21:05] CWD /components/com_comprofiler/plugin/user
[12:21:05] 250 CWD command successful.
[12:21:05] PWD
[12:21:05] 257 "/components/com_comprofiler/plugin/user" is current directory.
[12:21:05] PASV
[12:21:05] 227 Entering Passive Mode (172,21,10,19,15,206).
[12:21:05] Opening data connection to 172.21.10.19 Port: 4046
[12:21:05] LIST -aL
[12:21:05] 125 Data connection already open; Transfer starting.
[12:21:05] 978 bytes transferred. (63.6 KB/s) (15 ms)
[12:21:06] 226 Transfer complete.
[12:21:12] CWD /components/com_comprofiler/plugin/user/plug_g2bridge
[12:21:12] 250 CWD command successful.
[12:21:12] PWD
[12:21:12] 257 "/components/com_comprofiler/plugin/user/plug_g2bridge" is current directory.
[12:21:12] PASV
[12:21:12] 227 Entering Passive Mode (172,21,10,19,15,207).
[12:21:12] Opening data connection to 172.21.10.19 Port: 4047
[12:21:12] LIST -aL
[12:21:12] 125 Data connection already open; Transfer starting.
[12:21:12] 264 bytes transferred. (17.1 KB/s) (15 ms)
[12:21:12] 226 Transfer complete.
[12:21:30] TYPE I
[12:21:30] 200 Type set to I.
[12:21:30] SIZE g2bridge.php
[12:21:30] 213 13636
[12:21:30] MDTM g2bridge.php
[12:21:30] 213 20071219203110
[12:21:32] PASV
[12:21:32] 227 Entering Passive Mode (172,21,10,19,15,208).
[12:21:32] RETR g2bridge.php
[12:21:32] 426 Connection closed; transfer aborted.
[12:21:32] Transfer failed. Use the Transfer Queue for automatic retries.
Log From Development Server (Destination/Receiving)
[12:21:04] PWD
[12:21:04] 257 "/community/components/com_comprofiler/plugin" is current directory.
[12:21:04] PASV
[12:21:04] 227 Entering Passive Mode (172,21,101,114,5,48)
[12:21:04] Opening data connection to 172.21.101.114 Port: 1328
[12:21:04] MLSD
[12:21:04] 150 Connection accepted
[12:21:04] 226 Transfer OK
[12:21:04] 176 bytes transferred. (5.54 KB/s) (31 ms)
[12:21:06] CWD /community/components/com_comprofiler/plugin/user
[12:21:06] 250 CWD successful. "/community/components/com_comprofiler/plugin/user" is current directory.
[12:21:06] PWD
[12:21:06] 257 "/community/components/com_comprofiler/plugin/user" is current directory.
[12:21:06] PASV
[12:21:06] 227 Entering Passive Mode (172,21,101,114,5,49)
[12:21:06] Opening data connection to 172.21.101.114 Port: 1329
[12:21:06] MLSD
[12:21:06] 150 Connection accepted
[12:21:06] 226 Transfer OK
[12:21:06] 868 bytes transferred. (27.3 KB/s) (31 ms)
[12:21:12] CWD /community/components/com_comprofiler/plugin/user/plug_g2bridge
[12:21:13] 250 CWD successful. "/community/components/com_comprofiler/plugin/user/plug_g2bridge" is current directory.
[12:21:13] PWD
[12:21:13] 257 "/community/components/com_comprofiler/plugin/user/plug_g2bridge" is current directory.
[12:21:13] PASV
[12:21:13] 227 Entering Passive Mode (172,21,101,114,5,50)
[12:21:13] Opening data connection to 172.21.101.114 Port: 1330
[12:21:13] MLSD
[12:21:13] 150 Connection accepted
[12:21:13] 226 Transfer OK
[12:21:13] 331 bytes transferred. (10.4 KB/s) (31 ms)
[12:21:30] TYPE I
[12:21:30] 200 Type set to I
[12:21:30] SIZE g2bridge.php
[12:21:30] 213 0
[12:21:30] MDTM g2bridge.php
[12:21:30] 213 20071219203110
[12:21:30] No rule matched. Default Action="Ask".
[12:21:32] PORT 172,21,10,19,15,208
[12:21:32] 200 Port command successful
[12:21:32] STOR g2bridge.php
[12:21:32] 150 Opening data channel for file transfer.
[12:21:32] 226 Transfer OK
[12:21:32] ABOR
[12:21:32] MFMT 20071219203110 g2bridge.php
[12:21:32] 226 ABOR command successful
[12:21:32] 213 modify=20071219203110; /community/components/com_comprofiler/plugin/user/plug_g2bridge/g2bridge.php
[12:21:32] Transfer failed. Use the Transfer Queue for automatic retries.