Configuring RADIUS NAS-IP

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

Multiple RADIUS NAS-IP Configuration

Use the following sample configuration to configure multiple RADIUS NAS-IP addresses at various levels.

config 
   profile radius 
      attribute nas-ip-address ipv4_address 
      accounting attribute nas-ip-address ipv4_address 
      server-group group_name attribute nas-ip-address ipv4_address 
      server-group group_name accounting attribute nas-ip-address ipv4_address 
      commit 

NOTES:

  • profile radius : Enter the RADIUS configuration mode.

  • attribute nas-ip-address ipv4_address : Set the global NAS-IP address value.

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

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

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

  • commit : Commit the configuration.

Example:

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

config
 profile radius 
  attribute 
   nas-ip-address 1.2.3.4
  exit
  accounting
   attribute
    nas-ip-address 1.2.3.5
   exit
  exit
  server-group grp1
   attribute
    nas-ip-address 1.2.3.6
   exit
   accounting
   attribute
    nas-ip-address 1.2.3.7
   exit
  exit
 server-group grp2
   attribute
    nas-ip-address 1.2.3.78
   exit
   accounting
   attribute
    nas-ip-address 1.2.3.9
   exit
  exit
 exit
exit