Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Using two gateways in Network Interface #851

Open
roddylab opened this issue Dec 12, 2024 · 0 comments
Open

Using two gateways in Network Interface #851

roddylab opened this issue Dec 12, 2024 · 0 comments

Comments

@roddylab
Copy link

We are trying to assign two different gateways and IP masks to a single network interface. We can do similar using netplan and it's routing like this:

network:
version: 2
renderer: networkd
ethernets:
eth0:
addresses:
- 192.168.1.100/24
- 10.0.0.100/24
routes:
- to: 0.0.0.0/0
via: 192.168.1.1
on-link: true
table: 100
- to: 0.0.0.0/0
via: 10.0.0.1
on-link: true
table: 101
routing-policy:
- from: 192.168.1.100
table: 100
- from: 10.0.0.100
table: 101

Is that possible to do something similar using f-stack? Or only using virtual interfaces?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant