463 questions
-1
votes
0
answers
30
views
Allowing Radius Access To Correct Usernames Wrong Passwords [closed]
I am trying to allow correct usernames and wrong passwords access to mikrotik, they will be then assigned an ip from the expired-pool and then they will be redirected to a page that i have already set ...
-1
votes
0
answers
24
views
FreeRADIUS RadSec TCP connections plateau around ~500 per instance [closed]
We are benchmarking RadSec (TCP/TLS) connections against a single FreeRADIUS instance and observing a consistent connection ceiling.
FreeRADIUS (version 3.2.8)
Running in Kubernetes (single pod)
~...
Advice
0
votes
2
replies
44
views
Dynamic vlan changing in Freeradius
I have to configure dynamic vlan changing in Freeradius. I have mikrotik routeros v7 that running as NAS. I created three VLANs, in each vlan has own users. When i send request from freeradius to the ...
Advice
3
votes
1
replies
114
views
AIoT device: Radius Authentication using PHP with Message-Authenticator attribute
We have some AIoT devices and want to authenticate with RADIUS using PHP.
The new RADIUS Server ask for the Message-Authenticator attribute and the build-in RADIUS functions of PHP can not do it.
<?...
Tooling
0
votes
1
replies
44
views
Pure PHP Radius Client
New RADIUS Server need Message-Authenticator attribute.
How the Pure PHP RADIUS Client performs this calculation and places the HMAC into the Message-Authenticator attribute?
rad_recv: Access-Request ...
0
votes
1
answer
96
views
What is the farthest geopoint from the centroid of a bucket
In my Elastic index my-index I have documents with geopoints.
The ideia is to group locations hourly and get a geo centroid for each hour with a radius so I can plot on Leaflet (or similar map api) ...
1
vote
0
answers
87
views
How to perform SIM card geolocation using RADIUS data for 2G, 3G, and 4G?
I am trying to perform geolocation of a SIM card using cell tower data provided by the RADIUS protocol. My goal is to correctly identify the cell's (or SIM card's) location for 2G, 3G, and 4G ...
0
votes
0
answers
451
views
Getting Dropping packet without response because of error: Received packet from (ip) with invalid Message-Authenticator!(Shared secret is incorrect.)
when sending Radius request with Message-Authenticator attribute in it, Dropping packet without response because of error: Received packet from 172.21.248.41 with invalid Message-Authenticator! (...
1
vote
1
answer
4k
views
require_message_authenticator in FreeRadius not behaving as it should
I'm recently testing freeradius 3.0.27 (release which has fix for blastradius vulnerability).
From Documentation - github
# Global configuration for requiring Message-Authenticator in
# all Access-* ...
1
vote
0
answers
640
views
Is there a way to increase the timeout value for WiFi authentication in windows machines?
For context, I've setup a Windows (Win server 2022) NPS server with the Azure MFA extension to enable authentication via RADIUS, using Microsoft credentials, on a wireless network. The RADIUS client ...
0
votes
0
answers
348
views
TinyRadius Message-Authenticator Attribute Generation
Need some help. Have Java Springboot API and ma using TinyRadius to authenticate against Radius Server. Below works fine without passing Message-Authenticator
AccessRequest ar = new AccessRequest(...
0
votes
2
answers
125
views
Calculate the number of points in a given radius by X and Y coordinates
I have a python code where, when given a list of points (X and Y coordinate pairs) in a dataframe and a specified circle radius I would like the code to go through each point, treat it as the the ...
-1
votes
1
answer
149
views
How to calculate a Radius Authenticator in access accept message?
Getting access accept message from radius server but our client is considering the message as a authentication failure, what may be the cause, suspecting issue with Authenticator value which receiving ...
0
votes
1
answer
92
views
Skew One Corner And Add Border Radius To Opposite Corner with gradient
How can I make this design in CSS?
enter image description here
I've tried everything, but the gradient of the pseudo element overlaps the main text.
span {
border: 2px solid #FFC402;
border-...
0
votes
1
answer
306
views
Set the HMAC-256 algorithm for calculating message-authenticator
Per radius document:
When present in an Access-Request packet, Message-Authenticator is an HMAC-MD5 checksum of the entire Access-Request packet, including Type, ID, Length and authenticator, using ...
1
vote
1
answer
295
views
In freeradius, how to retrieve variable declared perl module to sites-available/default?
I have a perlmodule.pm with authorize, post_auth blocks. Took the code from Freeradius example.pl
perlmodule.pm
#
# This program is free software; you can redistribute it and/or modify
# it under ...
0
votes
1
answer
105
views
Freeradius SQL query for disconnected in specific date
Is there some way to run a SQL query in the freeradius database to find disconnected users in some specific data range?
I'm trying something like this:
SELECT ra.username
FROM radacct ra
WHERE ra....
0
votes
2
answers
709
views
Openssl v3.0.8 + eapol_test (wpa_supplicant2.10) cannot authenticate to 802.1x network
eapol_test (wpa_supplicant v2.10) with OpenSSL v3.0.8
Issue description:
I used supplicant2.10+openssl3.0.8 to test connecting to an 802.1x network, I got the following results.
PEAP+MSCHAPV2:Failed
...
1
vote
1
answer
2k
views
How to apply radial-gradiant property in Tailwind css
How will I incorporate a radial gradient in my website by using Tailwind CSS? And how will I get curvature border i.e. a wave like border.
I tried it by writing bg-radial-gradient but there in no such ...
0
votes
1
answer
374
views
How to send multiple parallel request at a time using radclient
I have tried using below command, where -p <num_requests_in_parallel>, is supposed to send 5 requests at a time but it is not happening; could anyone please let me know what is missing here?
...
0
votes
1
answer
193
views
Rocky 8 - Apache2 Radius authentication?
I've Rocky 8 (RHEL based Linux) server with already working Radius-authentication for SSH.
It's an external Radius-server (Cisco ISE).
Now I'd like to use this Radius-server also for authentication ...
-1
votes
1
answer
565
views
Border Radius with slash is not working in React-pdf
I know that we can set border-radius: 4px/2px in CSS for semi rounded circles.
but it is not working in react pdf.
i tried these.
<View style={{borderRadius:"4px/2px", backgroundColor:&...
0
votes
1
answer
134
views
CAS 6.6 - RADIUS MFA Integration
I am trying to integrate CAS 6.6 via RADIUS for 1st factor and 2-factor authentications.
I am getting the below message even after entering the correct OTP and displays the following message in UI OTP ...
1
vote
1
answer
160
views
How to get circumcircle midpoint and radius in Lua?
I've tried to make a function in Lua to get the circumcircle, circumcenter and radius, but something goes wrong:
local function getCircumcircle (x1, y1, x2, y2, x3, y3)
local d = 2*(x1*(y2-y3)+x2*(...
1
vote
1
answer
114
views
How to edit the first node radius of a D3.js RadialTree?
Hello (my english isn't that good, so the rest is translate with GoogleTrad, i'm french =D)
For a project, I am creating a radialtree with html, js code and the D3js library.
I try to reproduce the ...
2
votes
0
answers
673
views
FreeRADIUS Certificate chain untrusted
I've got installed freeradius on different vm's debian/ubuntu/rocky and on all of them i get these types of warnings in debug output:
Certificate chain - 1 cert(s) untrusted
(TLS) untrusted ...
0
votes
1
answer
169
views
Unity OverlapCircle radius detecting wrong
I have set a radius for my OverlapCircle at .2f
It doesn't need to be huge as it is simply detecting if a grid on my tilemap is a wall. OverlapCircle seems to not find any wall layers at a radius ...
-1
votes
1
answer
1k
views
Error restarting FreeRADIUS service / "${dialect}" not found
everyone.
I'm trying to configure Radius on Debian 12 to control access to some Extreme Networks switches. I'm new to the operating system and Radius.
First, I created the database as follows.
CREATE ...
0
votes
1
answer
282
views
How to increase the Octets capacity in FreeRADIUS
I am trying to increase the limits of "Acct-Input-Octets" and "Acct-Output-Octets" in freeRADIUS beyond 4,294,967,295, but I cannot. One of the reasons I come across is that in ...
0
votes
1
answer
679
views
TypeError: cannot convert the series to <class 'float'> when applying a defined function - pandas
I have created the following pandas dataframe:
import pandas as pd
import numpy as np
from math import sin, cos, sqrt, atan2, radians
ds1 = {'Longitude':[-46.6736,-46.50926,-46.75166,-46.54743], "...
0
votes
1
answer
722
views
Radius server configured and local radtest returned success, but radtest from another server is not working [closed]
I am working on VPN project and wants to add a Radius server to manage the user authentication.
I configured the Radius server and was able to radtest it successfully on the local machine
Here is the ...
0
votes
0
answers
231
views
WPF Crop image inside a border
How can i hide the part of the picture that is out of border?
Here is my xaml code
<Border ClipToBounds="True" CornerRadius="80" Width="350" Background="Black&...
0
votes
1
answer
304
views
Cannot establish successful connection to RADIUS protocol despite correct configuration
so im working on my final year project: Study and Implementation of the RADIUS Protocol.
First of all, let me give you an overview of our current configuration. We have successfully completed the ...
1
vote
0
answers
126
views
Decrypted radius access-request packet has appended characters to password
I am configuring radius for various pieces of equipment on my network. A certain subset of equipment is getting access-reject packets even though I have everything set up correctly from what I can ...
0
votes
2
answers
1k
views
How to check if a ray intersects with a circle in 2D geometry?
I have a circle with center (X,Y) and Radius R
Also have a ray starting from center of the circle to end point (Xr,Yr)(Otherwise 100 units form center of the circle)
I have another circle situated ...
0
votes
0
answers
202
views
FreeRadius - CERTIFICATE client
I have a client that manages its network and internet link. Today we do security through MAC ADDRESS blocking which generates a lot of wear and tear. The company's machines have their own certificate ...
0
votes
1
answer
990
views
Cannot get specific vendor attribute using radius EAP-ttls
I am new to radius and EAP. I fail to retrieve vendor specific attributes from a freeradius server using radius and EAP-TTLS (when performing PAP, user's attributes are well returned by the server).
I ...
0
votes
1
answer
309
views
Why is FreeRadius' dictionary.rfc2865 txt value for Service-Type 6 (Administrative-User) different frm published rfc2865 txt value "Administrative"?
As in the subject/question above, I'm seeing a different value between FreeRadius' dictionary.rfc2865 and the actual published rfc2865. In the published RFC 2865, the text for the Service-Type value ...
1
vote
0
answers
129
views
freeradius apache2/php authorization - ubuntu 5.15
my situation:
I have two severs, a apache2 webserver and a freeradius-server. The webserver does authenticates himself against the radius. For this, I use the libapache2-mod-auth-radius packet.
Now ...
0
votes
2
answers
91
views
how to maintain data driven styling defined heatmap radius size with zoom level in Mapbox gl js
Mapbox gl js error message says: "expressions are not allowed in function stops".
I am trying make heatmap radius, whose size is defined by data driven styling. At the same time, the size ...
1
vote
1
answer
4k
views
EAP-TLS with Android 11 and Freeradius 3 Failing
I've been dealing with this issue for around a month now and wanted to see if anyone has any ideas about this. I am trying to enable EAP-TLS authentication on our Android 11 devices using a Freeradius ...
0
votes
3
answers
553
views
Curve fitting of the laser beam radius W(z) versus propagation distance z
I am taking 5 measurements of the laser beam radius at various distances between 1-200 cm. Without knowing where the beam waist Wo is, I am trying to use the curve_fit() function to find the opt value ...
-1
votes
1
answer
948
views
I am a novice in free radius, how can I get the user's password?
I want to do Wi-Fi authentication through radius. The password is encrypted and stored. I wrote a password-encrypted script, but the verification still fails. I checked and found that the password was ...
1
vote
0
answers
360
views
How to use radius client
Is there an efficient way or a library that does RADIUS CoA (Change of Authorization) using Go?
Note, here I am a client, not a server, is a feature that allows a RADIUS server to set up an active ...
3
votes
1
answer
251
views
x509 Client Certificate without signing capability
i'm currently experimenting with X509 Certificates.
As i tested, i just signed a Apple Configuration (.mobileconfig) with the same cert.
Which shows as perfectly valid (when Root CA is installed of ...
0
votes
1
answer
216
views
How to install Radius MFA on FIPS enabled Amazon Linux server
I am trying to install Radius MFA on my FIPS compliant Linux server but I am getting errors related to MD5
"md5_dgst.c(82): OpenSSL internal error, assertion failed: Digest MD5 forbidden in FIPS ...
0
votes
1
answer
6k
views
How to force TLS 1.3 in FreeRADIUS?
I'm trying to experiment some with TLS 1.3.
I have a CA setup, server & client certs generated & distributed, and I can connect successfully using these certs with openssl s_server & ...
0
votes
1
answer
4k
views
Errors reading or parsing /etc/raddb/radiusd.conf
Dears,
I am new to freeRADIUS, I have installed freeRADIUS v3 in centos7. I am not able to start the radiusd service. I got the error Job for radiusd.service failed because the control process exited ...
0
votes
1
answer
3k
views
Received Access-Reject Id 208 from 127.0.0.1:1812 to 127.0.0.1:33736
I tried to configure freeradius on centos Stream8, after the radius server is running ,I ran the radtest command to test the user, but I am getting "Received Access-Reject Id 208 from 127.0.0.1:...
0
votes
1
answer
153
views
Unsupported attribute 27 in CoA-Request from IP:PORT
I have a freeradius server setup on my ubuntu VM. My Edgecore AP is connected to a MicroTik and Laptop. I have OpenWRT running on the AP and I'm able to connect a client using WPA2 Enterprise ...