KiraleTech / KiBRA

Kirale's Thread Border Router reference implementation
https://www.kirale.com
MIT License
12 stars 3 forks source link

db/leases not found #4

Closed JUDOKICK closed 5 years ago

JUDOKICK commented 5 years ago

When accessing the webserver from the browser. Browser reports back that db/leases is not found. It is not loaded in sources either. What is required to make it acessible ?

KiraleDev commented 5 years ago

@JUDOKICK in which system are you running KiBRA? Have you installed all the dependencies?

JUDOKICK commented 5 years ago

Its running on a RaspberryPi and yes all dependencies have been installed. Although I can't say I'm sure because the list for deps isn't posted.

KiraleDev commented 5 years ago

This is the list of required packages: https://github.com/KiraleTech/KiBRA#requirements

In any case the error you mention is likely due to the DHCP server not being enabled. This can be done by adding these lines in /opt/kirale/kibra.cfg:

{
  "autostart": "1",
  "prefix_dhcp": "1"
}

And forcing a KiBRA restart after: service kibra restart

JUDOKICK commented 5 years ago

Thanks. Gave this a go and it started running!