go.ligato.io/vpp-agent/v3@v3.5.0/proto/ligato/vpp/interfaces/dhcp.proto (about)

     1  syntax = "proto3";
     2  
     3  package ligato.vpp.interfaces;
     4  
     5  option go_package = "go.ligato.io/vpp-agent/v3/proto/ligato/vpp/interfaces;vpp_interfaces";
     6  
     7  import "ligato/annotations.proto";
     8  
     9  /* DHCPLease is a notification, i.e. flows from SB upwards */
    10  message DHCPLease {
    11  	string interface_name = 1;
    12  	string host_name = 2;
    13  	bool is_ipv6 = 3;
    14  	string host_phys_address = 4;
    15  	string host_ip_address = 5  [(ligato_options).type = IP_WITH_MASK];    /* IP addresses in the format <ipAddress>/<ipPrefix> */
    16  	string router_ip_address = 6  [(ligato_options).type = IP_WITH_MASK];  /* IP addresses in the format <ipAddress>/<ipPrefix> */
    17  }