We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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?
The text was updated successfully, but these errors were encountered: