Networking Forums

Networking Forums > Wireless Networking > Wireless Internet > Bridge different subnets

Reply
Thread Tools Display Modes

Bridge different subnets

 
 
Todd Logan
Guest
Posts: n/a

 
      03-07-2005, 02:18 AM
Can anyone tell me if I can create a wireless bridge between different
subnets?

For example, wireless bridge number1 is on the 192.168.1.0 network,
whereas wireless bridge number 2 is on the 192.168.5.0 network. Can I create
a wireless bridge between 192.168.1.0 and 192.168.5.0 or do I have to use
the same subnet?

Thanks in advance.
Todd



 
Reply With Quote
 
 
 
 
DLink Guru
Guest
Posts: n/a

 
      03-07-2005, 03:01 AM
Yes, read the following link for the info you seek.

http://www.sankeerth.com/tutors/bridges.htm

Robert...

"Todd Logan" <(E-Mail Removed)> wrote in message
news:2KPWd.156732$0u.53841@fed1read04...
> Can anyone tell me if I can create a wireless bridge between
> different subnets?
>
> For example, wireless bridge number1 is on the 192.168.1.0 network,
> whereas wireless bridge number 2 is on the 192.168.5.0 network. Can I
> create a wireless bridge between 192.168.1.0 and 192.168.5.0 or do I have
> to use the same subnet?
>
> Thanks in advance.
> Todd
>
>
>



 
Reply With Quote
 
DLink Guru
Guest
Posts: n/a

 
      03-07-2005, 03:03 AM
Sorry, read down to transparent bridging for the info you want...

Robert....

"Todd Logan" <(E-Mail Removed)> wrote in message
news:2KPWd.156732$0u.53841@fed1read04...
> Can anyone tell me if I can create a wireless bridge between
> different subnets?
>
> For example, wireless bridge number1 is on the 192.168.1.0 network,
> whereas wireless bridge number 2 is on the 192.168.5.0 network. Can I
> create a wireless bridge between 192.168.1.0 and 192.168.5.0 or do I have
> to use the same subnet?
>
> Thanks in advance.
> Todd
>
>
>



 
Reply With Quote
 
Jeff Liebermann
Guest
Posts: n/a

 
      03-07-2005, 04:12 AM
On Sun, 6 Mar 2005 20:18:24 -0700, "Todd Logan" <(E-Mail Removed)>
wrote:

> Can anyone tell me if I can create a wireless bridge between different
>subnets?


Hint: A bridge works on ISO layer 2 or the MAC address layer. It
knows NOTHING about IP addresses, which are on layer 3.

> For example, wireless bridge number1 is on the 192.168.1.0 network,
>whereas wireless bridge number 2 is on the 192.168.5.0 network. Can I create
>a wireless bridge between 192.168.1.0 and 192.168.5.0 or do I have to use
>the same subnet?


You can create the bridge but nothing will pass. A network on:
192.168.1.0/24
will not pass traffic to a network on:
192.168.5.0/24
without an IP router (on layer 3). With just a bridge, the only
packets that will pass are broadcasts.

Routers are used to glue together two different IP networks. In this
case, it's done by setting up a static route through a gateway.

A really crude way to connect these two networks is to just enlarge
the netmask to /16. Just change it from 255.255.255.0 to 255.255.0.0
and packets will pass in both directions. Traffic across the bridge
will be limited to only those with destination MAC addresses that are
across the bridge. Not the best of traffic control, but tolerable.

Someone suggested a transparent bridge. That will work with the /16
enlarged netmask. Note that you also have to increase the netmask on
the client computahs to 255.255.0.0 or the clients will not "see" the
machines on the other side of the network. Broadcast packets will go
everywhere and across the bridge.

I can think of several ways to connect these networks. One is a
router at the remote office with a static route to the remote office
network IP block pointing to remote office router IP address
(gateway). Another is to use a VPN which will assign additional IP
addresses delivered from remote systems, to a local machine. Yech.

However, I don't see why you don't simply renumber the network so that
all the machine fit in a single /24 IP block. If these networks are
going to be connected permanently, you might was well make life easy
and share the same /24 IP block. Now, if the remote office were
connected via the internet instead of via a transparent bridge, then a
router would certainly be necessary due to the limitations of a single
IP addresss. However, with a transparent wireless bridge, that can
pass multiple MAC addresses simultaneously, there's no benifit to
using a router.

Incidentally, watch out for transparent bridges with a limited number
of MAC addresses that may be bridged. The current products are 256
MAC addresses and up. However, some of the older devices will only do
as few as 32. That's total MAC addresses for both ends including the
wireless bridge MAC addresses.



--
Jeff Liebermann (E-Mail Removed)
150 Felker St #D http://www.LearnByDestroying.com
Santa Cruz CA 95060 AE6KS 831-336-2558
 
Reply With Quote
 
Todd Logan
Guest
Posts: n/a

 
      03-07-2005, 01:39 PM
Thanks for the detailed response. I appreciate that. I have a question about
this though.

