freeradius执行会计脚本

时间:2013-04-04 12:51:13

标签: radius freeradius

我正在使用freeradius2,我想从其中一个在Accounting-Request上发送的radius属性中提取数据。

你能告诉会计部分需要什么参数,以便我可以执行脚本并提取半径标题吗?

    accounting {
            acct_unique
            detail

        #update request {
           #execute script here
}

            sql_accounting
            attr_filter.accounting_response
    }

1 个答案:

答案 0 :(得分:1)

update request {
    Tmp-String-0 := `/my/script "%{hex:Attribute}"`
}

然后,您的脚本可以解析传递的十六进制并返回格式正确的属性。