summaryrefslogtreecommitdiffstats
path: root/usr.sbin/radiusctl/parser.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* add retries and timeouts for test packets.dlg2020-02-241-4/+94
| | | | | | | | | | | | | | | | | | the most important bit of this is that the command will exit after a timeout period. this is currently handy if you're running radiusctl as a check from relayd, because at the moment it to get confused about who it's children are if you run a lot of checks too rapidly. before timeouts were added, radiusctl would wait forever for a reply, but a reply may never arrive because networks are unreliable, and worse, computers are unreliable and may be down for extended periods of time. the number of retries, the interval between retries, and the overall wait time can be tweaked via command line arguments. the defaults are set to something that seems reasonable if you're running a test. ok yasuoka@
* Add radiusd(8) and radiusctl(8). They are WIP. radiusd(8) is a RADIUSyasuoka2015-07-211-0/+300
server and radiusctl(8) is to control the server. radiusd(8) currently supports bsdauth and radius (upstream radius servers) as authentication backends. fixes from jsg blambert ok deraadt