diff options
author | Marek Gradzki <mgradzki@cisco.com> | 2018-07-02 08:36:39 +0200 |
---|---|---|
committer | Marek Gradzki <mgradzki@cisco.com> | 2018-07-02 09:31:01 +0200 |
commit | ae927860249b060ed4f9a8e0f3df8df7ec2e269c (patch) | |
tree | 9d64f36e681d49cbedb928ab2f69d5cad9dacb32 /l3/api/src/main | |
parent | 8366e77f1751abdae92284a9cbc0d26c126eb4dd (diff) |
HC2VPP-349: use fib-table-list-ref in the proxy-arp model
User is now required to explicitly configure FIB tables
using vpp-fib-management module.
The patch also adds non-default vrf configuration example
to the proxy-arp postman collection.
Change-Id: I8cbdf0add8992bfb0a6a8fe0a38d6a466d5951f0
Signed-off-by: Marek Gradzki <mgradzki@cisco.com>
Diffstat (limited to 'l3/api/src/main')
-rw-r--r-- | l3/api/src/main/yang/proxy-arp@2018-07-02.yang (renamed from l3/api/src/main/yang/proxy-arp@2017-03-15.yang) | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/l3/api/src/main/yang/proxy-arp@2017-03-15.yang b/l3/api/src/main/yang/proxy-arp@2018-07-02.yang index 3fa15955f..dc4caf2c8 100644 --- a/l3/api/src/main/yang/proxy-arp@2017-03-15.yang +++ b/l3/api/src/main/yang/proxy-arp@2018-07-02.yang @@ -12,6 +12,10 @@ module proxy-arp { import yang-ext { prefix "ext"; } + import vpp-fib-table-management { + prefix fib-management; + revision-date 2018-05-21; + } organization "FD.io - The Fast Data Project"; @@ -38,6 +42,13 @@ module proxy-arp { See the License for the specific language governing permissions and limitations under the License."; + revision "2018-07-02" { + description + "Uses references to vrf-management module insted of table identifiers."; + reference + "https://jira.fd.io/browse/HC2VPP-317"; + } + revision "2017-03-15" { description "Initial revision of proxy ARP model for VPP"; } @@ -46,7 +57,7 @@ module proxy-arp { list proxy-range { key "vrf-id low-addr high-addr"; leaf vrf-id { - type uint32; + type fib-management:fib-table-list-ref; } leaf low-addr { type inet:ipv4-address; |