Static Routes between Multiple Subnets - ROUTER (WAN) + WiFi Mesh ROUTER

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP












0















I've got a standard router (192.168.1.1) that is connected to the internet. It also has the following connected to it:



  • an un-managed switch which all wired devices connect to.

  • a Tenda Mesh WiFi Router (192.168.1.9 >> 192.168.5.1) connected to it.

Devices connected to the Tenda have IPs of 192.168.5.x and I can't connect to them from devices connected to the main router.



UPDATE: I've seen some posts referencing 'Routes' within netctl, but I get:



Jan 14 22:56:00 deviceX network[3728]: Could not add route '192.168.5.0/24 via 192.168.1.9,' to interface 'eno1'
Jan 14 22:56:00 deviceX dhclient[3788]: receive_packet failed on eno1: Network is down
Jan 14 22:56:00 deviceX network[3728]: Failed to bring the network up for profile 'mynet-eno1-dhcp'


My current netctl profile is:



Description='A basic dhcp ethernet connection'
Interface=eno1
Connection=ethernet
IP=dhcp
#Routes=('192.168.5.0/24 via 192.168.1.9', '192.168.1.0/24 via 192.168.1.1')
DHCPClient=dhclient
#DHCPReleaseOnStop=no
## for DHCPv6
IP6=dhcp
DHCP6Client=dhclient
## for IPv6 autoconfiguration
#IP6=stateless


In order to connect seamlessly between these two networks, how (and where) can I create a Static Route. Also, do I need to do this on multiple machines. My computers are all running Arch Linux, including several Raspberry Pis which are always on, that could server as intermediate points, if that would work.










share|improve this question



















  • 2





    You do not add "secondary" gateways, you add static routes.

    – Rui F Ribeiro
    Jan 13 at 22:24






  • 1





    Either distribute static routes by DHCP to all hosts in the two segments, or, assuming the two routers are the default routing gateways in each segment, add a static route to each router. The latter will be less efficient. Alternatively: Don't let the Tenda Router use a different segment with its own DHCP, bridge it instead.

    – dirkt
    Jan 15 at 7:00












  • @dirkt Thanks, I didn't think there was any settings in the Tenda app, but I've dug a little deeper and changed them from DHCP to Bridge. Many thanks. Please do add your comment as an answer and I'll accept.

    – aSystemOverload
    Jan 15 at 19:49















0















I've got a standard router (192.168.1.1) that is connected to the internet. It also has the following connected to it:



  • an un-managed switch which all wired devices connect to.

  • a Tenda Mesh WiFi Router (192.168.1.9 >> 192.168.5.1) connected to it.

Devices connected to the Tenda have IPs of 192.168.5.x and I can't connect to them from devices connected to the main router.



UPDATE: I've seen some posts referencing 'Routes' within netctl, but I get:



Jan 14 22:56:00 deviceX network[3728]: Could not add route '192.168.5.0/24 via 192.168.1.9,' to interface 'eno1'
Jan 14 22:56:00 deviceX dhclient[3788]: receive_packet failed on eno1: Network is down
Jan 14 22:56:00 deviceX network[3728]: Failed to bring the network up for profile 'mynet-eno1-dhcp'


My current netctl profile is:



Description='A basic dhcp ethernet connection'
Interface=eno1
Connection=ethernet
IP=dhcp
#Routes=('192.168.5.0/24 via 192.168.1.9', '192.168.1.0/24 via 192.168.1.1')
DHCPClient=dhclient
#DHCPReleaseOnStop=no
## for DHCPv6
IP6=dhcp
DHCP6Client=dhclient
## for IPv6 autoconfiguration
#IP6=stateless


In order to connect seamlessly between these two networks, how (and where) can I create a Static Route. Also, do I need to do this on multiple machines. My computers are all running Arch Linux, including several Raspberry Pis which are always on, that could server as intermediate points, if that would work.










share|improve this question



















  • 2





    You do not add "secondary" gateways, you add static routes.

    – Rui F Ribeiro
    Jan 13 at 22:24






  • 1





    Either distribute static routes by DHCP to all hosts in the two segments, or, assuming the two routers are the default routing gateways in each segment, add a static route to each router. The latter will be less efficient. Alternatively: Don't let the Tenda Router use a different segment with its own DHCP, bridge it instead.

    – dirkt
    Jan 15 at 7:00












  • @dirkt Thanks, I didn't think there was any settings in the Tenda app, but I've dug a little deeper and changed them from DHCP to Bridge. Many thanks. Please do add your comment as an answer and I'll accept.

    – aSystemOverload
    Jan 15 at 19:49













0












0








0








