Radiator Server Documentation — v10.34.0

none

None statement for returning reject on first accept

Table of Contents
  • none
  • Migration to until

none

Standalone action for the none pipeline directive.

Deprecated: Use until instead. Result propagation makes none difficult to reason about, especially when actions preserve an inherited result.

Migration to until

The none directive returns accept when no action accepts. Reject and ignore results do not match. Use when clauses to replicate this behavior:

until accept {
  backend "EMPLOYEE_DB";
  backend "CONTRACTOR_DB";
  backend "VPN_USERS";
} when accept {
  reject "User found in a known database";
} else {
  # User not found in any database, allow guest access only
  accept;
}
Table of Contents
Navigation
  • accept

  • append

  • assert

  • backend

  • cache

  • challenge

  • chap

  • conditions

  • copy

  • count

  • debug

  • discard

  • EAP

  • error

  • filter

  • hotp

  • http-basic-auth

  • if

  • ignore

  • invoke

  • log

  • map

  • message

  • modify

  • mschap

  • mschapv2

  • must

  • pap

  • reason

  • reject

  • reject_errors

  • replace

  • reply

  • rewrite

  • set

  • sleep

  • sometimes

  • stop

  • totp

  • trace

  • try

  • until

  • yubikey