Questions tagged [radius]

RADIUS is Remote Authentication Dial In User Service, a protocol that carries authentication, authorization and accounting data.

RADIUS is Remote Authentication Dial In User Service, a protocol that allows for authentication, authorization and accounting for its clients. The protocol often uses UDP as a transport to connect a variety of clients to servers. RADIUS was initially developed in 1991.

452 questions
3
votes
0 answers

EAP-TTLS and CA certificates on Android when connecting to WPA2 Enterprise WiFi

I am setting up a WPA2 Enterprise-secured Wifi for my company. I set up a RADIUS server (FreeRadius) which talks to our Azure AD for authenticating our users. Because of the nature of the connection (RADIUS<-> AzureAD), EAP-TTLS is the only protocol…
Machi
  • 43
  • 1
  • 7
3
votes
1 answer

Flutter: Custom Bottom Navigation Bar Cut Radius

I want to cut the parts with radius from custom bottom navigation bar just like in design : But the code works like this : This is my code : // home_page.dart // bottomNavigationBar: CustomBottomNavigationBar(), // custom_bnb.dart // …
Muhammet Ömer
  • 145
  • 1
  • 11
3
votes
2 answers

HTML and CSS: rounded corners on tables

I have a bit of a problem. I would like all corners of my table to be rounded, however the dark rows seem to still have a pointy border. Thanks for your help! .table_background { display: flex; background-color: white; margin-left:…
CoderCat
  • 101
  • 1
  • 2
  • 9
3
votes
1 answer

Add a VSA (Vendor Specific Attribute) to Access-Accept reply programmatically in FreeRADIUS C module

I have a FreeRADIUS C language module that implements MOD_AUTHENTICATE and MOD_AUTHORIZE methods for custom auth purpose. I need the ability to programmatically add VSAs to the Access-Accept reply. I have toyed a bit with radius_pair_create() and…
my3ika
  • 65
  • 6
3
votes
1 answer

Generate circle points from latitude and longitude from center point and radius

I have (lat, lon) for the center of a circle. I have a radius R in km. My code for (var i = 0; i < steps; i++) { let degrees = (i/steps)*360 let radians = (Math.PI/180)*degrees let x = lat + radius * Math.cos(radians) let y = lon +…
3
votes
0 answers

OpenVPN + Radius authentication how to disconnect users

I'm trying to bring up an OpenVPN service that authenticates users via Radius. The Radius server is made by me so I can play with the code and understand the internals better. Upon a successful login I receive accounting data from the OpenVPN…
Romeo Mihalcea
  • 9,714
  • 12
  • 50
  • 102
3
votes
2 answers

Definition of RADIUS Vendor-Ids

Is there a central authority for the definition of Radius Vendor-Id's for Vendor Specific Attributes? How are Vendor ID's allocated? and who defines and distributes the dictionary files?
user2881914
  • 407
  • 1
  • 4
  • 9
3
votes
3 answers

Radius server on Google App Engine?

Is it possible to use Google App Engine as a Radius server?
Sel
  • 31
  • 2
3
votes
1 answer

Simple Radius server on Python

I am new to python and I am trying to use the python library pyrad ( https://github.com/wichert/pyrad ) to implement a very simple Radius server to test one application. The only thing it has to do is to check if the password is equals to 123. I am…
Reckio
  • 51
  • 1
  • 5
3
votes
0 answers

Wired IEEE 802.1x for windows

Does anybody know Windows API function (or other ways) for Windows 7/8/10 for wired(lan, not wifi) adapters which allow to: Enable and configure 802.1x authentication for wired adapter Most important - set credentials(user+password or certificate)…
3
votes
1 answer

PHP Radius: Set Cisco Attribute-Value Pairs (AVPairs)

I have a CISCO and I want to authenticate users with RADIUS using PHP. CISCO has its own vendor and attributes and I have to set them in my PHP scripts. I am using PECL RADIUS API. This is my sample code: $radius =…
Vahid
  • 3,384
  • 2
  • 35
  • 69
3
votes
1 answer

Make compilation exits with "/usr/bin/ld: cannot find -lnl"

I have set up a radius-server on a raspberry-pi. Now I want to test it according to article 6.2.1 in http://networkradius.com/doc/FreeRADIUS-Implementation-Ch6.pdf Unfortunately building the "eapol_test" file as described in the document doesnt work…
vicco
  • 1,049
  • 2
  • 14
  • 33
3
votes
0 answers

Scapy fails to capture RADIUS responses

I am trying to use Scapy to send a simple RADIUS access-request to my RADIUS server, but Scapy fails to catch the response. I have used tcpdump and a Scapy sniff to verify that the access-accept is in fact received by the client. Here is my…
arobinson
  • 136
  • 2
  • 7
3
votes
2 answers

RADIUS AND EAP calculating the Message-Authenticator

I have been reading through RFC 3579 as I am implementing a RADIUS service that supports EAP-MD5 authentication. Unfortunately I am a little unsure how to interpret the RFC, particularly when trying to calculate the Message-Authenticator. I…
John Tear
  • 51
  • 1
  • 4
2
votes
0 answers

Can a Radius Server be configured to accept any username/password combination?

I'm doing research for a class at school involving WiFi security. We are setting up a wireless network which uses WPA2 Enterprise authentication. I was wondering if it is possible to have a Radius server accept any username/password combination. …
user1296476
1
2
3
30 31