I've got a standard router (192.168.1.1) that is connected to the internet. It also has the following connected to it:



  • an un-managed switch which all wired devices connect to.

  • a Tenda Mesh WiFi Router (192.168.1.9 >> 192.168.5.1) connected to it.

Devices connected to the Tenda have IPs of 192.168.5.x and I can't connect to them from devices connected to the main router.



UPDATE: I've seen some posts referencing 'Routes' within netctl, but I get:



Jan 14 22:56:00 deviceX network[3728]: Could not add route '192.168.5.0/24 via 192.168.1.9,' to interface 'eno1'
Jan 14 22:56:00 deviceX dhclient[3788]: receive_packet failed on eno1: Network is down
Jan 14 22:56:00 deviceX network[3728]: Failed to bring the network up for profile 'mynet-eno1-dhcp'


My current netctl profile is:



Description='A basic dhcp ethernet connection'
Interface=eno1
Connection=ethernet
IP=dhcp
#Routes=('192.168.5.0/24 via 192.168.1.9', '192.168.1.0/24 via 192.168.1.1')
DHCPClient=dhclient
#DHCPReleaseOnStop=no
## for DHCPv6
IP6=dhcp
DHCP6Client=dhclient
## for IPv6 autoconfiguration
#IP6=stateless


In order to connect seamlessly between these two networks, how (and where) can I create a Static Route. Also, do I need to do this on multiple machines. My computers are all running Arch Linux, including several Raspberry Pis which are always on, that could server as intermediate points, if that would work.










share|improve this question
















I've got a standard router (192.168.1.1) that is connected to the internet. It also has the following connected to it:



  • an un-managed switch which all wired devices connect to.

  • a Tenda Mesh WiFi Router (192.168.1.9 >> 192.168.5.1) connected to it.

Devices connected to the Tenda have IPs of 192.168.5.x and I can't connect to them from devices connected to the main router.



UPDATE: I've seen some posts referencing 'Routes' within netctl, but I get:



Jan 14 22:56:00 deviceX network[3728]: Could not add route '192.168.5.0/24 via 192.168.1.9,' to interface 'eno1'
Jan 14 22:56:00 deviceX dhclient[3788]: receive_packet failed on eno1: Network is down
Jan 14 22:56:00 deviceX network[3728]: Failed to bring the network up for profile 'mynet-eno1-dhcp'


My current netctl profile is:



Description='A basic dhcp ethernet connection'
Interface=eno1
Connection=ethernet
IP=dhcp
#Routes=('192.168.5.0/24 via 192.168.1.9', '192.168.1.0/24 via 192.168.1.1')
DHCPClient=dhclient
#DHCPReleaseOnStop=no
## for DHCPv6
IP6=dhcp
DHCP6Client=dhclient
## for IPv6 autoconfiguration
#IP6=stateless


In order to connect seamlessly between these two networks, how (and where) can I create a Static Route. Also, do I need to do this on multiple machines. My computers are all running Arch Linux, including several Raspberry Pis which are always on, that could server as intermediate points, if that would work.







networking netctl






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 14 at 22:59







aSystemOverload

















asked Jan 13 at 22:20









aSystemOverloadaSystemOverload

3241315




3241315







  • 2





    You do not add "secondary" gateways, you add static routes.

    – Rui F Ribeiro
    Jan 13 at 22:24






  • 1





    Either distribute static routes by DHCP to all hosts in the two segments, or, assuming the two routers are the default routing gateways in each segment, add a static route to each router. The latter will be less efficient. Alternatively: Don't let the Tenda Router use a different segment with its own DHCP, bridge it instead.

    – dirkt
    Jan 15 at 7:00












  • @dirkt Thanks, I didn't think there was any settings in the Tenda app, but I've dug a little deeper and changed them from DHCP to Bridge. Many thanks. Please do add your comment as an answer and I'll accept.

    – aSystemOverload
    Jan 15 at 19:49












  • 2





    You do not add "secondary" gateways, you add static routes.

    – Rui F Ribeiro
    Jan 13 at 22:24






  • 1





    Either distribute static routes by DHCP to all hosts in the two segments, or, assuming the two routers are the default routing gateways in each segment, add a static route to each router. The latter will be less efficient. Alternatively: Don't let the Tenda Router use a different segment with its own DHCP, bridge it instead.

    – dirkt
    Jan 15 at 7:00












  • @dirkt Thanks, I didn't think there was any settings in the Tenda app, but I've dug a little deeper and changed them from DHCP to Bridge. Many thanks. Please do add your comment as an answer and I'll accept.

    – aSystemOverload
    Jan 15 at 19:49







2




2





You do not add "secondary" gateways, you add static routes.

