@Fassou:
With that cucumber of a team :troll:, and using Windows XP, you can install MS VirtualPC, which works very well and doesn't consume as many resources as VMWare or VirtualBox.
Cheers! and let us know how it goes.
You see. We're thinking about putting a server with a core2duo that will be the centerpiece of the department. I'm thinking of using it to decrypt signals from space due to its extraordinary power…
I think if I can use route add to direct traffic according to my needs because it turns out it has an additional parameter that I was unaware of, which specifies the interface through which we will work in that range of addresses:
To add a static IP route
Open Command Prompt.
At the command prompt, type:
route add destination mask subnetmask gateway metric cost metric if interface
where:
Static IP route entry Definition
destination
Specifies either an IP address or host name for the network or host.
subnetmask
Specifies a subnet mask to be associated with this route entry. If subnetmask is not specified, 255.255.255.255 is used.
gateway
Specifies either an IP address or host name for the gateway or router to use when forwarding.
costmetric
Assigns an integer cost metric (ranging from 1 through 9,999) to be used in calculating the fastest, most reliable, and/or least expensive routes. If costmetric is not specified, 1 is used.
interface
Specifies the interface to be used for the route that uses the interface number. If an interface is not specified, the interface to be used for the route is determined from the gateway IP address.
For example, to add a static route to the 10.0.0.0 network that uses a subnet mask of 255.0.0.0, a gateway of 192.168.0.1, and a cost metric of 2, you type the following at a command prompt:
route add 10.0.0.0 mask 255.0.0.0 192.168.0.1 metric 2
The issue would be to say that everything on the 192.168.1.0 network goes out through ethernet and the rest through wifi. Let's see if I can manage it.