Sqlite is not as hard as it sounds…

First, copy the file to a more powerful environment with sqlite client.
ssh root@192.168.8.1 "cat /etc/oui-tertf/client.db" > "client.db"

Than open the dB with sqlite3 client.db.
I’ll fast forward here: Look for available tables .tables, analyze layout .schema client.
Now let’s see the content:
select * from client;

From the schema we know the content:
mac | IP | tx | rx | seen | iface | type | name
The first two and the last one are important here.

I don’t know if the database is just the data source or just a receiver for the needed goal. But if you’d like do export/import data while running, I can also take a look at home.

1 Like