An article that discusses TCP/IP route commands.
http://www.microsoft.com/resources/d....mspx?mfr=true
The route command tells the computer that any requests to a specific internet IP address be sent though a specific network adapter.
The 2.4GHz adapter has an IP address of 192.169.0.12
The 5GHz adater has an IP address of 192.168.0.14
You want to use the 2.4GHz adpter to connect to MSN.com. MSN's IP is 207.68.172.246
route -p add 207.68.172.246 Mask 255.255.255.255 192.168.0.12
You want to connect to Netflix.com through the 5GHz adapter. Netflix is 208.75.75.17
route -p add 208.75.76.17 Mask 255.255.255.255 192.168.0.14
You can set the 2.4GHz as a default route so that anything not specifically assigned a route will use it.
route -p 0.0.0.0 Mask 0.0.0.0 192.168.0.12