Organization Authentication RADIUS Servers Configuration
Dashboard Location: Organization > Configure > Authentication RADIUS Servers
Organization-Wide RADIUS Server Management
Section titled “Organization-Wide RADIUS Server Management”Organization authentication RADIUS servers configuration in Meraki provides administrators with centralized RADIUS server management capabilities, enabling organization-wide authentication server definitions that can be referenced across multiple networks and access policies. This functionality supports centralized authentication infrastructure, consistent RADIUS server configuration, simplified server management, and scalable 802.1X deployment while providing a single point of administration for RADIUS server settings. Authentication RADIUS servers are essential for enterprise authentication strategies, network access control, switch port security, wireless authentication, and maintaining consistent authentication infrastructure across the organization while supporting secure network access management.
Diagram
Section titled “Diagram”Classes
Section titled “Classes”organizations (meraki.domains)
Section titled “organizations (meraki.domains)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| authentication_radius_servers | List | [authentication_radius_servers] | No |
authentication_radius_servers (meraki.domains.organizations)
Section titled “authentication_radius_servers (meraki.domains.organizations)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| name | String | min: 1, max: 127 | Yes | |
| address | String | min: 1, max: 255 | Yes | |
| secret | String | min: 1, max: 255 | Yes | |
| modes | List | [modes] | Yes |
modes (meraki.domains.organizations.authentication_radius_servers)
Section titled “modes (meraki.domains.organizations.authentication_radius_servers)”| Name | Type | Constraint | Mandatory | Default Value |
|---|---|---|---|---|
| mode | Choice | accounting, auth | Yes | |
| port | Integer | min: 1, max: 65535 | Yes |
Examples
Section titled “Examples”Example-1: The example below demonstrates organization-wide RADIUS server configuration.
This configuration creates organization-wide RADIUS servers that can be used across multiple networks for authentication and accounting purposes. The example includes primary and backup RADIUS servers with different modes configured for authentication and accounting services.
The organization has two RADIUS servers defined: “Main RADIUS server” at IP address 10.64.0.238 configured for both authentication (port 1812) and accounting (port 1813), and “Secondary RADIUS server” at hostname radius-server.example.com configured only for authentication (port 1812). Each server requires a shared secret for secure communication. These servers are defined at the organization level and can be managed centrally for use across the organization’s networks.
meraki: domains: - name: !env domain administrator: name: !env org_admin organizations: - name: !env org authentication_radius_servers: - name: "RADIUS server 1" address: "10.64.0.240" secret: "my-shared-secret" modes: - mode: "auth" port: 1812 - mode: "accounting" port: 1813 - name: "RADIUS server 2" address: "radius-server2.example.com" secret: "backup-secret" modes: - mode: "auth" port: 1812