You just need to create a new config profile - select "finnix" in the kernel option and then assign the disk images as you normally would. Then you can use a combination of dd and ssh to move the disk images around...something like this:
Code:
$ dd if=/dev/ubda | ssh user@otherserver dd of=/path/to/disk.img
You'd probably want to throw some flags in there when you initiate ssh to turn down the encryption to "bluefish" or something a bit less CPU intensive or you'll find this process may take quite a while.
It's been a long time since I've done this, so there may be a better way, but this is the general idea.