我正在尝试登录仅在网络中本地运行的 FTP 服务器。为此,我必须使用我的 ip 地址作为服务器地址(参见下面的代码)。但是每次我得到一个gaierror: [Errno 11004] getaddrinfo failed错误。
任何人都可以查看我的代码,看看我是否犯了任何可能导致此地址问题的错误?我也可以从我的浏览器很好地登录 ftp 服务器,这样我就知道服务器已启动并正常运行,也允许匿名登录服务器。
#import the ftp lib.
from ftplib import FTP
#enter the address of the ftp server to use, use ip address since server is ran locally
ftp = FTP('ftp://192.168.1.130')
#logs into the ftp server
ftp.login()