rmon/Readme.md

57 lines
903 B
Markdown
Raw Permalink Normal View History

2020-01-21 22:50:41 +01:00
# rmon
`rmon` monitors unreachable routes installed by `babeld`.
Does _not_ need any special permissions to run.
## howto
### install & run
```shell
$ git clone https://git.freifunk-franken.de/lemmi/rmon
$ cd rmon
$ go get -v
$ go run .
```
### open webbrowser
http://localhost:8080/
2020-01-21 22:57:18 +01:00
## Note
2020-01-23 04:44:00 +01:00
`babeld` can spew out massive amounts of route changes that can fill the
netlink socket. `rmon` tries to allocate a 16MB receive buffer, which seems to
be enough for the moment. For this to work check `/proc/sys/net/core/rmem_max`
to be more than 16MB (16777216).
### Set receive buffer size temporarily
Do one of the following:
```shell
# echo 16777216 > /proc/sys/net/core/rmem_max
```
```shell
# sysctl -w net.core.rmem_max=16777216
```
### Set receive buffer pemanently
Add the following line to `/etc/sysctl.conf`:
```
net.core.rmem_max = 16777216
```
and run
```shell
# sysctl -p
```
2020-01-21 22:57:18 +01:00