<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: usernames in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/usernames/m-p/725549#M1005591</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can configure the usernames with the username command and add their password on the same command line. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;username testuser priv 15 pass cisco&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Optionally, you can configure the privilege level of that user. Level 15 is the administrative user.Once configured on the lines, the line password is then ignored.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 01 May 2007 04:51:31 GMT</pubDate>
    <dc:creator>rebwar123</dc:creator>
    <dc:date>2007-05-01T04:51:31Z</dc:date>
    <item>
      <title>usernames</title>
      <link>https://community.cisco.com/t5/network-security/usernames/m-p/725548#M1005587</link>
      <description>&lt;P&gt;Currently I only need a password to connect to my routers and firewalls.  I want to have better security by requiring a username as well.  Would that be the "username" command?  AND once that is setup, will it always require a username from then on because that's what I want.  The routers are 2811 and 1721 and the firewalls are PIX 515 and PIX 506.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 10:07:14 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/usernames/m-p/725548#M1005587</guid>
      <dc:creator>dexteroc1</dc:creator>
      <dc:date>2019-03-11T10:07:14Z</dc:date>
    </item>
    <item>
      <title>Re: usernames</title>
      <link>https://community.cisco.com/t5/network-security/usernames/m-p/725549#M1005591</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can configure the usernames with the username command and add their password on the same command line. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;username testuser priv 15 pass cisco&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Optionally, you can configure the privilege level of that user. Level 15 is the administrative user.Once configured on the lines, the line password is then ignored.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2007 04:51:31 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/usernames/m-p/725549#M1005591</guid>
      <dc:creator>rebwar123</dc:creator>
      <dc:date>2007-05-01T04:51:31Z</dc:date>
    </item>
    <item>
      <title>Re: usernames</title>
      <link>https://community.cisco.com/t5/network-security/usernames/m-p/725550#M1005594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes, that would give you desired results.Make SURE that you test the configuration before you save or you will be locked out otherwise.&lt;/P&gt;&lt;P&gt;command is like following:&lt;/P&gt;&lt;P&gt;username your_name passwd your_password.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2007 09:46:13 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/usernames/m-p/725550#M1005594</guid>
      <dc:creator>jamilakhtar</dc:creator>
      <dc:date>2007-05-01T09:46:13Z</dc:date>
    </item>
    <item>
      <title>Re: usernames</title>
      <link>https://community.cisco.com/t5/network-security/usernames/m-p/725551#M1005596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you wanted security on your routers, you can implement this security as well.  See command list example below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;aaa new-model&lt;/P&gt;&lt;P&gt;aaa authentication login local_authen local&lt;/P&gt;&lt;P&gt;username johndoe secret secretpassword&lt;/P&gt;&lt;P&gt;line con 0&lt;/P&gt;&lt;P&gt;exec-timeout 5 0&lt;/P&gt;&lt;P&gt;login authentication local_authen&lt;/P&gt;&lt;P&gt;line vty 0 4&lt;/P&gt;&lt;P&gt;exec-timeout 5 0&lt;/P&gt;&lt;P&gt;login authentication local_authen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when you enter your username of choice, be sure to use the "secret" command rather than "password".  Reason being - just using "password" only encrypts your password with a weak md5 hash.  By using the "secret" command it uses a higher md5 encryption algorithm and is stated by Cisco to be impossible to crack.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will give you a local username/password store.  If (When) you decide to change passwords you will have to manually change it on each device.  You can also implement TACACS+ or RADIUS authentication if you wanted to centralize account management.  This example is for account management per device.&lt;/P&gt;&lt;P&gt;Also, be sure to implement the "service password-encryption" command as well.  This will encrypt your passwords within the config output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please rate if this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2007 17:41:28 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/usernames/m-p/725551#M1005596</guid>
      <dc:creator>med_ddevlin</dc:creator>
      <dc:date>2007-05-01T17:41:28Z</dc:date>
    </item>
  </channel>
</rss>

