Two examples:

1) no proxy usage -

>> trace/net: true
>> ble: open ftp://friend:[EMAIL PROTECTED]
URL Parse: friend downloat moon.rebol.cz none none none
Net-log: ["Opening tcp for" FTP]
connecting to: moon.rebol.cz
Net-log: [
    none ["220" "230"]]
Net-log: "220-welcome to the lucky pit"
Net-log: "220-"
Net-log: {220-the current list of my songs is in songs.mp3 in root}
Net-log: "220-"
Net-log: "220-/lucky "
Net-log: "220-"
Net-log: {220 moon.moravia-steel.cz FTP server (Version
wu-2.4.2-academ[BETA-18](1) Mon Jan 18 19:19:31 EST 1999) ready.}
Net-log: [["USER" port/user] "331"]
Net-log: "331 Password required for friend."
Net-log: [["PASS" port/pass] "230"]
Net-log: {230 User friend logged in.  Access restrictions apply.}
Net-log: [
    "TYPE I" "200"]
Net-log: "200 Type set to I."
Net-log: [["PORT" port/locals/active-check] "200"]
Net-log: [
    "PASV" "227"]
Net-log: "227 Entering Passive Mode (195,47,26,80,26,57)"
Net-log: [["CWD ~"] "250"]
Net-log: [["CWD /"] "250"]
Net-log: "250 CWD command successful."
Net-log: [["CWD" either empty? port/path ["./"] [join "./" port/path]]
"250"]
Net-log: "250 CWD command successful."
Net-log: [["LIST" "."] ["150" "125"]]
Net-log: {150 Opening BINARY mode data connection for /bin/ls.}
Net-log: [
    none "226"]
Net-log: "226 Transfer complete."
>>

2) going thru firewall

>> ble: open ftp://friend:[EMAIL PROTECTED]
URL Parse: friend downloat moon.rebol.cz none none none
Net-log: ["Opening tcp for" FTP]
connecting to: moon.rebol.cz
Net-log: [
    none ["220" "230"]]
Net-log: "220-welcome to the lucky pit"
Net-log: "220-"
Net-log: {220-the current list of my songs is in songs.mp3 in root}
Net-log: "220-"
Net-log: "220-/lucky "
Net-log: "220-"
Net-log: {220 moon.moravia-steel.cz FTP server (Version
wu-2.4.2-academ[BETA-18](1) Mon Jan 18 19:19:31 EST 1999) ready.}
Net-log: [["USER" port/user] "331"]
Net-log: "331 Password required for friend."
Net-log: [["PASS" port/pass] "230"]
Net-log: {230 User friend logged in.  Access restrictions apply.}
Net-log: [
    "TYPE I" "200"]
Net-log: "200 Type set to I."
Net-log: [
    "PASV" "227"]
Net-log: "227 Entering Passive Mode (195,47,26,80,26,54)"
** Access Error: Network timeout.
** Where: ble: open ftp://friend:[EMAIL PROTECTED]
>>


There seems to be difference in following sections:

1) without firewall

Net-log: "200 Type set to I."
Net-log: [["PORT" port/locals/active-check] "200"]
Net-log: [
    "PASV" "227"]

2) using firewall

Net-log: "200 Type set to I."
Net-log: [
    "PASV" "227"]

I can't get it working, even after studying FAQ, How-Tos, etc. I also
tried to set:

system/schemes/FTP/proxy/host: 194.196.81.129
;system/schemes/FTP/proxy/port-id: 1080
;system/schemes/FTP/proxy/user: "user-name"
;system/schemes/FTP/proxy/pass: "password"
;system/schemes/FTP/proxy/type: 'socks4

, where user-name and password are settings I use in Windows Commander
FTP settings and it works with WC. I hope the solution is simple :-)


Thanks,

-pekr-

Reply via email to