NetFlow aggregation and graph toolkit
Nightfly 3b91a51a4e CM lib update to latest stable | 1 일 전 | |
---|---|---|
api | 1 일 전 | |
config | 2 달 전 | |
content | 10 달 전 | |
dist | 8 달 전 | |
exports | 11 달 전 | |
gdata | 11 달 전 | |
languages | 11 달 전 | |
modules | 2 달 전 | |
skins | 2 달 전 | |
.gitignore | 10 달 전 | |
.htaccess | 10 달 전 | |
CHANGELOG.md | 3 일 전 | |
LICENSE | 11 달 전 | |
README.md | 1 주 전 | |
RELEASE | 1 일 전 | |
index.php | 2 달 전 |
NetFlow aggregation and graph toolkit.
Basic idea is replacement of bandwidthd and Stargazer cap_nf module in one solution, which performs NetFlow data collecting, classification, preprocessing and performing network bandwidth utilization graphs rendering per each host in your network and basic traffic accounting of it, somewhere on some dedicated host.
ninja way
# fetch https://raw.githubusercontent.com/nightflyza/OphanimFlow/main/dist/batchfreebsd.sh && sh batchfreebsd.sh
$ su -
# wget https://raw.githubusercontent.com/nightflyza/OphanimFlow/main/dist/batchdebian12.sh && sh batchdebian12.sh
After that, a simple web interface will be available to you at a link like http://yourhost/of/, which will allow you to make the minimum necessary settings, such as specifying your networks, and start using OphanimFlow. The default login is "admin", the default password is "demo". Don't forget to change it in the user profile settings.
Just run the script
# /bin/autoofupdate.sh
and stay tuned! ;)
Default NetFlow collector UDP port is 42112 and default sampling rate is 100. Flows data dumps to database every 5 minutes, and preprocesses every 5 minutes for charts and every 10 minutes for summary traffic counters, so
# softflowd -i bridge0 -s 100 -t udp=60 -t tcp=60 -t icmp=60 -t general=60 -t maxlife=60 -t tcp.rst=60 -t tcp.fin=60 -n 192.168.0.220:42112
The REST API has several endpoints for getting preprocessed data as well as graphs. So you can use OphanimFlow data in your external apps, somethink like that:
Details of the payloads and endpoints are below. All API requests performs as GET requests with some parameters to base URL like http://yourhost/of/
This API call returns traffic graph, with distribution by traffic classes as PNG image for some specified IP address. Parameter "ip" - is mandatory. All other is optional.
All endpoint parameters:
Minimal example:
?module=graph&ip=172.30.73.247
Returns something like this for a current day
or
?module=graph&ip=172.30.73.247&period=week
like this for a week
or
?module=graph&ip=172.30.73.247&period=hour
like this for a past hour
explict period requires set of two UNIX timestamp GET variables - "from" and "to"
Explict period usage:
?module=graph&dir=R&ip=0.0.0.0&period=explict&from=1115779033&to=1715782633
Full example with custom dimensions:
?module=graph&dir=R&period=week&ip=172.16.68.173&w=1300&h=400
IP 0.0.0.0 returns summary bandwidth chart for all tracked hosts.
This API call returns JSON array of all traffic summary collected by some period for all or specified IP address.
Optional endpoint parameters:
Minimal example:
?module=gettraff
Returns something like
{
"172.16.1.175":{
"dl":"66912063800",
"ul":"2691439300"
},
"172.16.25.75":{
"dl":"145398529200",
"ul":"10223157100"
},
"172.16.60.149":{
"dl":"49337740100",
"ul":"7548407400"
},
....
with data for current month "dl" - bytes downloaded, ul - bytes uploaded.
Full example:
?module=gettraff&year=2023&month=12&ip=172.16.1.33
Returns:
{
"172.16.1.33":{
"dl":"190673220400",
"ul":"9911547100"
}
}
as just data for specified IP 172.16.1.33 for december 2023.
While the API endpoints is currently accessible without any authorization, you may want to limit the list of hosts IPs that can receive data from them. This is done using the ENDPOINTS_HOSTS option in the of/config/alter.ini configuration file. Something like:
ENDPOINTS_HOSTS="192.168.0.8,192.168.42.56"
Also you may want to change NetFlow collector port or sampling rate, you also can do this in the same alter.ini config file using following options:
;NetFlow collector default options
COLLECTOR_PORT=42112
SAMPLING_RATE=100
dont forget regenerate configuration and restart collector after this