Routing between two networks

Clash Royale CLAN TAG#URR8PPP
up vote
2
down vote
favorite
I Have two devices connected over two different physical interfaces and two different bridges. How can I add a route between them in the router, so that I will be able to ping device 2 from device 1 and vice versa. Please find the diagram below.
Device 1 Router Device 2
+-----------------+ +----------------------------+ +-----------------+
| | | | | |
| eth1 | | br2 br1 | | wlan0 |
| 169.254.10.10 |-----| 169.254.50.1 10.0.0.1 |----| 169.254.168.11 |
| (self assigned) | | | | (self assigned) |
+-----------------+ +----------------------------+ +-----------------+
Can I achieve this using route tables?
networking routing network-interface
add a comment |Â
up vote
2
down vote
favorite
I Have two devices connected over two different physical interfaces and two different bridges. How can I add a route between them in the router, so that I will be able to ping device 2 from device 1 and vice versa. Please find the diagram below.
Device 1 Router Device 2
+-----------------+ +----------------------------+ +-----------------+
| | | | | |
| eth1 | | br2 br1 | | wlan0 |
| 169.254.10.10 |-----| 169.254.50.1 10.0.0.1 |----| 169.254.168.11 |
| (self assigned) | | | | (self assigned) |
+-----------------+ +----------------------------+ +-----------------+
Can I achieve this using route tables?
networking routing network-interface
add a comment |Â
up vote
2
down vote
favorite
up vote
2
down vote
favorite
I Have two devices connected over two different physical interfaces and two different bridges. How can I add a route between them in the router, so that I will be able to ping device 2 from device 1 and vice versa. Please find the diagram below.
Device 1 Router Device 2
+-----------------+ +----------------------------+ +-----------------+
| | | | | |
| eth1 | | br2 br1 | | wlan0 |
| 169.254.10.10 |-----| 169.254.50.1 10.0.0.1 |----| 169.254.168.11 |
| (self assigned) | | | | (self assigned) |
+-----------------+ +----------------------------+ +-----------------+
Can I achieve this using route tables?
networking routing network-interface
I Have two devices connected over two different physical interfaces and two different bridges. How can I add a route between them in the router, so that I will be able to ping device 2 from device 1 and vice versa. Please find the diagram below.
Device 1 Router Device 2
+-----------------+ +----------------------------+ +-----------------+
| | | | | |
| eth1 | | br2 br1 | | wlan0 |
| 169.254.10.10 |-----| 169.254.50.1 10.0.0.1 |----| 169.254.168.11 |
| (self assigned) | | | | (self assigned) |
+-----------------+ +----------------------------+ +-----------------+
Can I achieve this using route tables?
networking routing network-interface
asked Oct 30 '17 at 18:40
A R
1017
1017
add a comment |Â
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
4
down vote
Addresses in the 169.254.0.0/16 range are IPv4 link-local addresses, that is, addresses to be used only on the local network and not to be routed between network segments.
If you want to allow communication between Device 1 and Device 2 without having them on the same network segment, you should assign their network interfaces addresses from private internet address space, such as 10.0.0.1 assigned to interface br1 in your diagram.
Can I use proxy arp in this case?
â A R
Oct 30 '17 at 19:16
Proxy arp may well work for what you need. I avoid 169.254.0.0/16 as much as I can.
â user4556274
Oct 30 '17 at 19:21
I cant touch devices 1 and 2. Is there anyway to make this working?
â A R
Oct 30 '17 at 19:27
how to add route when using proxy arp?
â A R
Oct 30 '17 at 19:36
He forgot to mention that he wants to route multicast in this setup (which won't work this way). Also, he's asking two questions about the same issue ...
â dirkt
Oct 30 '17 at 20:04
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
Addresses in the 169.254.0.0/16 range are IPv4 link-local addresses, that is, addresses to be used only on the local network and not to be routed between network segments.
If you want to allow communication between Device 1 and Device 2 without having them on the same network segment, you should assign their network interfaces addresses from private internet address space, such as 10.0.0.1 assigned to interface br1 in your diagram.
Can I use proxy arp in this case?
â A R
Oct 30 '17 at 19:16
Proxy arp may well work for what you need. I avoid 169.254.0.0/16 as much as I can.
â user4556274
Oct 30 '17 at 19:21
I cant touch devices 1 and 2. Is there anyway to make this working?
â A R
Oct 30 '17 at 19:27
how to add route when using proxy arp?
â A R
Oct 30 '17 at 19:36
He forgot to mention that he wants to route multicast in this setup (which won't work this way). Also, he's asking two questions about the same issue ...
â dirkt
Oct 30 '17 at 20:04
add a comment |Â
up vote
4
down vote
Addresses in the 169.254.0.0/16 range are IPv4 link-local addresses, that is, addresses to be used only on the local network and not to be routed between network segments.
If you want to allow communication between Device 1 and Device 2 without having them on the same network segment, you should assign their network interfaces addresses from private internet address space, such as 10.0.0.1 assigned to interface br1 in your diagram.
Can I use proxy arp in this case?
â A R
Oct 30 '17 at 19:16
Proxy arp may well work for what you need. I avoid 169.254.0.0/16 as much as I can.
â user4556274
Oct 30 '17 at 19:21
I cant touch devices 1 and 2. Is there anyway to make this working?
â A R
Oct 30 '17 at 19:27
how to add route when using proxy arp?
â A R
Oct 30 '17 at 19:36
He forgot to mention that he wants to route multicast in this setup (which won't work this way). Also, he's asking two questions about the same issue ...
â dirkt
Oct 30 '17 at 20:04
add a comment |Â
up vote
4
down vote
up vote
4
down vote
Addresses in the 169.254.0.0/16 range are IPv4 link-local addresses, that is, addresses to be used only on the local network and not to be routed between network segments.
If you want to allow communication between Device 1 and Device 2 without having them on the same network segment, you should assign their network interfaces addresses from private internet address space, such as 10.0.0.1 assigned to interface br1 in your diagram.
Addresses in the 169.254.0.0/16 range are IPv4 link-local addresses, that is, addresses to be used only on the local network and not to be routed between network segments.
If you want to allow communication between Device 1 and Device 2 without having them on the same network segment, you should assign their network interfaces addresses from private internet address space, such as 10.0.0.1 assigned to interface br1 in your diagram.
answered Oct 30 '17 at 19:00
user4556274
4,97811123
4,97811123
Can I use proxy arp in this case?
â A R
Oct 30 '17 at 19:16
Proxy arp may well work for what you need. I avoid 169.254.0.0/16 as much as I can.
â user4556274
Oct 30 '17 at 19:21
I cant touch devices 1 and 2. Is there anyway to make this working?
â A R
Oct 30 '17 at 19:27
how to add route when using proxy arp?
â A R
Oct 30 '17 at 19:36
He forgot to mention that he wants to route multicast in this setup (which won't work this way). Also, he's asking two questions about the same issue ...
â dirkt
Oct 30 '17 at 20:04
add a comment |Â
Can I use proxy arp in this case?
â A R
Oct 30 '17 at 19:16
Proxy arp may well work for what you need. I avoid 169.254.0.0/16 as much as I can.
â user4556274
Oct 30 '17 at 19:21
I cant touch devices 1 and 2. Is there anyway to make this working?
â A R
Oct 30 '17 at 19:27
how to add route when using proxy arp?
â A R
Oct 30 '17 at 19:36
He forgot to mention that he wants to route multicast in this setup (which won't work this way). Also, he's asking two questions about the same issue ...
â dirkt
Oct 30 '17 at 20:04
Can I use proxy arp in this case?
â A R
Oct 30 '17 at 19:16
Can I use proxy arp in this case?
â A R
Oct 30 '17 at 19:16
Proxy arp may well work for what you need. I avoid 169.254.0.0/16 as much as I can.
â user4556274
Oct 30 '17 at 19:21
Proxy arp may well work for what you need. I avoid 169.254.0.0/16 as much as I can.
â user4556274
Oct 30 '17 at 19:21
I cant touch devices 1 and 2. Is there anyway to make this working?
â A R
Oct 30 '17 at 19:27
I cant touch devices 1 and 2. Is there anyway to make this working?
â A R
Oct 30 '17 at 19:27
how to add route when using proxy arp?
â A R
Oct 30 '17 at 19:36
how to add route when using proxy arp?
â A R
Oct 30 '17 at 19:36
He forgot to mention that he wants to route multicast in this setup (which won't work this way). Also, he's asking two questions about the same issue ...
â dirkt
Oct 30 '17 at 20:04
He forgot to mention that he wants to route multicast in this setup (which won't work this way). Also, he's asking two questions about the same issue ...
â dirkt
Oct 30 '17 at 20:04
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f401457%2frouting-between-two-networks%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password