Configuring RADIUS NAS-IP

This section describes how to configure the RADIUS NAS-IP.

Multiple RADIUS NAS-IP Configuration

Note

The NAS-Identifier attribute configuration can be defined per instance-id in RADIUS profile configuration. In this case, NAS-Identifier attribute under instance configuration is treated as high priority over the non-instance based NAS-Identifier attribute configuration.

To configure multiple RADIUS NAS-IP addresses at various levels, use the following sample configuration:

config 
   profile radius 
      attribute [ [ instance gr_instance_id ]  [ nas-ip ipv4_address ]  ] 
      accounting attribute [ [ instance gr_instance_id ]  [ nas-ip ipv4_address ]  ] 
      server-group group_name attribute [ [ instance gr_instance_id ]  [ nas-ip ipv4_address ]  ] 
      server-group group_name accounting attribute [ [ instance gr_instance_id ]  [ nas-ip ipv4_address ]  ] 
      end 

NOTES:

  • profile radius : Enter the RADIUS configuration mode.

  • attribute [ [ instance gr_instance_id ] [ nas-ip ipv4_address ] ] : Set the global NAS-IP address value.

    • instance gr_instance_id : Specify the Geographic Redundancy (GR) instance ID. gr_instance_id must be an integer.

    • nas-ip ipv4_address : Specify the NAS IPv4 address. ipv4_address must be an IPv4 address in dotted decimal notation.

  • accounting attribute [ [ instance gr_instance_id ] [ nas-ip ipv4_address ] ] : Set the global accounting NAS-IP address value.

    • instance gr_instance_id : Specify the Geographic Redundancy (GR) instance ID. gr_instance_id must be an integer.

    • nas-ip ipv4_address : Specify the NAS IPv4 address. ipv4_address must be an IPv4 address in dotted decimal notation.

  • server-group group_name attribute [ [ instance gr_instance_id ] [ nas-ip ipv4_address ] ] : Set the per server-group common NAS-IP address value.

    • instance gr_instance_id : Specify the Geographic Redundancy (GR) instance ID. gr_instance_id must be an integer.

    • nas-ip ipv4_address : Specify the NAS IPv4 address. ipv4_address must be an IPv4 address in dotted decimal notation.

  • server-group group_name accounting attribute [ [ instance gr_instance_id ] [ nas-ip ipv4_address ] ] : Set the per server-group accounting NAS-IP address value.

    • instance gr_instance_id : Specify the Geographic Redundancy (GR) instance ID. gr_instance_id must be an integer.

    • nas-ip ipv4_address : Specify the NAS IPv4 address. ipv4_address must be an IPv4 address in dotted decimal notation.

Example:

The following is an example of the multiple RADIUS NAS-IP configuration.


config
 profile radius
  attribute
   instance 1
    nas-ip 209.165.200.225 
    nas-identifier  smf1  
   exit
   instance 2
    nas-ip 209.165.201.2
          
    nas-identifier  smf2  
   exit
  exit
  accounting
   attribute
    instance 1
     nas-ip 209.165.200.225 
     nas-identifier  smf1 
    exit
    instance 2
     nas-ip 209.165.201.2
          
     nas-identifier  smf2 
    exit
   exit
  exit
 exit
 server-group g1
  attribute
   instance 1
    nas-ip 209.165.200.225 
    nas-identifier  smf1 
   exit
   instance 2
    nas-ip 209.165.201.2
       
    nas-identifier  smf2 
   exit
  exit
 exit
 accounting
  attribute
   instance 1
    nas-ip 209.165.200.225 
    nas-identifier  smf1 
   exit
   instance 2
    nas-ip 209.165.201.2
    
    nas-identifier  smf2 
   exit
  exit
 exit
exit