Weird Request..

Soldato
Joined
25 Jul 2006
Posts
3,529
Location
Taunton
Would it be possible to use my two network connections to split the usage. That probably doesn't explain it very well, what I intend to do is use my WLAN to connect to my router just for internet traffic and then use my LAN connection also connected to the same router to just deal with LAN traffic?

I can't think of how I would split them so may not be possible, just a thought.
 
You could.

You could set priorities on your routes so that it uses the WLAN for anything outside your subnet, and likewise only uses your LAN card for things inside your subnet.

It's messy however.
 
Sounds more plausible than I thought. You say this is messy eh? Require a lot of networking knowledge?

I don't have masses of knowledge but I fine with setting up manual network settings.
 
Right after some searching on my badass router I've got an option to set it up so that it can serve 'guests' as such meaning they have no access to the LAN at all which I can do for my WLAN but I seem to have a problem with getting it to accept that the WLAN is the main source of internet even after swapping the network priorities in the advanced section of the network connections area. Any ideas?
 
Can you not just use something in your local routing table like:

route add 192.168.0.0 via 192.168.1.1 (LAN) 255.255.255.0
route add 1.0.0.0 via 192.168.1.2 (WLAN) 255.0.0.0

Or something similar. That way all /24 subnet traffic goes via the 192.168.1.1 interface and all your interweb traffic (!192.168.1.0) goes via the WLAN?

Sam
 
Where would I go about adding those rules as such? In cmd or on the router? If cmd is that the actually syntax I would use minus the bracketed text?
 
couldn't get it to work exactly as I wanted with the route add commands as for some reason after adding the first one it cut off all internet which I found strange but I added the following

route add 192.168.2.0 mask 255.255.255.0 192.168.2.2

and that's working fine for the LAN then just connected to the guest account on the wireless. But I'm guessing I'm going to have problems connecting to other LAN networks with the route settings like this?
 
Isn't that what a switch does as opposed to a hub? If you put a switch between all your PC's and the router, only traffic destined for the router and hence WAN will go that way? If you have a LAN hub instead of a switch then all traffic will be sent to all nodes.

Andi.
 
Isn't that what a switch does as opposed to a hub? If you put a switch between all your PC's and the router, only traffic destined for the router and hence WAN will go that way? If you have a LAN hub instead of a switch then all traffic will be sent to all nodes.

Andi.

No.

A switch just separates collision domains (well they can do a lot more than that, but a basic unmanaged switch separates collision domains).

http://en.wikipedia.org/wiki/Collision_domain
 
Back
Top Bottom