<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Cisco TACACS server for Windows</title>
	<atom:link href="http://www.xpresslearn.com/tools/software-tools/cisco-tacacs-server-for-windows/feed" rel="self" type="application/rss+xml" />
	<link>http://www.xpresslearn.com/tools/software-tools/cisco-tacacs-server-for-windows</link>
	<description>Solutions to your Networking and Security questions</description>
	<lastBuildDate>Wed, 28 Jul 2010 23:08:54 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Using TACACS with Dynagen-Dynamips &#124; xpresslearn.com</title>
		<link>http://www.xpresslearn.com/tools/software-tools/cisco-tacacs-server-for-windows/comment-page-1#comment-12498</link>
		<dc:creator>Using TACACS with Dynagen-Dynamips &#124; xpresslearn.com</dc:creator>
		<pubDate>Wed, 30 Jun 2010 18:04:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.xpresslearn.com/?p=92#comment-12498</guid>
		<description>[...] The TACACS+ Windows executable can be downloaded from here. [...]</description>
		<content:encoded><![CDATA[<p>[...] The TACACS+ Windows executable can be downloaded from here. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Xpresslearn Administrator</title>
		<link>http://www.xpresslearn.com/tools/software-tools/cisco-tacacs-server-for-windows/comment-page-1#comment-11633</link>
		<dc:creator>Xpresslearn Administrator</dc:creator>
		<pubDate>Mon, 07 Jun 2010 03:42:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.xpresslearn.com/?p=92#comment-11633</guid>
		<description>Yes, you can test this without a Cisco router.  The router is the TACACS client, so all you would need is a client that will run on your Ubuntu machine.</description>
		<content:encoded><![CDATA[<p>Yes, you can test this without a Cisco router.  The router is the TACACS client, so all you would need is a client that will run on your Ubuntu machine.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: andrew</title>
		<link>http://www.xpresslearn.com/tools/software-tools/cisco-tacacs-server-for-windows/comment-page-1#comment-11566</link>
		<dc:creator>andrew</dc:creator>
		<pubDate>Fri, 04 Jun 2010 20:53:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.xpresslearn.com/?p=92#comment-11566</guid>
		<description>Hello. I just installed a tacacs+ server on Ubuntu and I would like to test it without using the configuration of a Cisco router. Do you think that&#039;s possible? I followed the steps from http://www.debian-administration.org/article/Network_Administration__Installation_of_Tacacs_Rancid_Cvsweb. I&#039;m also interested on testing it on windows too if it&#039;s possible without the routers config. Thank you.</description>
		<content:encoded><![CDATA[<p>Hello. I just installed a tacacs+ server on Ubuntu and I would like to test it without using the configuration of a Cisco router. Do you think that&#8217;s possible? I followed the steps from <a href="http://www.debian-administration.org/article/Network_Administration__Installation_of_Tacacs_Rancid_Cvsweb" rel="nofollow">http://www.debian-administration.org/article/Network_Administration__Installation_of_Tacacs_Rancid_Cvsweb</a>. I&#8217;m also interested on testing it on windows too if it&#8217;s possible without the routers config. Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kiansim</title>
		<link>http://www.xpresslearn.com/tools/software-tools/cisco-tacacs-server-for-windows/comment-page-1#comment-11446</link>
		<dc:creator>kiansim</dc:creator>
		<pubDate>Wed, 02 Jun 2010 11:32:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.xpresslearn.com/?p=92#comment-11446</guid>
		<description>great software!

I use notepad++ to edit the tac.cfg file.
http://notepad-plus.sourceforge.net/uk/download.php

encountered issue if not using default aaa authentication list. Unable to let user to vty login with priv 15 (without key in enable password) if use customized name. Below is my Cisco router config and the tac.cfg config.

=============
== tac.cfg ==
=============
# CONFIGURE ENCYPTION KEY
key = mykey!

# Configure User
user = kiansim {
	login = cleartext &quot;testing1234&quot;
	service = exec {
	priv-lvl = 15
	}
}
# End file


================================================
== ROUTER CONFIG UNABLE TO LOGIN WITH PRIV 15 ==
================================================
aaa authentication login VTY_0-4 group tacacs+ local enable
aaa authorization exec VTY_0-4 group tacacs+ local if-authenticated

line vty 0 4
 authorization exec VTY_0-4
 login authentication VTY_0-4
================================================

==============================================
== ROUTER CONFIG ABLE TO LOGIN WITH PRIV 15 ==
==============================================
aaa authentication login default group tacacs+ local enable
aaa authorization exec default group tacacs+ local if-authenticated

line vty 0 4
 login authentication default 
 authorization exec default
================================================</description>
		<content:encoded><![CDATA[<p>great software!</p>
<p>I use notepad++ to edit the tac.cfg file.<br />
<a href="http://notepad-plus.sourceforge.net/uk/download.php" rel="nofollow">http://notepad-plus.sourceforge.net/uk/download.php</a></p>
<p>encountered issue if not using default aaa authentication list. Unable to let user to vty login with priv 15 (without key in enable password) if use customized name. Below is my Cisco router config and the tac.cfg config.</p>
<p>=============<br />
== tac.cfg ==<br />
=============<br />
# CONFIGURE ENCYPTION KEY<br />
key = mykey!</p>
<p># Configure User<br />
user = kiansim {<br />
	login = cleartext &#8220;testing1234&#8243;<br />
	service = exec {<br />
	priv-lvl = 15<br />
	}<br />
}<br />
# End file</p>
<p>================================================<br />
== ROUTER CONFIG UNABLE TO LOGIN WITH PRIV 15 ==<br />
================================================<br />
aaa authentication login VTY_0-4 group tacacs+ local enable<br />
aaa authorization exec VTY_0-4 group tacacs+ local if-authenticated</p>
<p>line vty 0 4<br />
 authorization exec VTY_0-4<br />
 login authentication VTY_0-4<br />
================================================</p>
<p>==============================================<br />
== ROUTER CONFIG ABLE TO LOGIN WITH PRIV 15 ==<br />
==============================================<br />
aaa authentication login default group tacacs+ local enable<br />
aaa authorization exec default group tacacs+ local if-authenticated</p>
<p>line vty 0 4<br />
 login authentication default<br />
 authorization exec default<br />
================================================</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patrick</title>
		<link>http://www.xpresslearn.com/tools/software-tools/cisco-tacacs-server-for-windows/comment-page-1#comment-11053</link>
		<dc:creator>Patrick</dc:creator>
		<pubDate>Sat, 22 May 2010 20:53:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.xpresslearn.com/?p=92#comment-11053</guid>
		<description>I want each user to be in privilege 15 and at the # prompt.  What does the file need to look like?</description>
		<content:encoded><![CDATA[<p>I want each user to be in privilege 15 and at the # prompt.  What does the file need to look like?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Moshe</title>
		<link>http://www.xpresslearn.com/tools/software-tools/cisco-tacacs-server-for-windows/comment-page-1#comment-9588</link>
		<dc:creator>Moshe</dc:creator>
		<pubDate>Wed, 24 Mar 2010 14:44:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.xpresslearn.com/?p=92#comment-9588</guid>
		<description>How Can I configure in the tac.cfg file that user X can perform all commands ( not specific command).</description>
		<content:encoded><![CDATA[<p>How Can I configure in the tac.cfg file that user X can perform all commands ( not specific command).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe</title>
		<link>http://www.xpresslearn.com/tools/software-tools/cisco-tacacs-server-for-windows/comment-page-1#comment-7436</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Sat, 02 Jan 2010 01:18:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.xpresslearn.com/?p=92#comment-7436</guid>
		<description>Hello,

Does anyone know of any good TACACS+ server configuration guides / cookbooks etc?  I haven&#039;t been able to find much configuration support anywhere online.  There must be an extensive command / option list somewhere.  One of the very few references I&#039;ve been able to find is http://www.stben.net/tacacs/users_guide.html, which I believe was referenced on this webpage.

Thanks,
Joe</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>Does anyone know of any good TACACS+ server configuration guides / cookbooks etc?  I haven&#8217;t been able to find much configuration support anywhere online.  There must be an extensive command / option list somewhere.  One of the very few references I&#8217;ve been able to find is <a href="http://www.stben.net/tacacs/users_guide.html" rel="nofollow">http://www.stben.net/tacacs/users_guide.html</a>, which I believe was referenced on this webpage.</p>
<p>Thanks,<br />
Joe</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DanM</title>
		<link>http://www.xpresslearn.com/tools/software-tools/cisco-tacacs-server-for-windows/comment-page-1#comment-5240</link>
		<dc:creator>DanM</dc:creator>
		<pubDate>Thu, 01 Oct 2009 15:10:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.xpresslearn.com/?p=92#comment-5240</guid>
		<description>When using accounting, there needs to be an entry in the tac.cfg file with:

accounting file = 

is this simply a file name, or a full path? Does the file need to exist prior? Thanks!</description>
		<content:encoded><![CDATA[<p>When using accounting, there needs to be an entry in the tac.cfg file with:</p>
<p>accounting file = </p>
<p>is this simply a file name, or a full path? Does the file need to exist prior? Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ian</title>
		<link>http://www.xpresslearn.com/tools/software-tools/cisco-tacacs-server-for-windows/comment-page-1#comment-4311</link>
		<dc:creator>ian</dc:creator>
		<pubDate>Fri, 04 Sep 2009 04:53:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.xpresslearn.com/?p=92#comment-4311</guid>
		<description>Hi,i&#039;m telcomunication student in Asia. i&#039;m interest with your software.i have some problems to use it.
I am running tac_plus.exe in Windows XP machine, after modifying the tac.cfg file with notepad and this is the output
C:\tacacs&gt;tac_plus -C tac.cfg
Warning, not running as uid 0
Tac_plus is usually run as root

best regrad.</description>
		<content:encoded><![CDATA[<p>Hi,i&#8217;m telcomunication student in Asia. i&#8217;m interest with your software.i have some problems to use it.<br />
I am running tac_plus.exe in Windows XP machine, after modifying the tac.cfg file with notepad and this is the output<br />
C:\tacacs&gt;tac_plus -C tac.cfg<br />
Warning, not running as uid 0<br />
Tac_plus is usually run as root</p>
<p>best regrad.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: GK</title>
		<link>http://www.xpresslearn.com/tools/software-tools/cisco-tacacs-server-for-windows/comment-page-1#comment-2348</link>
		<dc:creator>GK</dc:creator>
		<pubDate>Wed, 27 May 2009 16:13:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.xpresslearn.com/?p=92#comment-2348</guid>
		<description>Dear Author,
            I am using your tacacs tool with one of my switch which is not cisco. 

I have given permission for the user to execute all show commands.
But after authentication I am unable to run any show commands.

user = lily {
login = cleartext lily
cmd = show {
permit .*
 }
}
Kindly advise.</description>
		<content:encoded><![CDATA[<p>Dear Author,<br />
            I am using your tacacs tool with one of my switch which is not cisco. </p>
<p>I have given permission for the user to execute all show commands.<br />
But after authentication I am unable to run any show commands.</p>
<p>user = lily {<br />
login = cleartext lily<br />
cmd = show {<br />
permit .*<br />
 }<br />
}<br />
Kindly advise.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
