Routing between two networks

The name of the pictureThe name of the pictureThe name of the pictureClash 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?







share|improve this question
























    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?







    share|improve this question






















      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?







      share|improve this question












      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?









      share|improve this question











      share|improve this question




      share|improve this question










      asked Oct 30 '17 at 18:40









      A R

      1017




      1017




















          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.






          share|improve this answer




















          • 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










          Your Answer







          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "106"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          convertImagesToLinks: false,
          noModals: false,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













           

          draft saved


          draft discarded


















          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






























          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.






          share|improve this answer




















          • 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














          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.






          share|improve this answer




















          • 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












          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.






          share|improve this answer












          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.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          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
















          • 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

















           

          draft saved


          draft discarded















































           


          draft saved


          draft discarded














          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













































































          Popular posts from this blog

          Peggy Mitchell

          The Forum (Inglewood, California)

          Palaiologos