# The SPIMS software is covered by a license. The use of the software
# represents acceptance of the terms and conditions in the license.
# ******************************************************************
# Copyright (c) 1989, Swedish Institute of Computer Science
1. Start daemons for tcp, ftp, udp, sunrpc, null

2. Get an overall idea of the performance of the system. Script contains:

	spims_test tcp ftp

3. Now give some commands interactively to tcp bench, to show how SPIMS is run.
Suggestions:

	3 bulk_get 1024*1000;
	2 conn_disc 0*100;

4. Now show that you can also measure rpc. And that response time varies with
the size. Script contains:

	3 rpc 8*100;
	3 rpc 512*100;
	3 rpc 1024*100

5. This one also shows that different sizes in the response of rpc influences
reponse times - e.g. file server. Script contains:

	1 rr 32,32*100;
	1 rr 32,2048*100;

6. Show that several parallel transfers is not better than one single, over ftp.
Script contains:

	3 bulk_get 1024*1000;
	3 total: 5 bulk_get 1024*200;

7. Show that background traffic slow things down, over tcp.

	3 rr 32*100;
	3 background: rr 32*100 |
		2 bulk_get 1024*500;

8. Disk involvment, on ftp and null (I did get this one to work, wrong syntax I think)
ftp:	1 bulk_get 1024*1000 >file tmp;
null:	1 bulk_put 1024*1000 <file tmp;
	
9. Delays over tcp (I think it should be). Im not sure about the purpose of this one. 
	1 rr 32*100 constant(0.0), exp(0.2);
