go.ligato.io/vpp-agent/v3@v3.5.0/examples/kvscheduler/mock_plugins/l2plugin/model/fib.proto (about) 1 syntax = "proto3"; 2 3 package mock.l2; 4 5 option go_package = "go.ligato.io/vpp-agent/v3/examples/kvscheduler/mock_plugins/ifplugin/model;mock_l2"; 6 7 message FIBEntry { 8 string phys_address = 1; /* unique destination MAC address */ 9 string bridge_domain = 2; /* name of bridge domain this FIB table entry belongs to */ 10 11 enum Action { 12 FORWARD = 0; /* forward the matching frame */ 13 DROP = 1; /* drop the matching frame */ 14 }; 15 Action action = 3; /* action to tke on matching frames */ 16 17 string outgoing_interface = 4; /* outgoing interface for matching frames */ 18 }