Is there a Public FTP server to test upload and download?
What I want to do is measure broadband speed using c#.
To do this, I use NetworkInterface.BytesReceived
and BytesSent
to get the current amount of bytes sent and received from my network adapter and get the DateTime
.
Then I download/upload a file and get the BytesReceived
/ BytesSent
and DateTime
again. The download/upload speed is just the the difference between the BytesReceived
/ BytesSent
divided by the time difference.
Now I am wondering if there is a public FTP server where I can download and upload files.
Tele2 provides ftp://speedtest.tele2.net , you can log in as anonymous and upload anything to test your upload speed. For download testing they provide fixed size files, you can choose which fits best to your test.
Found here: http://speedtest.tele2.net/
Try https://test.rebex.net/
It is read-only used for testing Rebex components to list directory and download. Allows also to test FTP/SSL and IMAP.
UPDT: Use correct protocol. For FTP use: ftp://test.rebex.net/
There's lots of FTP sites you can get into with the 'anonymous' account and download, but a 'public' site that allows anonymous uploads would be utterly swamped with pr0n and warez in short order.
It's easy enough to set up your own FTP server for testing uploads. There's plenty of them for most any desktop OS. There's one built into IIS, for instance.
链接地址: http://www.djcxy.com/p/61358.html上一篇: 用于大文件上传的FTP或HTTP?