"Michael Baye" <excelsio(a)gmx.com> wrote
Tue, 6 Jun 2017 20:21:34 +0200:
So I would like to pass 2000 and 0 as numbers to
freeradius. How can I accomplish this? It would be great if someone could give some hints
Use '%' and hexadecimal representation, like so: %7D0 and %0 for decimal
2000 and 0, respectively
From radsecproxy.conf.5, the man page:
--8<---------------cut here---------------start------------->8---
CONFIGURATION SYNTAX
...
blocktype name {
# option value
option "value with space"
...
}
Option value characters can also be written in hex. This is done by
writing the character % followed by two hexadecimal digits. If a % is
used without two following hexadecimal digits, the % and the following
characters are used as written. If you want to write a % and not use
this decoding, you may of course write % in hex; i.e., %25.
--8<---------------cut here---------------end--------------->8---
Hope this helps.