1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

gnrc_border_router: Fix syntax error in Kea configuration

The last element of a JSON array must not be terminated with a `,`
character. As such, the configuration documented currently in the
`README.md` file of gnrc_border_router is invalid and rejected by
Kea.
This commit is contained in:
Sören Tempel 2022-07-12 21:52:25 +02:00
parent 1ba2ef8977
commit 594333d596

View File

@ -64,7 +64,7 @@ server e.g. you can use the following configuration:
"subnet": "2001:db8::/16",
"pd-pools": [ { "prefix": "2001:db8::",
"prefix-len": 16,
"delegated-len": 64 } ] },
"delegated-len": 64 } ] }
]
...
}