diff options
author | Marek Gradzki <mgradzki@cisco.com> | 2018-01-03 08:37:30 +0100 |
---|---|---|
committer | Marek Gradzki <mgradzki@cisco.com> | 2018-01-03 08:39:47 +0100 |
commit | c127a6e1f1f7c37864bf9e11887cb7b84dfad826 (patch) | |
tree | a5d43033dbb78c4992f1cea4885f74e9ba4dd48c /dhcp/dhcp-api | |
parent | 730a7ee0267663fdc525ad7b0c50318ef73e520f (diff) |
HC2VPP-274(dhcp.yang): use inet:ip-address-no-zone instead of inet:ip-address
The zone index is not needed in case of dhcp.yang.
It was introduced due to ODL bug:
https://bugs.opendaylight.org/show_bug.cgi?id=6413
Change-Id: Ia32a2e6cc0c4ec31bd9b30392a3a558b28568fb2
Signed-off-by: Marek Gradzki <mgradzki@cisco.com>
Diffstat (limited to 'dhcp/dhcp-api')
-rw-r--r-- | dhcp/dhcp-api/src/main/yang/dhcp@2018-01-03.yang (renamed from dhcp/dhcp-api/src/main/yang/dhcp@2017-03-15.yang) | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/dhcp/dhcp-api/src/main/yang/dhcp@2017-03-15.yang b/dhcp/dhcp-api/src/main/yang/dhcp@2018-01-03.yang index 4fa0a61f8..7c88b6d0d 100644 --- a/dhcp/dhcp-api/src/main/yang/dhcp@2017-03-15.yang +++ b/dhcp/dhcp-api/src/main/yang/dhcp@2018-01-03.yang @@ -8,6 +8,13 @@ module dhcp { "This YANG module defines the generic configuration and operational data for dhcp in VPP"; + revision "2018-01-03" { + description + "Changes type of ip-addresses from inet:ip-address to inet:ip-address-no-zone."; + reference + "https://jira.fd.io/browse/HC2VPP-79"; + } + revision "2017-03-15" { description "Initial revision of dhcp model"; @@ -45,8 +52,7 @@ module dhcp { list server { key "vrf-id address"; leaf address { - // FIXME(HC2VPP-79): change to ip-address-no-zone after https://bugs.opendaylight.org/show_bug.cgi?id=6413 is resolved - type inet:ip-address; + type inet:ip-address-no-zone; description "IP address of the server DHCP packets will be forwarded to."; } @@ -58,8 +64,7 @@ module dhcp { } leaf gateway-address { - // FIXME(HC2VPP-79): change to ip-address-no-zone after https://bugs.opendaylight.org/show_bug.cgi?id=6413 is resolved - type inet:ip-address; + type inet:ip-address-no-zone; mandatory true; description "IP address of the relay agent."; |