From 26b04d2d2d2a88be6abc5879a2fb48e05f0003fd Mon Sep 17 00:00:00 2001 From: Razvan Becheriu Date: Wed, 12 Jun 2019 19:49:57 +0300 Subject: [PATCH] [#590, !380] fixed examples --- doc/guide/classify.xml | 6 +++--- doc/guide/dhcp6-srv.xml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/guide/classify.xml b/doc/guide/classify.xml index c677ffdd11..4755913c89 100644 --- a/doc/guide/classify.xml +++ b/doc/guide/classify.xml @@ -874,7 +874,7 @@ concatenation of the strings "client-classes": [ { "name": "Client_enterprise", - "test": "substring(option[1].hex,0,6) == 0x0002AABBCCDD'", + "test": "substring(option[1].hex,0,6) == 0x0002AABBCCDD", "option-data": [ { "name": "dns-servers", @@ -955,7 +955,7 @@ concatenation of the strings "client-classes": [ { "name": "Client_enterprise", - "test": "substring(option[1].hex,0,6) == 0x0002AABBCCDD'", + "test": "substring(option[1].hex,0,6) == 0x0002AABBCCDD", "option-data": [ { "name": "dns-servers", @@ -1038,7 +1038,7 @@ concatenation of the strings "client-classes": [ { "name": "Client_enterprise_", - "test": "substring(option[1].hex,0,6) == 0x0002AABBCCDD'", + "test": "substring(option[1].hex,0,6) == 0x0002AABBCCDD", "option-data": [ { "name": "dns-servers", diff --git a/doc/guide/dhcp6-srv.xml b/doc/guide/dhcp6-srv.xml index 64489f2121..c91b122ad3 100644 --- a/doc/guide/dhcp6-srv.xml +++ b/doc/guide/dhcp6-srv.xml @@ -1033,7 +1033,7 @@ temporarily override a list of interface names and listen on all interfaces. link through which the delegating router exchanges DHCPv6 messages with the requesting router. The configuration example below demonstrates how to specify an excluded prefix within a prefix pool definition. The - excluded prefix "2001:db8:1:babe:cafe:80::/72" will be sent to a + excluded prefix "2001:db8:1:8000:cafe:80::/72" will be sent to a requesting router which includes the Prefix Exclude option in the ORO, and which is delegated a prefix from this pool. @@ -1047,7 +1047,7 @@ temporarily override a list of interface names and listen on all interfaces. "prefix": "2001:db8:1:8000::", "prefix-len": 48, "delegated-len": 64, - "excluded-prefix": "2001:db8:1:babe:cafe:80::", + "excluded-prefix": "2001:db8:1:8000:cafe:80::", "excluded-prefix-len": 72 } ] @@ -2413,7 +2413,7 @@ should include options from the new option space: "client-classes": [ { "name": "Client_enterprise", - "test": "substring(option[1].hex,0,6) == 0x0002AABBCCDD'", + "test": "substring(option[1].hex,0,6) == 0x0002AABBCCDD", "option-data": [ { "name": "dns-servers", -- 2.47.2