Hi All,
I am a newbie on Tacacs+ :)) So I've problem when I'd like to
connection to Tacacs+. I installed and started tac_plus services on
Centos 5.4 but When I connect to our device (192.168.1.251) that I've
taken error messages. You can find all messages and configuration file
on below.
Firstly, I edited my configuration file
tac_plus.conf ------------------------
#!/usr/local/sbin/tac_plus
id = spawnd {
listen = { port = 4949 }
spawn = {
instances min = 1
instances max = 10
}
background = no
}
id = tac_plus {
debug = PACKET AUTHEN AUTHOR
access log = /var/log/access.log
accounting log = /var/log/acct.log
host = world {
address =
192.168.1.251/24
prompt = "Welcome\n"
enable 15 = clear secret
key = 123456789
}
group = admin {
default service = permit
service = shell {
default command = permit
default attribute = permit
set priv-lvl = 15
}
}
group = guest {
default service = permit
enable = deny
service = shell {
default command = permit
default attribute = permit
set priv-lvl = 1
}
}
user = test {
password = clear test
member = admin
service = shell {
default command = permit
default attribute = permit
set priv-lvl = 15
}
}
user = readonly {
password = clear readonly
member = guest
}
}
--------------------------------------------------------------------------
- After , I tried " tac_plus -P /usr/local/etc/tac_plus.cfg -d16 "
command
- service tac_plus restart
- Finaly, I tried My Cisco device with sss " ssh -l test
192.168.1.251 " and I've taken this messages
[root@dhcppc21 etc]# ssh -l test 192.168.1.251
te...@192.168.1.251's password:
Permission denied, please try again.
Please help :))
Thanks....