i need tips and ideas on how to do this
basically, i have a freeradius server running with mysql, I have a list of users/passwords to authenticate against to. Now, i want to make desktop applications that can enable resellers to create user accounts.
Resellers are people who can create user accounts so that they can connect and access my services
my first plan was this
freeradius / mysql <-> c# server gui (private, im the only one who can control it) <-> c# client gui (to be distributed to resellers)
so when a reseller wants to add a user, the request will be process by the server gui. i want it that way because somebody might tamper and crack the client gui so if the mysql codes are there like root user/pass. its horrible. so i decided to put up a middle man(server gui) that actually access the actual database.
any idea how to improve it? or revise it?
also, how can i make mysql/freeradius to work with reseller system. will it be messy? also i want like control the user expiration date in mysql, and automated. Every reseller can create accounts, and they cant see each other. (only i can see the whole list of accounts coz im the admin)
thanks