have a look at http://www.acl.lanl.gov/~rminnich/ there is a program to start processes on remote machines called VX. ... CHANGELOG for dkftpbench 0.38 ...
Hi As part of my masters degree assignment ,i have to design and implement FTP Server and Client and submit that assignment by feb 10th.I am basically java...
210
Shane Kerr
shane@...
Feb 4, 2002 5:36 pm
... _UNIX Network Programming_ by W. Richard Stevens http://www.kohala.com/start/unpv12e.html Don't leave home without it. Personally I wouldn't want to...
... Actually, assuming you're just writing this in Java, this is a fairly simple assignment. You don't need to do any protocol design, the FTP protocol is...
Version 0.40 of dkftpbench comes with Corba support, thanks to a little corbification by Leo. It works with OmniOrb 3 for sure; I tested that by building...
OK, I threw together a distributed version of dkftpbench using corba. The idea is you run a copy of CorbaPlatoon_impl on each load machine, and one copy of...
I found the millisecond timeout interface in waitForEvent() and waitAndDispatchEvents() to be quite inadequate. I'm using the Poller_kqueue() in NS's emulation...
... Nice to hear Poller is getting some use! Would exposing waitForEvents(struct timespec *) suit your needs better? That would be quite easy to offer in...
... Yes, certainly. Since this is anyway a C++ library, the following might be better. waitForEvents(const struct timespec &) Also, would be possible for you...
Hi Dan and Jonathan, Here's a simple program that I hacked up to see if kqueue() can check for /dev/bpf* readiness. It turns out that kqueue() wrongly reports...
... Yes, it would. I ought to do that. ... But how on earth do the sources add up to 45MB? Oh, I see, it's a bunch of multi-megabyte data files. Well, what...
Sounds like a possible bug in bsd, or a misunderstanding. Either way, best thing is to post your test case to the appropriate *bsd mailing list. Hmm, I see...
I'm looking for a well-written Java ftp daemon to benchmark. In a quick Google search, I found four candidates: 1. http://www.mycgiserver.com/~ranab/ftp/ Rana...
I run "time dkftpbench -hssl-2.cs.unm.edu -n3000 -t180 -b1000 -u? -p? -fglobus.eps -sp" in host where ftp client is running. but i got erro message: "Option...
... The status value of 550 is from the FTP server. It is defined in the FTP RFC as 550 Requested action not taken. File unavailable (e.g., file not found, no...
but four processes are successfully(get the file successfully) before the error pops up. li ... __________________________________________________ Do You...
... Are you sure? The log you posted made it look like two robousers had *started* but it wasn't clear they'd actually fetched any files. Try it with just 1...
Anybody know what does this mean when running "time dkftpbench ..." "real 1m0.259s user 0m0.060s sys 0m0.200s" what does "real", "user", "sys" mean...
230
Jason Shupe
jshupe@...
Apr 7, 2002 8:36 pm
"man time" says: These statistics consist of (i) the elapsed real time between invocation and termination, (ii) the user CPU time (the sum of the tms_utime...
hi, how can i measuer the cpu usage of ftp server? I use "time dkftpbench ..." on ftp client machine(different host from ftp server) and get "real ? user ? sys...
232
Shane Kerr
shane@...
Apr 22, 2002 11:12 am
... If you're measuring on an otherwise idle server, there are a number of commands you can use to see system load. For instance, on a Linux system you can use...
... No - been too busy. Dang it. And I have a copy of Solaris ready to install, too. It's probably an easy change (maybe just adding a couple ifdefs), but...
This release fixes the bug reported by Jeon where Poller_select::getNextEvent could return a deleted client, adds a type() method to ftp_client_*, and makes...