– Rui F Ribeiro
Jan 13 at 22:24





You do not add "secondary" gateways, you add static routes.

– Rui F Ribeiro
Jan 13 at 22:24




1




1





Either distribute static routes by DHCP to all hosts in the two segments, or, assuming the two routers are the default routing gateways in each segment, add a static route to each router. The latter will be less efficient. Alternatively: Don't let the Tenda Router use a different segment with its own DHCP, bridge it instead.

– dirkt
Jan 15 at 7:00






Either distribute static routes by DHCP to all hosts in the two segments, or, assuming the two routers are the default routing gateways in each segment, add a static route to each router. The latter will be less efficient. Alternatively: Don't let the Tenda Router use a different segment with its own DHCP, bridge it instead.

– dirkt
Jan 15 at 7:00














@dirkt Thanks, I didn't think there was any settings in the Tenda app, but I've dug a little deeper and changed them from DHCP to Bridge. Many thanks. Please do add your comment as an answer and I'll accept.

– aSystemOverload
Jan 15 at 19:49





@dirkt Thanks, I didn't think there was any settings in the Tenda app, but I've dug a little deeper and changed them from DHCP to Bridge. Many thanks. Please do add your comment as an answer and I'll accept.

– aSystemOverload
Jan 15 at 19:49










1 Answer
1






active

oldest

votes


















1














Either distribute static routes by DHCP to all hosts in the two segments, or, assuming the two routers are the default routing gateways in each segment, add a static route to each router. The latter will be less efficient.



Alternatively: Don't let the Tenda Router use a different segment with its own DHCP, bridge it instead.






share|improve this answer























  • The simplest answer is often the easiest. I changed the settings, which were buried in settings, to BRIDGE mode, away from DHCP. Thank you.

    – aSystemOverload
    Jan 16 at 9:07










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',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
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%2f494316%2fstatic-routes-between-multiple-subnets-router-wan-wifi-mesh-router%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









1














Either distribute static routes by DHCP to all hosts in the two segments, or, assuming the two routers are the default routing gateways in each segment, add a static route to each router. The latter will be less efficient.



Alternatively: Don't let the Tenda Router use a different segment with its own DHCP, bridge it instead.






share|improve this answer























  • The simplest answer is often the easiest. I changed the settings, which were buried in settings, to BRIDGE mode, away from DHCP. Thank you.

    – aSystemOverload
    Jan 16 at 9:07















1














Either distribute static routes by DHCP to all hosts in the two segments, or, assuming the two routers are the default routing gateways in each segment, add a static route to each router. The latter will be less efficient.



Alternatively: Don't let the Tenda Router use a different segment with its own DHCP, bridge it instead.






share|improve this answer























  • The simplest answer is often the easiest. I changed the settings, which were buried in settings, to BRIDGE mode, away from DHCP. Thank you.

    – aSystemOverload
    Jan 16 at 9:07













1












1








1







Either distribute static routes by DHCP to all hosts in the two segments, or, assuming the two routers are the default routing gateways in each segment, add a static route to each router. The latter will be less efficient.



Alternatively: Don't let the Tenda Router use a different segment with its own DHCP, bridge it instead.






share|improve this answer













Either distribute static routes by DHCP to all hosts in the two segments, or, assuming the two routers are the default routing gateways in each segment, add a static route to each router. The latter will be less efficient.



Alternatively: Don't let the Tenda Router use a different segment with its own DHCP, bridge it instead.







share|improve this answer












share|improve this answer



share|improve this answer










answered Jan 16 at 6:10









dirktdirkt

16.9k21336




16.9k21336












  • The simplest answer is often the easiest. I changed the settings, which were buried in settings, to BRIDGE mode, away from DHCP. Thank you.

    – aSystemOverload
    Jan 16 at 9:07

















  • The simplest answer is often the easiest. I changed the settings, which were buried in settings, to BRIDGE mode, away from DHCP. Thank you.

    – aSystemOverload
    Jan 16 at 9:07
















The simplest answer is often the easiest. I changed the settings, which were buried in settings, to BRIDGE mode, away from DHCP. Thank you.

– aSystemOverload
Jan 16 at 9:07





The simplest answer is often the easiest. I changed the settings, which were buried in settings, to BRIDGE mode, away from DHCP. Thank you.

– aSystemOverload
Jan 16 at 9:07

















draft saved

draft discarded
















































Thanks for contributing an answer to Unix & Linux Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f494316%2fstatic-routes-between-multiple-subnets-router-wan-wifi-mesh-router%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown






Popular posts from this blog

How to check contact read email or not when send email to Individual?

Bahrain

Postfix configuration issue with fips on centos 7; mailgun relay