ADC

Configuring users and groups

After configuring the authentication, authorization, and auditing basic setup, you create users and groups. You first create a user account for each person who will authenticate via the Citrix ADC appliance. If you are using local authentication controlled by the Citrix ADC appliance itself, you create local user accounts and assign passwords to each of those accounts.

You also create user accounts on the Citrix ADC appliance if you are using an external authentication server. In this case, however, each user account must exactly match an account for that user on the external authentication server, and you do not assign passwords to the user accounts that you create on the Citrix ADC. The external authentication server manages the passwords for users that authenticate with the external authentication server.

If you are using an external authentication server, you can still create local user accounts on the Citrix ADC appliance if, for example, you want to allow temporary users (such as visitors) to log in but do not want to create entries for those users on the authentication server. You assign a password to each local user account, just as you would if you were using local authentication for all user accounts.

Each user account must be bound to policies for authentication and authorization. To simplify this task, you can create one or more groups and assign user accounts to them. You can then bind policies to groups instead of individual user accounts.

To create a local Authentication, authorization, and auditing user account by using the command line interface

At the command prompt, type the following commands to create a local Authentication, authorization, and auditing user account and verify the configuration:

  • add aaa user [–password ]

  • show aaa user

    Example

> add aaa user user-2 -password emptybag Done > show aaa user 1) UserName: user-1 2) UserName: user-2 Done 

To change the password for an existing authentication, authorization, and auditing local user account by using the command line interface

At the command prompt, type the following command and, when prompted, type the new password:

set aaa user  

Example

> set aaa user user-2 Enter password: Done 

To configure authentication, authorization, and auditing local users by using the configuration utility

  1. Navigate toSecurity > AAA - Application Traffic > Users
  2. In the details pane, do one of the following:
    • To create a new user account, clickAdd.
    • To modify an existing user account, select the user account, and then clickOpen.
  3. In theCreate AAA Userdialog box, in theUser Nametext box, type a name for the user.
  4. If creating a locally authenticated user account, clear theExternal Authenticationcheck box and provide a local password that the user will use to log on
  5. ClickCreateorOK, and then clickClose. A message appears in the status bar, stating that the user has been configured successfully.

To create authentication, authorization, and auditing local groups and add users to them by using the command line interface

At the command prompt, type the following commands. Type the first command one time, and type the second command once for each user:

  • add aaa group

  • ```show aaa group
    **Example**

    add aaa group group-2 Done show aaa group 1) GroupName: group-1 2) GroupName: group-2 Done```

  • ```bind aaa group -username
    **Example**

    bind aaa group group-2 -username user-2 Done show aaa group group-2 GroupName: group-2 UserName: user-2 Done```

To remove users from an authentication, authorization, and auditing group by using the command line interface

At the command prompt, unbind users from the group by typing the following command once for each user account that is bound to the group:

  • ```unbind aaa group -username
    **Example**

    解开aaa group group-hr -username user-hr-1 Done```

To remove an authentication, authorization, and auditing group by using the command line interface

First remove all users from the group. Then, at the command prompt, type the following command to remove an AAA group and verify the configuration:

  • rm aaa group
  • ```show aaa group
    **Example**

    rm aaa group group-hr Done show aaa group 1) GroupName: group-1 2) GroupName: group-finance Done```

To configure authentication, authorization, and auditing local groups and add users to them by using the configuration utility

  1. Navigate toSecurity > AAA - Application Traffic > Groups
  2. In the details pane, do one of the following:
    • To create a new group, clickAdd.
    • To modify an existing group, select the group, and then clickEdit.
  3. If you are creating a new group, in theCreate AAA Groupdialog box, in theGroup Nametext box, type a name for the group.
  4. In theAdvancedarea to the right, clickAAA Users.

    • To add a user to the group, select the user, and then clickAdd.
    • To remove a user from the group, select the user, and then clickRemove.
    • To create a new user account and add it to the group, click thePlusicon, and then follow the instructions in “To configure authentication, authorization, and auditing local users by using the configuration utility.”
  5. ClickCreateorOK. The group that you created appears in theAAA Groupspage.