09-09-04 10:55 PM
"Marcin Michalek" <mbibus@comcast.net> wrote in message
news:OnpHR8hlEHA.2588@TK2MSFTNGP12.phx.gbl...
> Thx for the replays... I think I have firewall problems. If IE is using
> the range between 1024 and 50000 than I know what the problem is .. .I
> actually forwarded ports between 50000 and 50700 for passive but I think
> I was wrong. Let me try forwarding all the ports just for testing
> purpose and I'll get back to you with the results.
The range chosen by default is 1024 - 5000, not 50000. Only if you've
correctly set the passive port range in the metabase (note - the metabase,
not the registry, for IIS 6) will you be able to access another range.
After you've configured the entry, restart the FTP service, and check that
the ports being given out are correct. You can do this through the command
line FTP client by logging on and entering the command "quote pasv". You'll
see something like this:
ftp> quote pasv
227 Entering Passive Mode (127,0,0,1,9,161).
In this case, the port is represented by the last two numbers - to convert
to the numerical value, you multiply the first number by 256 and add the
result to the last number. In this case, for instance, you can see
9*256+161 = 2465. And that's expected, because this is an unmodified
server, and so the port value is going to be chosen between 1024 and 5000.
Alun.
~~~~
[ Post a follow-up to this message ]
|