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
Add support directly connected routes. Lookup neighbor MAC address by destination IP address (instead nexthop address).
The text was updated successfully, but these errors were encountered:
Example config: https://github.com/yanet-platform/yanet/blob/main/autotest/units/001_one_port/071_route_directly_connected/controlplane.conf
{ "modules": { "route0": { "type": "route", "interfaces": { "kni0.100": { "ipAddresses": [ "10.10.0.1/24", ///< directly connected "2000:100::1/96" ///< directly connected ], ...
And check fib:
$ yanet-cli route lookup route0 10.10.0.100 ingress_physical_ports prefix nexthop egress_interface labels ---------------------- ------------ ------- ---------------- ------ kni0 10.10.0.0/24 kni0.100 $ yanet-cli route lookup route0 2000:100::100 ingress_physical_ports prefix nexthop egress_interface labels ---------------------- ------------- ------- ---------------- ------ kni0 2000:100::/96 kni0.100
Sorry, something went wrong.
No branches or pull requests
Add support directly connected routes.
Lookup neighbor MAC address by destination IP address (instead nexthop address).
The text was updated successfully, but these errors were encountered: