go.ligato.io/vpp-agent/v3@v3.5.0/proto/ligato/vpp/l3/teib.proto (about) 1 syntax = "proto3"; 2 3 package ligato.vpp.l3; 4 5 option go_package = "go.ligato.io/vpp-agent/v3/proto/ligato/vpp/l3;vpp_l3"; 6 7 import "ligato/annotations.proto"; 8 9 // TeibEntry represents an tunnel endpoint information base entry. 10 message TeibEntry { 11 // Interface references a tunnel interface this TEIB entry is linked to. 12 string interface = 1; 13 14 // IP address of the peer. 15 string peer_addr = 2 [(ligato_options).type = IP]; 16 17 // Next hop IP address. 18 string next_hop_addr = 3 [(ligato_options).type = IP]; 19 20 // VRF ID used to reach the next hop. 21 uint32 vrf_id = 4; 22 }