question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Help configuring multi-DP routing

See original GitHub issue

Hello all,

I can’t seem to get inter-vlan routing working at all. I have a Zodiac GX that is connected to a Zodiac FX - I believe I have trunked them together correctly (yaml config below). I can successfully ping the faucet_vip address of a vlan from a host attached to a port in the same native vlan (e.g. host with ip 172.16.0.50 connected to interface 1 on the Zodiac GX can ping 172.16.0.254). However I cannot ping from a host with ip 172.16.0.50 connected to interface 1 of the GX to a host with ip 10.0.0.50 connected to interface 2 of the FX.

I have set the Default GWs of both hosts to there respective faucet_vip.

(Zodiac GX interface 4 is trunked to Zodiac FX interface 1)

I hope this makes sense, please help 😃

version: 2

vlans:
        private:
                name: "private"
                vid: 100
                max_hosts: 255
                faucet_vips: ["172.16.0.254/16"]
        guest:
                name: "guest"
                vid: 200
                max_hosts: 255
                faucet_vips: ["10.0.0.254/24"]
routers:
        home-router:
                vlans: [private, guest]
dps:
        zodiacgx:
                dp_id: 0x************
                description: "ZodiacGX"
                hardware: "ZodiacGX"
                interfaces:
                        1:
                                name: "eth0.1"
                                native_vlan: private
                        2:
                                name: "eth0.2"
                                native_vlan: private
                        3:
                                name: "eth0.3"
                                native_vlan: private
                        4:
                                name: "eth0.4"
                                tagged_vlans: [private,guest]
        zodiacfx:
                dp_id: 0x************
                description: "ZodiacFX"
                hardware: "ZodiacFX"
                interfaces:
                        1:
                                tagged_vlans: [private,guest]
                        2:
                                native_vlan: guest
                        3:
                                native_vlan: guest

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Comments:36 (15 by maintainers)

github_iconTop GitHub Comments

2reactions
gizmoguycommented, Sep 10, 2018

Yes by the two routers I mean 172.16.0.1 and 172.16.0.254. You aren’t meant to route inside a single L2 domain and you have to remember that Inter-VLAN Routing (IVR) in faucet is real L3 routing.

Something more like this work work better:

dru90 proposed network architecture

To actually get internet in this setup you will need to setup some additional NAT rules on your OpenWRT router and also add a static route inside VLAN10 for 0.0.0.0 toward 10.0.10.1.

1reaction
gizmoguycommented, Sep 11, 2018

Glad to hear the GX now works as expected.

Regarding the Zodiac FX problems, could you let me know what firmware version you are running? I will spin up one of mine here and see if I can track down the problem the tagged VLAN problem. Zodiac FX is an open source project so best we can do is submit a bug report on their repo and see if they are able to fix.

Read more comments on GitHub >

github_iconTop Results From Across the Web

IP Routing: Protocol-Independent Configuration Guide, Cisco ...
The Multi-VRF Support feature allows you to configure and maintain more than one instance of a routing and forwarding table within the same ......
Read more >
10. Configuring Network Routing - MultiNet 5.6 Installation ...
Static routing is simple to configure and use. The GATED dynamic gateway routing daemon. Handles multiple routing protocols and replaces ROUTED and EGPUP....
Read more >
Multiple Depots Route Optimization Constraint
Plan multi depot routes with unlimited stops and multiple delivery drivers on route optimization software with dynamic routing.
Read more >
CONFIGURING MULTI-VRF - YouTube
CONFIGURING STACK TRUNKS · CONFIGURING A MANAGEMENT VRF · Configuring VRF Lite on Cisco Routers (for CCNP ROUTE Candidates) · VRF Basic with...
Read more >
Defining Multi-Link routes - Next-Generation Firewall (NFGW)
When you use Multi-Link routing, traffic can use multiple network connections to reach its destination. You can define Multi-Link routes for NGFW Engines...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found