Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to add a new user in ASA? 2

Status
Not open for further replies.

surferdude949

Programmer
Oct 13, 2008
261
US
I found a few threads on how to add a user however, I'm not able to type add login in ASA 5.2.

I need to add a new user, where do I start?

S8500 CM5
 
Is there a way to duplicate logins? I tried the dup login command but it won't work on CM5.
 
browser menu item under
-> Security
-> Login Reports


Linux commands:

loginReports -l (list login in cm4 linux for all logins)
loginReports -lu dadmin (for single login report)
loginReports -l | grep user | grep -v prof (users no profile)
cat /etc/group | grep -v prof | egrep x:100[2-6][1-90] (users no valid profile)
(loginreports shows as no profile valid profile means profxx where xx = 20 - 69)
loginReports -l | grep prof | awk '/pw/;/asg/' (users with profile)
loginReports -l | grep -v prof | awk '/pw/;/asg/'
loginReports -l | awk '/pw/;/asg/;/remote/' | sort -u


A great teacher, does not provide answers, but methods to teach others "How and where to find the answers"

bsh

36 years Bell, AT&T, Lucent, Avaya
Tier 3 for 26 years and counting
 
linux commands to administer and maintain logins:

cmuseradd, cmuserdel, cmusermod, cmpasswd
cmuseradd dadmin (add dadmin login) (PIN for CM 4.0.1)
cmuseradd remote dadminrem (add a PPP remote login)
cmuseradd craft2 custcraft (add a craft2 login) (PIN for CM 4.0.1)
(Command: enable craft2 custcraft)
cmuseradd super-user -C 18 avaya
cmuseradd super-user -C 18 -P cust (add super-user login with ASG instead of pw)
cmuseradd -P 33355014162535251700 cust (add login with PIN for ASG from linux)
cmusermod super-user -C 18 avaya
cmusermod -P cust (change login to use ASG instead of pw)
cmusermod -P 33355014162535251700 cust (change login's PIN for ASG from linux)
cmuseradd, cmuserdel, cmusermod, cmpasswd
cmuseradd remote avayarem
cmuserdel avayarem (remove login from /etc/passwd and /etc/shadow cm4)
cmusermod -C 18 avaya (change avaya to prof18)
cmusermod -U avaya (unlock avaya login)

cmpasswd dadmin
cmpasswd avaya

userlock status (cm4 and >)
userlock unlock (cm4 and >)


A great teacher, does not provide answers, but methods to teach others "How and where to find the answers"

bsh

36 years Bell, AT&T, Lucent, Avaya
Tier 3 for 26 years and counting
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top