1. Packages
  2. Unifi
  3. API Docs
  4. setting
  5. Radius
Unifi v0.2.0 published on Tuesday, Feb 17, 2026 by Pulumiverse
unifi logo
Unifi v0.2.0 published on Tuesday, Feb 17, 2026 by Pulumiverse

    The unifi.setting.Radius resource manages the built-in RADIUS server configuration in the UniFi controller.

    This resource allows you to configure:

    • Authentication settings for network access control
    • Accounting settings for tracking user sessions
    • Security features like tunneled replies

    The RADIUS server is commonly used for:

    • Enterprise WPA2/WPA3-Enterprise wireless networks
    • 802.1X port-based network access control
    • Centralized user authentication and accounting

    When enabled, the RADIUS server can authenticate clients using the UniFi user database or external authentication sources.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as unifi from "@pulumiverse/unifi";
    
    const example = new unifi.setting.Radius("example", {
        enabled: true,
        secret: "your-secure-secret",
        accountingEnabled: true,
        authPort: 1812,
        accountingPort: 1813,
    });
    
    import pulumi
    import pulumiverse_unifi as unifi
    
    example = unifi.setting.Radius("example",
        enabled=True,
        secret="your-secure-secret",
        accounting_enabled=True,
        auth_port=1812,
        accounting_port=1813)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-unifi/sdk/go/unifi/setting"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := setting.NewRadius(ctx, "example", &setting.RadiusArgs{
    			Enabled:           pulumi.Bool(true),
    			Secret:            pulumi.String("your-secure-secret"),
    			AccountingEnabled: pulumi.Bool(true),
    			AuthPort:          pulumi.Int(1812),
    			AccountingPort:    pulumi.Int(1813),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Unifi = Pulumiverse.Unifi;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Unifi.Setting.Radius("example", new()
        {
            Enabled = true,
            Secret = "your-secure-secret",
            AccountingEnabled = true,
            AuthPort = 1812,
            AccountingPort = 1813,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumiverse.unifi.setting.Radius;
    import com.pulumiverse.unifi.setting.RadiusArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new Radius("example", RadiusArgs.builder()
                .enabled(true)
                .secret("your-secure-secret")
                .accountingEnabled(true)
                .authPort(1812)
                .accountingPort(1813)
                .build());
    
        }
    }
    
    resources:
      example:
        type: unifi:setting:Radius
        properties:
          enabled: true # RADIUS server secret
          secret: your-secure-secret
          accountingEnabled: true # Optional: Configure custom ports
          authPort: 1812
          accountingPort: 1813 # Specify the site (optional, defaults to site configured in provider, otherwise "default")
          #   # site = "default"
    

    Create Radius Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Radius(name: string, args?: RadiusArgs, opts?: CustomResourceOptions);
    @overload
    def Radius(resource_name: str,
               args: Optional[RadiusArgs] = None,
               opts: Optional[ResourceOptions] = None)
    
    @overload
    def Radius(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               accounting_enabled: Optional[bool] = None,
               accounting_port: Optional[int] = None,
               auth_port: Optional[int] = None,
               enabled: Optional[bool] = None,
               interim_update_interval: Optional[int] = None,
               secret: Optional[str] = None,
               site: Optional[str] = None,
               tunneled_reply: Optional[bool] = None)
    func NewRadius(ctx *Context, name string, args *RadiusArgs, opts ...ResourceOption) (*Radius, error)
    public Radius(string name, RadiusArgs? args = null, CustomResourceOptions? opts = null)
    public Radius(String name, RadiusArgs args)
    public Radius(String name, RadiusArgs args, CustomResourceOptions options)
    
    type: unifi:setting:Radius
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args RadiusArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args RadiusArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args RadiusArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RadiusArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RadiusArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var radiusResource = new Unifi.Setting.Radius("radiusResource", new()
    {
        AccountingEnabled = false,
        AccountingPort = 0,
        AuthPort = 0,
        Enabled = false,
        InterimUpdateInterval = 0,
        Secret = "string",
        Site = "string",
        TunneledReply = false,
    });
    
    example, err := setting.NewRadius(ctx, "radiusResource", &setting.RadiusArgs{
    	AccountingEnabled:     pulumi.Bool(false),
    	AccountingPort:        pulumi.Int(0),
    	AuthPort:              pulumi.Int(0),
    	Enabled:               pulumi.Bool(false),
    	InterimUpdateInterval: pulumi.Int(0),
    	Secret:                pulumi.String("string"),
    	Site:                  pulumi.String("string"),
    	TunneledReply:         pulumi.Bool(false),
    })
    
    var radiusResource = new Radius("radiusResource", RadiusArgs.builder()
        .accountingEnabled(false)
        .accountingPort(0)
        .authPort(0)
        .enabled(false)
        .interimUpdateInterval(0)
        .secret("string")
        .site("string")
        .tunneledReply(false)
        .build());
    
    radius_resource = unifi.setting.Radius("radiusResource",
        accounting_enabled=False,
        accounting_port=0,
        auth_port=0,
        enabled=False,
        interim_update_interval=0,
        secret="string",
        site="string",
        tunneled_reply=False)
    
    const radiusResource = new unifi.setting.Radius("radiusResource", {
        accountingEnabled: false,
        accountingPort: 0,
        authPort: 0,
        enabled: false,
        interimUpdateInterval: 0,
        secret: "string",
        site: "string",
        tunneledReply: false,
    });
    
    type: unifi:setting:Radius
    properties:
        accountingEnabled: false
        accountingPort: 0
        authPort: 0
        enabled: false
        interimUpdateInterval: 0
        secret: string
        site: string
        tunneledReply: false
    

    Radius Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The Radius resource accepts the following input properties:

    AccountingEnabled bool
    Enable RADIUS accounting to track user sessions, including connection time, data usage, and other metrics. This information can be useful for billing, capacity planning, and security auditing. Defaults to false.
    AccountingPort int
    The UDP port number for RADIUS accounting communications. The standard port is 1813. Only change this if you need to avoid port conflicts or match specific network requirements. Defaults to 1813.
    AuthPort int
    The UDP port number for RADIUS authentication communications. The standard port is 1812. Only change this if you need to avoid port conflicts or match specific network requirements. Defaults to 1812.
    Enabled bool
    Enable or disable the built-in RADIUS server. When disabled, no RADIUS authentication or accounting services will be provided, affecting any network services that rely on RADIUS (like WPA2-Enterprise networks). Defaults to true.
    InterimUpdateInterval int
    The interval (in seconds) at which the RADIUS server collects and updates statistics from connected clients. Default is 3600 seconds (1 hour). Lower values provide more frequent updates but increase server load. Defaults to 3600.
    Secret string
    The shared secret passphrase used to authenticate RADIUS clients (like wireless access points) with the RADIUS server. This should be a strong, random string known only to the server and its clients. Defaults to ``.
    Site string
    The name of the UniFi site where these RADIUS settings should be applied. If not specified, the default site will be used.
    TunneledReply bool
    Enable encrypted communication between the RADIUS server and clients using RADIUS tunneling. This adds an extra layer of security by protecting RADIUS attributes in transit. Defaults to true.
    AccountingEnabled bool
    Enable RADIUS accounting to track user sessions, including connection time, data usage, and other metrics. This information can be useful for billing, capacity planning, and security auditing. Defaults to false.
    AccountingPort int
    The UDP port number for RADIUS accounting communications. The standard port is 1813. Only change this if you need to avoid port conflicts or match specific network requirements. Defaults to 1813.
    AuthPort int
    The UDP port number for RADIUS authentication communications. The standard port is 1812. Only change this if you need to avoid port conflicts or match specific network requirements. Defaults to 1812.
    Enabled bool
    Enable or disable the built-in RADIUS server. When disabled, no RADIUS authentication or accounting services will be provided, affecting any network services that rely on RADIUS (like WPA2-Enterprise networks). Defaults to true.
    InterimUpdateInterval int
    The interval (in seconds) at which the RADIUS server collects and updates statistics from connected clients. Default is 3600 seconds (1 hour). Lower values provide more frequent updates but increase server load. Defaults to 3600.
    Secret string
    The shared secret passphrase used to authenticate RADIUS clients (like wireless access points) with the RADIUS server. This should be a strong, random string known only to the server and its clients. Defaults to ``.
    Site string
    The name of the UniFi site where these RADIUS settings should be applied. If not specified, the default site will be used.
    TunneledReply bool
    Enable encrypted communication between the RADIUS server and clients using RADIUS tunneling. This adds an extra layer of security by protecting RADIUS attributes in transit. Defaults to true.
    accountingEnabled Boolean
    Enable RADIUS accounting to track user sessions, including connection time, data usage, and other metrics. This information can be useful for billing, capacity planning, and security auditing. Defaults to false.
    accountingPort Integer
    The UDP port number for RADIUS accounting communications. The standard port is 1813. Only change this if you need to avoid port conflicts or match specific network requirements. Defaults to 1813.
    authPort Integer
    The UDP port number for RADIUS authentication communications. The standard port is 1812. Only change this if you need to avoid port conflicts or match specific network requirements. Defaults to 1812.
    enabled Boolean
    Enable or disable the built-in RADIUS server. When disabled, no RADIUS authentication or accounting services will be provided, affecting any network services that rely on RADIUS (like WPA2-Enterprise networks). Defaults to true.
    interimUpdateInterval Integer
    The interval (in seconds) at which the RADIUS server collects and updates statistics from connected clients. Default is 3600 seconds (1 hour). Lower values provide more frequent updates but increase server load. Defaults to 3600.
    secret String
    The shared secret passphrase used to authenticate RADIUS clients (like wireless access points) with the RADIUS server. This should be a strong, random string known only to the server and its clients. Defaults to ``.
    site String
    The name of the UniFi site where these RADIUS settings should be applied. If not specified, the default site will be used.
    tunneledReply Boolean
    Enable encrypted communication between the RADIUS server and clients using RADIUS tunneling. This adds an extra layer of security by protecting RADIUS attributes in transit. Defaults to true.
    accountingEnabled boolean
    Enable RADIUS accounting to track user sessions, including connection time, data usage, and other metrics. This information can be useful for billing, capacity planning, and security auditing. Defaults to false.
    accountingPort number
    The UDP port number for RADIUS accounting communications. The standard port is 1813. Only change this if you need to avoid port conflicts or match specific network requirements. Defaults to 1813.
    authPort number
    The UDP port number for RADIUS authentication communications. The standard port is 1812. Only change this if you need to avoid port conflicts or match specific network requirements. Defaults to 1812.
    enabled boolean
    Enable or disable the built-in RADIUS server. When disabled, no RADIUS authentication or accounting services will be provided, affecting any network services that rely on RADIUS (like WPA2-Enterprise networks). Defaults to true.
    interimUpdateInterval number
    The interval (in seconds) at which the RADIUS server collects and updates statistics from connected clients. Default is 3600 seconds (1 hour). Lower values provide more frequent updates but increase server load. Defaults to 3600.
    secret string
    The shared secret passphrase used to authenticate RADIUS clients (like wireless access points) with the RADIUS server. This should be a strong, random string known only to the server and its clients. Defaults to ``.
    site string
    The name of the UniFi site where these RADIUS settings should be applied. If not specified, the default site will be used.
    tunneledReply boolean
    Enable encrypted communication between the RADIUS server and clients using RADIUS tunneling. This adds an extra layer of security by protecting RADIUS attributes in transit. Defaults to true.
    accounting_enabled bool
    Enable RADIUS accounting to track user sessions, including connection time, data usage, and other metrics. This information can be useful for billing, capacity planning, and security auditing. Defaults to false.
    accounting_port int
    The UDP port number for RADIUS accounting communications. The standard port is 1813. Only change this if you need to avoid port conflicts or match specific network requirements. Defaults to 1813.
    auth_port int
    The UDP port number for RADIUS authentication communications. The standard port is 1812. Only change this if you need to avoid port conflicts or match specific network requirements. Defaults to 1812.
    enabled bool
    Enable or disable the built-in RADIUS server. When disabled, no RADIUS authentication or accounting services will be provided, affecting any network services that rely on RADIUS (like WPA2-Enterprise networks). Defaults to true.
    interim_update_interval int
    The interval (in seconds) at which the RADIUS server collects and updates statistics from connected clients. Default is 3600 seconds (1 hour). Lower values provide more frequent updates but increase server load. Defaults to 3600.
    secret str
    The shared secret passphrase used to authenticate RADIUS clients (like wireless access points) with the RADIUS server. This should be a strong, random string known only to the server and its clients. Defaults to ``.
    site str
    The name of the UniFi site where these RADIUS settings should be applied. If not specified, the default site will be used.
    tunneled_reply bool
    Enable encrypted communication between the RADIUS server and clients using RADIUS tunneling. This adds an extra layer of security by protecting RADIUS attributes in transit. Defaults to true.
    accountingEnabled Boolean
    Enable RADIUS accounting to track user sessions, including connection time, data usage, and other metrics. This information can be useful for billing, capacity planning, and security auditing. Defaults to false.
    accountingPort Number
    The UDP port number for RADIUS accounting communications. The standard port is 1813. Only change this if you need to avoid port conflicts or match specific network requirements. Defaults to 1813.
    authPort Number
    The UDP port number for RADIUS authentication communications. The standard port is 1812. Only change this if you need to avoid port conflicts or match specific network requirements. Defaults to 1812.
    enabled Boolean
    Enable or disable the built-in RADIUS server. When disabled, no RADIUS authentication or accounting services will be provided, affecting any network services that rely on RADIUS (like WPA2-Enterprise networks). Defaults to true.
    interimUpdateInterval Number
    The interval (in seconds) at which the RADIUS server collects and updates statistics from connected clients. Default is 3600 seconds (1 hour). Lower values provide more frequent updates but increase server load. Defaults to 3600.
    secret String
    The shared secret passphrase used to authenticate RADIUS clients (like wireless access points) with the RADIUS server. This should be a strong, random string known only to the server and its clients. Defaults to ``.
    site String
    The name of the UniFi site where these RADIUS settings should be applied. If not specified, the default site will be used.
    tunneledReply Boolean
    Enable encrypted communication between the RADIUS server and clients using RADIUS tunneling. This adds an extra layer of security by protecting RADIUS attributes in transit. Defaults to true.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Radius resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing Radius Resource

    Get an existing Radius resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: RadiusState, opts?: CustomResourceOptions): Radius
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            accounting_enabled: Optional[bool] = None,
            accounting_port: Optional[int] = None,
            auth_port: Optional[int] = None,
            enabled: Optional[bool] = None,
            interim_update_interval: Optional[int] = None,
            secret: Optional[str] = None,
            site: Optional[str] = None,
            tunneled_reply: Optional[bool] = None) -> Radius
    func GetRadius(ctx *Context, name string, id IDInput, state *RadiusState, opts ...ResourceOption) (*Radius, error)
    public static Radius Get(string name, Input<string> id, RadiusState? state, CustomResourceOptions? opts = null)
    public static Radius get(String name, Output<String> id, RadiusState state, CustomResourceOptions options)
    resources:  _:    type: unifi:setting:Radius    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AccountingEnabled bool
    Enable RADIUS accounting to track user sessions, including connection time, data usage, and other metrics. This information can be useful for billing, capacity planning, and security auditing. Defaults to false.
    AccountingPort int
    The UDP port number for RADIUS accounting communications. The standard port is 1813. Only change this if you need to avoid port conflicts or match specific network requirements. Defaults to 1813.
    AuthPort int
    The UDP port number for RADIUS authentication communications. The standard port is 1812. Only change this if you need to avoid port conflicts or match specific network requirements. Defaults to 1812.
    Enabled bool
    Enable or disable the built-in RADIUS server. When disabled, no RADIUS authentication or accounting services will be provided, affecting any network services that rely on RADIUS (like WPA2-Enterprise networks). Defaults to true.
    InterimUpdateInterval int
    The interval (in seconds) at which the RADIUS server collects and updates statistics from connected clients. Default is 3600 seconds (1 hour). Lower values provide more frequent updates but increase server load. Defaults to 3600.
    Secret string
    The shared secret passphrase used to authenticate RADIUS clients (like wireless access points) with the RADIUS server. This should be a strong, random string known only to the server and its clients. Defaults to ``.
    Site string
    The name of the UniFi site where these RADIUS settings should be applied. If not specified, the default site will be used.
    TunneledReply bool
    Enable encrypted communication between the RADIUS server and clients using RADIUS tunneling. This adds an extra layer of security by protecting RADIUS attributes in transit. Defaults to true.
    AccountingEnabled bool
    Enable RADIUS accounting to track user sessions, including connection time, data usage, and other metrics. This information can be useful for billing, capacity planning, and security auditing. Defaults to false.
    AccountingPort int
    The UDP port number for RADIUS accounting communications. The standard port is 1813. Only change this if you need to avoid port conflicts or match specific network requirements. Defaults to 1813.
    AuthPort int
    The UDP port number for RADIUS authentication communications. The standard port is 1812. Only change this if you need to avoid port conflicts or match specific network requirements. Defaults to 1812.
    Enabled bool
    Enable or disable the built-in RADIUS server. When disabled, no RADIUS authentication or accounting services will be provided, affecting any network services that rely on RADIUS (like WPA2-Enterprise networks). Defaults to true.
    InterimUpdateInterval int
    The interval (in seconds) at which the RADIUS server collects and updates statistics from connected clients. Default is 3600 seconds (1 hour). Lower values provide more frequent updates but increase server load. Defaults to 3600.
    Secret string
    The shared secret passphrase used to authenticate RADIUS clients (like wireless access points) with the RADIUS server. This should be a strong, random string known only to the server and its clients. Defaults to ``.
    Site string
    The name of the UniFi site where these RADIUS settings should be applied. If not specified, the default site will be used.
    TunneledReply bool
    Enable encrypted communication between the RADIUS server and clients using RADIUS tunneling. This adds an extra layer of security by protecting RADIUS attributes in transit. Defaults to true.
    accountingEnabled Boolean
    Enable RADIUS accounting to track user sessions, including connection time, data usage, and other metrics. This information can be useful for billing, capacity planning, and security auditing. Defaults to false.
    accountingPort Integer
    The UDP port number for RADIUS accounting communications. The standard port is 1813. Only change this if you need to avoid port conflicts or match specific network requirements. Defaults to 1813.
    authPort Integer
    The UDP port number for RADIUS authentication communications. The standard port is 1812. Only change this if you need to avoid port conflicts or match specific network requirements. Defaults to 1812.
    enabled Boolean
    Enable or disable the built-in RADIUS server. When disabled, no RADIUS authentication or accounting services will be provided, affecting any network services that rely on RADIUS (like WPA2-Enterprise networks). Defaults to true.
    interimUpdateInterval Integer
    The interval (in seconds) at which the RADIUS server collects and updates statistics from connected clients. Default is 3600 seconds (1 hour). Lower values provide more frequent updates but increase server load. Defaults to 3600.
    secret String
    The shared secret passphrase used to authenticate RADIUS clients (like wireless access points) with the RADIUS server. This should be a strong, random string known only to the server and its clients. Defaults to ``.
    site String
    The name of the UniFi site where these RADIUS settings should be applied. If not specified, the default site will be used.
    tunneledReply Boolean
    Enable encrypted communication between the RADIUS server and clients using RADIUS tunneling. This adds an extra layer of security by protecting RADIUS attributes in transit. Defaults to true.
    accountingEnabled boolean
    Enable RADIUS accounting to track user sessions, including connection time, data usage, and other metrics. This information can be useful for billing, capacity planning, and security auditing. Defaults to false.
    accountingPort number
    The UDP port number for RADIUS accounting communications. The standard port is 1813. Only change this if you need to avoid port conflicts or match specific network requirements. Defaults to 1813.
    authPort number
    The UDP port number for RADIUS authentication communications. The standard port is 1812. Only change this if you need to avoid port conflicts or match specific network requirements. Defaults to 1812.
    enabled boolean
    Enable or disable the built-in RADIUS server. When disabled, no RADIUS authentication or accounting services will be provided, affecting any network services that rely on RADIUS (like WPA2-Enterprise networks). Defaults to true.
    interimUpdateInterval number
    The interval (in seconds) at which the RADIUS server collects and updates statistics from connected clients. Default is 3600 seconds (1 hour). Lower values provide more frequent updates but increase server load. Defaults to 3600.
    secret string
    The shared secret passphrase used to authenticate RADIUS clients (like wireless access points) with the RADIUS server. This should be a strong, random string known only to the server and its clients. Defaults to ``.
    site string
    The name of the UniFi site where these RADIUS settings should be applied. If not specified, the default site will be used.
    tunneledReply boolean
    Enable encrypted communication between the RADIUS server and clients using RADIUS tunneling. This adds an extra layer of security by protecting RADIUS attributes in transit. Defaults to true.
    accounting_enabled bool
    Enable RADIUS accounting to track user sessions, including connection time, data usage, and other metrics. This information can be useful for billing, capacity planning, and security auditing. Defaults to false.
    accounting_port int
    The UDP port number for RADIUS accounting communications. The standard port is 1813. Only change this if you need to avoid port conflicts or match specific network requirements. Defaults to 1813.
    auth_port int
    The UDP port number for RADIUS authentication communications. The standard port is 1812. Only change this if you need to avoid port conflicts or match specific network requirements. Defaults to 1812.
    enabled bool
    Enable or disable the built-in RADIUS server. When disabled, no RADIUS authentication or accounting services will be provided, affecting any network services that rely on RADIUS (like WPA2-Enterprise networks). Defaults to true.
    interim_update_interval int
    The interval (in seconds) at which the RADIUS server collects and updates statistics from connected clients. Default is 3600 seconds (1 hour). Lower values provide more frequent updates but increase server load. Defaults to 3600.
    secret str
    The shared secret passphrase used to authenticate RADIUS clients (like wireless access points) with the RADIUS server. This should be a strong, random string known only to the server and its clients. Defaults to ``.
    site str
    The name of the UniFi site where these RADIUS settings should be applied. If not specified, the default site will be used.
    tunneled_reply bool
    Enable encrypted communication between the RADIUS server and clients using RADIUS tunneling. This adds an extra layer of security by protecting RADIUS attributes in transit. Defaults to true.
    accountingEnabled Boolean
    Enable RADIUS accounting to track user sessions, including connection time, data usage, and other metrics. This information can be useful for billing, capacity planning, and security auditing. Defaults to false.
    accountingPort Number
    The UDP port number for RADIUS accounting communications. The standard port is 1813. Only change this if you need to avoid port conflicts or match specific network requirements. Defaults to 1813.
    authPort Number
    The UDP port number for RADIUS authentication communications. The standard port is 1812. Only change this if you need to avoid port conflicts or match specific network requirements. Defaults to 1812.
    enabled Boolean
    Enable or disable the built-in RADIUS server. When disabled, no RADIUS authentication or accounting services will be provided, affecting any network services that rely on RADIUS (like WPA2-Enterprise networks). Defaults to true.
    interimUpdateInterval Number
    The interval (in seconds) at which the RADIUS server collects and updates statistics from connected clients. Default is 3600 seconds (1 hour). Lower values provide more frequent updates but increase server load. Defaults to 3600.
    secret String
    The shared secret passphrase used to authenticate RADIUS clients (like wireless access points) with the RADIUS server. This should be a strong, random string known only to the server and its clients. Defaults to ``.
    site String
    The name of the UniFi site where these RADIUS settings should be applied. If not specified, the default site will be used.
    tunneledReply Boolean
    Enable encrypted communication between the RADIUS server and clients using RADIUS tunneling. This adds an extra layer of security by protecting RADIUS attributes in transit. Defaults to true.

    Package Details

    Repository
    unifi pulumiverse/pulumi-unifi
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the unifi Terraform Provider.
    unifi logo
    Unifi v0.2.0 published on Tuesday, Feb 17, 2026 by Pulumiverse
      Meet Neo: Your AI Platform Teammate