(no title)
johnea | 26 days ago
Starting a link with http, makes it a WWW link which is expected to be interpreted as HTML, and is served by an WWW server.
An FTP URL would be: ftp://128.237.157.9/pub
Where the leading ftp: designates how the link is to be interpreted. The so called "scheme" of the URL.
In reply to other comments: my browser supports the ftp: scheme without issue.
Ironically, when using the ftp: scheme in the URL, the /pub directory query returns an error: 550 Failed to change directory.
Whereas removing that subdirectory, and just using the scheme and IP address does return the files and subdirectories served by the FTP server (at least the ones with public permissions).
Whereas the http: URL to the same IP and /pub directory does return successfully. With the contents correctly served by the WWW server.
Therefore, this was probably not a great example to use for a post regarding FTP servers. Since the URL http://128.237.157.9/pub is actually served by a WWW server...
It's also worth noting, that the http URL: http://128.237.157.9/pub/
Points to the same data as the ftp URL: ftp://128.237.157.9/
While the http URL: http://128.237.157.9/ points to the Carnegie Mellon Computer Club home page.
No comments yet.