The learn table on both wireless bridges will contain the MAC addresses of
all the nodes for there subnet and all the nodes that are in the other
subnet by way of the bridge that it is connected to. Also, When a wireless
WDS link (unlike a wired/Ethernet bridge) is set up between the two bridges
all four address fields in the MAC header are used and transmitted. They
are:
The MAC address of the sender
The MAC address of the final destination
The MAC address of the sending Bridge
The MAC address of the receiving Bridge

So, with this information won't the bridge in a fashion "route" a frame with
a MAC address in the other subnet through the bridge because it knows by
looking up in its learn table that the node at the destination MAC address
is across the bridge?

Thanks for the help. I appreciate it.
Todd

"Jeff Liebermann" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> On Sun, 6 Mar 2005 20:18:24 -0700, "Todd Logan" <(E-Mail Removed)>
> wrote:
>
>> Can anyone tell me if I can create a wireless bridge between
>> different
>>subnets?

>
> Hint: A bridge works on ISO layer 2 or the MAC address layer. It
> knows NOTHING about IP addresses, which are on layer 3.
>
>> For example, wireless bridge number1 is on the 192.168.1.0 network,
>>whereas wireless bridge number 2 is on the 192.168.5.0 network. Can I
>>create
>>a wireless bridge between 192.168.1.0 and 192.168.5.0 or do I have to use
>>the same subnet?

>
> You can create the bridge but nothing will pass. A network on:
> 192.168.1.0/24
> will not pass traffic to a network on:
> 192.168.5.0/24
> without an IP router (on layer 3). With just a bridge, the only
> packets that will pass are broadcasts.
>
> Routers are used to glue together two different IP networks. In this
> case, it's done by setting up a static route through a gateway.
>
> A really crude way to connect these two networks is to just enlarge
> the netmask to /16. Just change it from 255.255.255.0 to 255.255.0.0
> and packets will pass in both directions. Traffic across the bridge
> will be limited to only those with destination MAC addresses that are
> across the bridge. Not the best of traffic control, but tolerable.
>
> Someone suggested a transparent bridge. That will work with the /16
> enlarged netmask. Note that you also have to increase the netmask on
> the client computahs to 255.255.0.0 or the clients will not "see" the
> machines on the other side of the network. Broadcast packets will go
> everywhere and across the bridge.
>
> I can think of several ways to connect these networks. One is a
> router at the remote office with a static route to the remote office
> network IP block pointing to remote office router IP address
> (gateway). Another is to use a VPN which will assign additional IP
> addresses delivered from remote systems, to a local machine. Yech.
>
> However, I don't see why you don't simply renumber the network so that
> all the machine fit in a single /24 IP block. If these networks are
> going to be connected permanently, you might was well make life easy
> and share the same /24 IP block. Now, if the remote office were
> connected via the internet instead of via a transparent bridge, then a
> router would certainly be necessary due to the limitations of a single
> IP addresss. However, with a transparent wireless bridge, that can
> pass multiple MAC addresses simultaneously, there's no benifit to
> using a router.
>
> Incidentally, watch out for transparent bridges with a limited number
> of MAC addresses that may be bridged. The current products are 256
> MAC addresses and up. However, some of the older devices will only do
> as few as 32. That's total MAC addresses for both ends including the
> wireless bridge MAC addresses.
>
>
>
> --
> Jeff Liebermann (E-Mail Removed)
> 150 Felker St #D http://www.LearnByDestroying.com
> Santa Cruz CA 95060 AE6KS 831-336-2558



 
Reply With Quote
 
TheDragon
Guest
Posts: n/a

 
      03-07-2005, 06:19 PM

"Todd Logan" <(E-Mail Removed)> wrote in message
news:2KPWd.156732$0u.53841@fed1read04...
> Can anyone tell me if I can create a wireless bridge between
> different subnets?
>
> For example, wireless bridge number1 is on the 192.168.1.0 network,
> whereas wireless bridge number 2 is on the 192.168.5.0 network. Can I
> create a wireless bridge between 192.168.1.0 and 192.168.5.0 or do I have
> to use the same subnet?
>
> Thanks in advance.
> Todd
>
>


You need a router, or a PC with 2 NIC cards. We connected 50+ subnets in
this way to segment the LAN.

>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
RRAS server separating two subnets - one subnet cannot reach the Internet and computers can't ping each other between subnets Spin Windows Networking 11 09-23-2008 11:06 PM
Cannot Browse from domain populated subnets to remote subnets whichcontain only workgroup servers pag@associateddynamics.com Windows Networking 4 02-14-2008 08:02 PM
DD-WRT WRT54GL Bridge with two subnets rog@powerup.com.au Wireless Internet 0 07-06-2007 11:46 AM
Bridge/workgroup bridge scenario and channels Chris_D Wireless Internet 3 08-03-2005 08:44 PM
Multiple subnets over Cisco Wireless Bridge - BR350's Josh Gasber Wireless Internet 2 03-05-2004 02:15 AM



1 2 3 4 5 6 7 8 9 10 11