There's an old saying: "Never eat anything bigger than your head." You just walked up to the counter and ordered a deep-fried Volkswagon.
Don't get me wrong, more power to ya if you are interested. You'll certainly learn a bit about Perl!
I would suggest picking just one piece of those requirements and start from there. Keep it modular and you can always grow. Best of luck.
| [reply] |
Thanks for the great advice, and I am finding a lot of resources on the web. I am actually looking forward to a project of this magnitude. I am never one to do things halfway. ;-)
Tyler
| [reply] |
The paragraph below is how I implemented a system that allowed users to signup via the internet. After reading your input again, I realized that you may not be wanting that functionality.
I wrote a portion of code at one time that added users to a BSD box. Perl was only the Web Interface. I have since learned that my implementation was probably very risky. I had the Perl script add names and passwords to a file that got evaluated every 5 minutes by a cron job. The cron script then called the existing Unix shell scripts to add the user to radius and the system. My main concern was that someone would somehow fake out the system to add a root user. I tried to break the system and couldn't but then again I am no hacker. I'm sure my implementation, at that early a stage of my Perl programming expierence, had vulnerabilities. The code is long gone, we have replaced it with a commercially developed software set called ISPPower, now called Inovaware, it is extremely powerful, but comes with a huge learning curve, big price tag, and difficult documentation. I believe they have a Unix version.
I think the Volkswagon analogy is good, you have a long row to ho. You will save your self lots of time by calling existing Unix scripts if it is safe to do so.
Yoda | [reply] |
Maybe look into some existing software. There are lot's of these utilities out there!!!
But don't expect to write this application in a short time :)
-- My opinions may have changed,
but not the fact that I am right
| [reply] |