Dear Savers ... I have some tricky issues ??? first what is different between detail & detal.doucple in accounting module ? and if I don't want to log into OS files I can comment the detail line in default configuration file . second ... I have the freeradius configured to work with TLC at port 2083 I need to operate the radius at both 2083 and 1812 & 1813 with UDP How I can achieve this on latest version of freeradius . clients radsec { client radsec { ipaddr = 0.0.0.0/0 secret = radsec proto = tls } } server default { listen { type = auth ipaddr = * proto = udp limit { max_pps = 0 } } listen { type = auth ipv6addr = :: proto = udp limit { max_pps = 0 } } listen { type = auth ipaddr = * proto = tcp limit { max_connections = 0 lifetime = 0 idle_timeout = 30 } } listen { type = auth ipv6addr = :: proto = tcp limit { max_connections = 0 lifetime = 0 idle_timeout = 30 } } listen { type = acct ipaddr = * proto = udp limit { max_pps = 0 } } listen { type = acct ipv6addr = :: proto = udp limit { max_pps = 0 } } listen { type = acct ipaddr = * proto = tcp limit { max_connections = 0 lifetime = 0 idle_timeout = 30 } } listen { type = acct ipv6addr = :: proto = tcp limit { max_connections = 0 lifetime = 0 idle_timeout = 30 } } listen { type = auth+acct ipaddr = * port = 2083 proto = tcp limit { max_connections = 0 lifetime = 0 idle_timeout = 30 } tls { private_key_file = ${certdir}/server.pem certificate_file = ${certdir}/server.pem ca_file = ${cadir}/ca.pem dh_file = ${certdir}/dh fragment_size = 8192 cipher_list = "DEFAULT" cipher_server_preference = yes tls_min_version = "1.2" cache { enable = yes lifetime = 24 # hours } require_client_cert = yes } clients = radsec } listen { type = auth+acct ipv6addr = :: port = 2083 proto = tcp limit { max_connections = 0 lifetime = 0 idle_timeout = 30 } tls { private_key_file = ${certdir}/server.pem certificate_file = ${certdir}/server.pem ca_file = ${cadir}/ca.pem dh_file = ${certdir}/dh fragment_size = 8192 cipher_list = "DEFAULT" cipher_server_preference = yes tls_min_version = "1.2" cache { enable = yes lifetime = 24 # hours } require_client_cert = yes } clients = radsec }
On Mar 7, 2022, at 2:27 PM, mohamed almeshal <mohammed.almeshal@hotmail.com> wrote:
first what is different between detail & detal.doucple in accounting module ?
I don't know what "detail.doucple" is. Maybe you mean the "sites-available/decoupled-accounting" file? If so, there's lots of comments in the files describing what they do.
and if I don't want to log into OS files I can comment the detail line in default configuration file .
The server puts logs into a FreeRADIUS-specific directory. I don't know what you mean by "OS files". Please be specific.
second ... I have the freeradius configured to work with TLC at port 2083 I need to operate the radius at both 2083 and 1812 & 1813 with UDP How I can achieve this on latest version of freeradius .
Put three "listen" sections into a virtual server. Configure each of them. Alan DeKok.
participants (2)
-
Alan DeKok -
mohamed almeshal