server status {
        listen {
                #  ONLY Status-Server is allowed to this port.
                #  ALL other packets are ignored.
                type = status

                ipaddr = {{ radius_status_host }}
                port = {{ radius_status_port }}
        }

        client admin {
                ipaddr = {{ radius_client_host }}
                secret = {{ radius_secret }}
        }

        #  Simple authorize section.  The "Autz-Type Status-Server"
        #  section will work here, too.  See "raddb/sites-available/default".
        authorize {
                ok

                # respond to the Status-Server request.
                Autz-Type Status-Server {
                        ok
                }
        }
}