I'm using virtualbox to simulate our network for test purposes - the backup images of our machines lets me load them directly into virtualbox and use them.
I have some servers running on a host-only network (10.1.1.0/24) - this is the same network they run on in the real world, so isolated to host-only network.
They get there internet access via a Microsoft ISA 2004 server with two NIC's - one on the host-only network and the other nic using NAT for internet access (I used this same arrangement successfully with vmware server last year, but virtualbox now has better integration with our backup images so trying to make this work).
So as I don't have to modify all the firewall rules everytime I reload this server from a backup image, due to changed network addresses, I want to specify the NAT addresses to simulate the real world.
For this client machine I want its NAT address to be 123.45.67.108.
I want to find the NAT gateway (preferably) at 123.45.67.105.
This fits a network of 123.45.67.104/29.
To set this network I tried to use the command:
vboxmanage modifyvm "ISA2004-A" --natnet1 "123.45.67.104/29"
However, this doesn't really give me what I need. Can't find any gateway address that is working.
The documentation seems to hint that I can only set my NAT to a network with a mask of 16 where I want to use 29.
Is it possible to be specific about the NAT addressing with VirtualBox?
If so, how do I do it?
Thanks,
Bryce Stenberg.