Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Problem with default loopback address '' on win 10 #642

Open
str-it opened this issue Jul 20, 2024 · 0 comments
Open

Problem with default loopback address '' on win 10 #642

str-it opened this issue Jul 20, 2024 · 0 comments

Comments

@str-it
Copy link

str-it commented Jul 20, 2024

Hi, I have run into problems when following the tutorial and configuring a FTPS server like this:

server = FTPServer(('', 21), handler)

IIRC the short version '' worked for FTP but not for FTPS. It seems to not get resolved. I had to specifically write:

server = FTPServer(('0.0.0.0', 21), handler)

I think you should make the loopback explicit 0.0.0.0 in the tutorial for FTPS or at least mention it there.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant