/etc/freeradius/3.0/policy.d/debug is in freeradius-config 3.0.16+dfsg-1ubuntu3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | #
# Outputs the contents of the control list in debugging (-X) mode
#
debug_control {
if("%{debug_attr:control:}" == '') {
noop
}
}
#
# Outputs the contents of the request list in debugging (-X) mode
#
debug_request {
if("%{debug_attr:request:}" == '') {
noop
}
}
#
# Outputs the contents of the coa list in debugging (-X) mode
#
debug_coa {
if("%{debug_attr:coa:}" == '') {
noop
}
}
#
# Outputs the contents of the reply list in debugging (-X) mode
#
debug_reply {
if("%{debug_attr:reply:}" == '') {
noop
}
}
#
# Outputs the contents of the session state list in debugging (-X) mode
#
debug_session_state {
if("%{debug_attr:session-state:}" == '') {
noop
}
}
#
# Outputs the contents of the proxy-request state list in debugging (-X) mode
#
debug_proxy_request {
if("%{debug_attr:proxy-request:}" == '') {
noop
}
}
#
# Outputs the contents of the main lists in debugging (-X) mode
#
debug_all {
debug_control
debug_request
debug_coa
debug_reply
debug_session_state
}
|