summaryrefslogtreecommitdiffstats
path: root/dhcp/dhcp-api/src
diff options
context:
space:
mode:
authorMarek Gradzki <mgradzki@cisco.com>2017-02-09 14:33:52 +0100
committerMarek Gradzki <mgradzki@cisco.com>2017-02-10 14:50:17 +0100
commitb83a4a9d291991b07034c0889694eda247e9c8cd (patch)
treef8f0573c80d2ccbef35b72e84ca9ff32bea5cf63 /dhcp/dhcp-api/src
parent3c310e16d44083b03a64a78295b3295c8a0465bc (diff)
HC2VPP-53: YANG model for DHCP Relay
Change-Id: Ia6dd23a731b1889f5b69ff1761604c29ff84f03c Signed-off-by: Marek Gradzki <mgradzki@cisco.com>
Diffstat (limited to 'dhcp/dhcp-api/src')
-rw-r--r--dhcp/dhcp-api/src/main/yang/dhcp.yang89
1 files changed, 89 insertions, 0 deletions
diff --git a/dhcp/dhcp-api/src/main/yang/dhcp.yang b/dhcp/dhcp-api/src/main/yang/dhcp.yang
new file mode 100644
index 000000000..281c5049a
--- /dev/null
+++ b/dhcp/dhcp-api/src/main/yang/dhcp.yang
@@ -0,0 +1,89 @@
+module dhcp {
+
+ yang-version 1;
+ namespace "urn:opendaylight:params:xml:ns:yang:vpp:dhcp";
+ prefix "dhcp";
+
+ description
+ "This YANG module defines the generic configuration and
+ operational data for dhcp in VPP";
+
+ revision "2017-03-15" {
+ description
+ "Initial revision of dhcp model";
+ }
+
+ import ietf-inet-types {
+ prefix inet;
+ }
+
+ identity address-family {
+ description
+ "Base identity from which identities describing address
+ families are derived.";
+ }
+
+ identity ipv4 {
+ base address-family;
+ description
+ "This identity represents IPv4 address family.";
+ }
+
+ identity ipv6 {
+ base address-family;
+ description
+ "This identity represents IPv6 address family.";
+ }
+
+ typedef address-type {
+ type identityref {
+ base address-family;
+ }
+ }
+
+ grouping relay-attributes {
+ leaf server-address {
+ type inet:ip-address-no-zone;
+ mandatory true;
+ description
+ "IP address of the server DHCP packets will be forwarded to.";
+ }
+ leaf server-vrf-id {
+ type uint32;
+ default 0;
+ description
+ "Used to send DHCP messages to the server";
+ }
+ leaf gateway-address {
+ type inet:ip-address-no-zone;
+ mandatory true;
+ description
+ "IP address of the relay agent.";
+ }
+ leaf insert-circuit-id {
+ type boolean;
+ default true;
+ }
+ }
+
+ grouping dhcp-attributes {
+ container relays {
+ list relay {
+ key "address-type rx-vrf-id";
+ leaf address-type {
+ type address-type;
+ }
+ leaf rx-vrf-id {
+ type uint32;
+ description
+ "Used to receive DHCP messages from clients.";
+ }
+ uses relay-attributes;
+ }
+ }
+ }
+
+ container dhcp {
+ uses dhcp-attributes;
+ }
+} \ No newline at end of file