Questions tagged [aaa-security-protocol]

In computer security, AAA commonly stands for authentication, authorization and accounting.

It refers to a security architecture for distributed systems, which enables control over which users are allowed access to which services, and how much of the resources they have used. Two network protocols providing this functionality are particularly popular: the RADIUS protocol, and its newer Diameter counterpart.

Authentication

Authentication refers to the process where an entity's identity is authenticated, typically by providing evidence that it holds a specific digital identity such as an identifier and the corresponding credentials. Examples of types of credentials are passwords, one-time tokens, digital certificates, and phone numbers (calling/called).

Authorization

The authorization function determines whether a particular entity is authorized to perform a given activity, typically inherited from authentication when logging on to an application or service. Authorization may be determined based on a range of restrictions, for example time-of-day restrictions, or physical location restrictions, or restrictions against multiple access by the same entity or user. Typical authorization in everyday computer life is for example granting read access to a specific file for authenticated user. Examples of types of service include, but are not limited to: IP address filtering, address assignment, route assignment, quality of Service/differential services, bandwidth control/traffic management, compulsory tunneling to a specific endpoint, and encryption.

Accounting

Accounting refers to the tracking of network resource consumption by users for the purpose of capacity and trend analysis, cost allocation, billing. In addition, it may record events such as authentication and authorization failures, and include auditing functionality, which permits verifying the correctness of procedures carried out based on accounting data. Real-time accounting refers to accounting information that is delivered concurrently with the consumption of the resources. Batch accounting refers to accounting information that is saved until it is delivered at a later time. Typical information that is gathered in accounting is the identity of the user or other entity, the nature of the service delivered, when the service began, and when it ended, and if there is a status to report.

23 questions
8
votes
3 answers

Google Managed Services (BigQuery,Cloud Storage etc) via a VPC/VPN

We are planning to use Big Query and Cloud Storage but have questions regarding access via VPN/VPC. As Big Query, GCS are managed services is it correct to assume that it is not possible to restrict access to project level buckets and data sets to…
3
votes
2 answers

Issue to use TLS 1.2 in .NET Framework 4.0

I got TLS 1.0 disabled. So we are trying to use TLS 1.2 in our .Net application which is using .Net Framework 4.0. I have added the code for this at the start System.Net.ServicePointManager.SecurityProtocol = (SecurityProtocolType)3072; It works…
3
votes
1 answer

What is the most elegant and efficient way to provide AAA to web services using a WS gateway and LDAP?

I'm looking for the best way to provide authorization, authentication, and auditing to web services. I'll be using a web service gateway appliance deployed to the DMZ, and there will be an LDAP instance as a user store behind the firewall. How…
2
votes
0 answers

HID actividentity keychain token locked

I have a hardware actividentity keychain token. The pin was entered wrong many times continuously and the token is locked. When it is switched on it just displays the serial number for few seconds and goes off. How to unlock this token now. The…
2
votes
1 answer

Disable SSL Verification to Post Data in IronPython

We recently migrated into a new development platform. We are still setting up some parts for our whole workflow to work without issues. We have this one problem where we need to promote a project into Production but we keep getting an error in the…
2
votes
2 answers

Open ID Connect with JWT Bearer Token Grant Type

I am working on a use case where I am trying to achieve the following: Use the OpenID Connect protocol. Spec is here: (http://openid.net/specs/openid-connect-core-1_0.html) Issue a call to the /oauth2/access_token endpoint with: a. For resource…
1
vote
0 answers

Is there a convention or rule used to name AAA interface in 3GPP?

Appologize if this has been answered. I'm looking for what Gx, Gy, Cx interface stands for or What does single character mean. Is there a convention or rule used to name AAA interface in 3GPP? It looks like IANA is assigning Application IDs. And…
1
vote
0 answers

Access rejected by local host in freeradius

I am no able to execute the radtest command and i cant figure out what the issue it i keep getting the error : rad_recv: Access-Reject packet from host 127.0.0.1 port 1812, id=82, length=20 here is the execution: rad_recv: Access-Reject packet…
cantor
  • 21
  • 3
1
vote
0 answers

Issue with http request

I have an issue when I'm using webservice and when I try to access to some method I got this error: An exception of type 'System.ServiceModel.CommunicationException' occurred in mscorlib.dll but was not handled in user code Additional information:…
1
vote
1 answer

MAC Authentication failed in freeradius

I follow this Plain MAC-Auth setup guide to configure the freeradius (version 2.2.5), in order to carry out MAC Authentication. However, MAC authentication is failed with the following log message rad_recv: Access-Request packet from host…
1
vote
0 answers

Radiusd server not serving the request

I have set up a radiud server on centos 6.8 and I have a switch that I want to call this radius server for authentication. The switch ip address is 10.2.1.4 which is there in the clients config file. Here is the part of my client conf file client…
H4X
  • 177
  • 1
  • 3
  • 8
1
vote
2 answers

AAA authentication error in DataPower

I have create AAA policy and validating SAML attribute in AAA authentication. I am getting error as 'AAA Authentication Failure' I am not getting detailed error message why I am getting the AAA error. Any help?
user3734575
0
votes
0 answers

Authorizing commands via tacacs+ server executed in shell by ssh

I've setup a tacacs+ server and a PAM tacacs client from here- https://github.com/kravietz/pam_tacplus/tree/main. When user ssh into the tacacs client machine, I want authentication from tacacs+ server and allow execution of only those commands in…
0
votes
0 answers

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 installation and configuration of all the necessary…
0
votes
1 answer

The request was aborted: Could not create SSL/TLS secure channel - without certificate

I'm facing an issue once I want to call HttpWebRequest and error says: The request was aborted: Could not create SSL/TLS secure channel First of all I'm working with company have high security standards, firewalls are applied. I have three…
1
2