go.ligato.io/vpp-agent/v3@v3.5.0/proto/ligato/vpp/l2/fib.proto (about)

     1  syntax = "proto3";
     2  
     3  package ligato.vpp.l2;
     4  
     5  option go_package = "go.ligato.io/vpp-agent/v3/proto/ligato/vpp/l2;vpp_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      enum Action {
    11          FORWARD = 0;                            /* forward the matching frame */
    12          DROP = 1;                               /* drop the matching frame */
    13      };
    14      Action action = 3;                          /* action to tke on matching frames */
    15      string outgoing_interface = 4;              /* outgoing interface for matching frames */
    16      bool static_config = 5;                     /* true if this is a statically configured FIB entry */
    17      bool bridged_virtual_interface = 6;         /* the MAC address is a bridge virtual interface MAC */
    18  }