Radiator Server Documentation — v10.33.2
first
First statement for returning on first accept or reject
Table of Contents
first
NOTE: The until action should be used instead of pipeline directives. The until action provides a readable and flexible way to control pipeline execution.
Standalone action for the first pipeline directive.
Return on first accept or reject.
Examples handler statement configurations:
# Authenticate with the first method used
first {
pap;
chap;
mschapv2;
}
Migration to until
Use until accept reject {}
until accept reject {
pap;
chap;
mschapv2;
}
Table of Contents