Some background:
I'm attempting to set up a pentesting network with a handful of virtual machines for the SANS 560 (Network Penetration Testing and Ethical Hacking) course, but I'm having an issue with the network configuration.
To paint a picture of the network (at least how it's intended to be):
My home router (connected to the internet, also the gateway for all other machines on the network) IP is
192.168.0.1/24
, with all other machines on the network in the255.255.255.0
subnetAs per the course notes, I should be setting up all my virtual machines with bridged adapters on the
10.10.X.X/16
subnet - with Linux machines on10.10.75.X/16
, Windows guest machines on10.10.76.X/16
, and my "host" (also a VM running Windows) machine on10.10.78.1/16
My question:
How (assuming it's possible) do I configure my host machine (with new new IP 10.10.78.1/16
) to be able to talk to the other guest machines (Virtual machines) while also being able to connect to the internet?
I've tried setting up a static route to use the new IP as the gateway (seeing as the router is on a different subnet):
route ADD 192.168.0.0 MASK 255.255.255.0 10.10.78.1
(192.168.0.0
is the destination, obviously the mask is 255.255.255.0
, and the gateway is 10.10.78.1
) - it didn't work (all I get is Destination Host Unreachable
)
Do I need to have two interfaces on this Windows machine (i.e. one configured as 10.10.78.1/16
to talk to the other VMs, and another configured as 192.168.0.X/24
to access the internet) to make this configuration possible?
I understand it's not how a network would be set up typically, so please let me know if you need me to clarify or provide more information.