KiwiSDR Access Reports
Is that a simple console command that would report all the accesses made over the last 24 hours by IP address and how many times each IP accessed, frequency viewed (if fixed) and duration or, a downloadable report for import into Excel
Comments
this may help you
I have been using a small python script for one year. It analyzes log and writes all connections to a special file. A small adaptation is needed for KiwiSDR.
Here's a start
mu | awk '{$4 = $5 = $6 = $7 = $8 = $10 = $11 = $12 = ""; print $0;}'
Thanks all, mu works for me