How can I force the use of a crossover cable instead of wireless?

2

I have two computers in my work space. Both connect to a wireless network and need to in order to access the internet and other, more distant, computers on the network. However when they talk to each other (and the other computers, unfortunately) its really slow. They are close enough that I connected them with a crossover ethernet cable, but Windows 7 still wants to use the wireless to let them talk sometimes. Is there any way I can force the crossover cable connection to take priority or something like that?

user199961

Posted 2013-02-17T16:27:35.373

Reputation: 23

Answers

1

The easiest way to do this (without getting in to more complicated subject matter) would be to assign static IPs to the interfaces that use the crossover cables.

Let's say we assign PC1 an address of 192.168.151.10 on its ethernet interface (the one using the crossover), and it has 192.168.0.100 on the WLAN. PC2 could have an address of 192.168.151.20 on its ethernet interface and 192.168.0.200 on its wireless interface.

If we access the share with \\192.168.151.20\share it will most assuredly use the crossover cable instead of the WLAN. If PC2 looks for PC1 by using its hostname (\\PC1\share) it might look for it on the WLAN instead of the crossover cable, and that's not what we want.

Maybe this will explain it: enter image description here

(I always imagine computers speak in lolcats and Comic Sans)

Windows 7 is really finicky about shares on public networks. Make sure your sharing settings are set approrpiately: http://windows.microsoft.com/en-US/windows7/Connect-two-computers-using-a-crossover-cable

I always like to set a password on a local account and access the share that way. It seems to work betting than attempting to coerce Windows in to sharing to the public. When you're asked for the username and password, log in using PC1\lusr (computer\username) as the username.

Tanner Faulkner

Posted 2013-02-17T16:27:35.373

Reputation: 11 948