cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
453
Views
0
Helpful
1
Replies

Cisco secure ACS - RDBMS Rename a Group-

p.tournier
Level 1
Level 1

Hi,

I'm currently working with Cisco secure ACS 3.1 and I'm trying to use RDBMS synchronisation with a csv file. I create a accountactions.csv file where I create a new user.

1,0,TESTuser,,100,,,,,,0,,,0

2,0,TESTuser,,102,,test,,,,0,,,0

Until here, all is working fine. But now, I would like to put this user into a Group. This should be done with :

3,0,TESTuser,Group 30,106,,,,,,0,,,0

But I would like to know if it's possible to rename or create one Group (e.g rename Group 30 with Group TEST) directly in my csv file ?

Thank you

Regards

Pascal TOURNIER

1 Reply 1

GERALD DAVIS
Level 4
Level 4

Here is what i found works for renaming a default group, as you cannot create more groups beyond what is there.

SequenceId,Priority,UserName,GroupName,Action,ValueName,Value1,Value2,Value3,DateTime,MessageNo,ComputerNames,AppId,Status
1,1,,Group 100,210,,BPM,,,,0,,,0
2,2,,Group 101,210,,CHANNEL SECURE OPS,,,,0,,,0
3,3,,Group 102,210,,CISCO CNC,,,,0,,,0
4,4,,Group 103,210,,CISCO NOS,,,,0,,,0
5,5,,Group 104,210,,CTS,,,,0,,,0
6,6,,Group 105,210,,DCI,,,,0,,,0

line 1

Rename "Group 100" to named group "BPM" using code 210 to perform the Action

Gerald