Hi,
we use your great lib (1.1.0 from SVN) to change passwords in Cisco ACS. The code is
require '../../lib/tacacs_plus.rb'
require 'yaml'
logger = Logger.new(STDOUT)
logger.level = Logger::DEBUG
client = TacacsPlus::Client.new(:key => 'AABBCCC', :server => 'XXX', :logger => logger, :dump_file =>
STDOUT)
client.change_password('testuser', 'oldpass', 'newpass')
the Cisco ACS says CHAP/TACACS+ CHPASS/Successful but the only valid password is still the old one. Hints welcome...
TIA,
Charles |