The Mandelbrot program can run stand-alone on one computer, but in order to really waste CPU cycles you need to run it as a distributed application on several computers. Here are the step-by-step instructions for how to do it.
java -jar Mandelbrot.jar
java -jar Mandelbrot.jar -rg
Host: 192.168.0.3
At low iterations, the benefit of parallelizing the fractal generation is not very apparent. In fact, the overhead of transfering the image slices across the network may very well outweigh any speed increase. To see any real benefit, you have to crank the iterations way up. Zoom in on some interesting part of the fractal, then open the fractal parameters dialog (menu option Fractal|Parameters). Set the 'depth' parameter to some much larger value like 5 or 10 thousand. Now the spare CPU power will start to become usefull.
To find out the IP address on a Windows machine, type
ipconfig. On a unix based OS, you'll need some variant of
ifconfig eth0or
ifconfig -a.