diff options
author | Wojciech Dec <wdec@cisco.com> | 2016-07-19 19:54:25 +0200 |
---|---|---|
committer | Wojciech Dec <wdec@cisco.com> | 2016-08-16 09:08:38 +0200 |
commit | 36987d703832256ccb021f0e139f1f6dd142d676 (patch) | |
tree | 4a56493a1f1ee1b462bea6c53b43a5087c3915d4 /v3po/api/src | |
parent | 96921d72dcd77e39918fd0cf4a43a5150ecee4e5 (diff) |
Proxy ARP reader/writer
Change-Id: Iabb947e89cbb906e78e4d87bc99fb5e8d09e495c
Signed-off-by: Wojciech Dec <wdec@cisco.com>
Diffstat (limited to 'v3po/api/src')
-rw-r--r-- | v3po/api/src/main/yang/v3po.yang | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/v3po/api/src/main/yang/v3po.yang b/v3po/api/src/main/yang/v3po.yang index e99da965c..fbcb76ccb 100644 --- a/v3po/api/src/main/yang/v3po.yang +++ b/v3po/api/src/main/yang/v3po.yang @@ -400,6 +400,22 @@ module v3po { } } + grouping proxy-arp-attributes { + description + "Parameters for configuring Proxy ARP on interfaces."; + + leaf vrf-id { + type uint32; + default 0; + } + leaf low-addr { + type inet:ipv4-address; + } + leaf high-addr { + type inet:ipv4-address; + } + } + grouping acl-base-attributes { description "Defines references to classify tables. @@ -506,6 +522,10 @@ module v3po { uses vxlan-gpe-base-attributes; } + container proxy-arp { + uses proxy-arp-attributes; + } + container acl { uses acl-base-attributes; } @@ -582,6 +602,10 @@ module v3po { uses l2-base-attributes; } + container proxy-arp { + uses proxy-arp-attributes; + } + container acl { uses acl-base-attributes; } |