Telnet Password Enabling

Hi,
how to set telnet password via network? i know that we can set telnet password via network thru CNA, when "enable password" is set. but is it possible for cisco 1700 series routers to set telnet password? bcos CNA doesn't for routers, any other options?

If you are trying to set a password on Telnet access go to config mode and do the follwoing:
line vty 0 4
login
password (your password)
See the following website for addtional options.
http://www.cisco.com/en/US/products/sw/iosswrel/ps1818/products_configuration_example09186a0080204528.shtml
Hope this helps
Steve

Similar Messages

  • Alarm mac app the works with screensaver password enabled?

    I am looking for an alarm clock app on my Macbook (running Mavericks) that would work even if I have the screensaver/sleep password enabled.
    Of course, I want the Macbook go to sleep during the night.
    Does anyone know of such an application?
    I have looked through the app store, and searched the web, to no avail.
    I used to use Aurora, and liked it, but it, too, works only, if the screensaver password is disabled.
    (And after someone stole my Macbook, I'd rather have the screensaver password enabled.)
    Any hints, pointers, or ideas will be highly appreciated.
    Best,
    Gabriel.

    Apps already installed by the former owner of the Mini are associated with that persons Apple iD. You won't be able to update any of those apps using your Apple iD. Those apps will have to be purchased from your Apple ID only.
    Apparently the previous owner had not upgraded to Mountain Lion as yet, or you would not have been able to download and install that OS X.

  • Oracle Patchset 10.2.0.5.0 impact on password enabled roles

    Oracle Patchset 10.2.0.5.0 (as well as 11.1.0.7 according to Oracle Support note 745407.1) will affect your password enabled roles security if you grant password enabled role to a user as a DEFAULT role (this users - like firecall ids - don't have to provide password to have this role active after logon). It turns out this is the only impact contrary to Oracle Support (Metalink) note 745407.1 stating that roles granted to other roles are affected as well. After I read the note I've worked with my DBA to assess possible damage to the application I support. Below are the results that I hope might help other people to assess and fix their situation as well (Please don't do the "fix" recommended by note 745407.1 which is to "remove password protection from the role" as this will trash your application security) :
    BEFORE THE PATCH:
    SQL*Plus: Release 10.1.0.4.2 - Production on Mon Sep 20 14:45:13 2010
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
    With the Partitioning, Data Mining and Real Application Testing options
    SQL# -- Create Ordinary Oracle Role
    SQL# create role ORACLE_ROLE;
    Role created.
    SQL#
    SQL# -- Create Password Authenticated Role
    SQL# create role PASSW_AUTH_ROLE identified by xxxxxxx;
    Role created.
    SQL#
    SQL# -- Create Another Ordinary Role to be granted to ORACLE_ROLE
    SQL# create role ROLE_TO_OTHER_ROLE;
    Role created.
    SQL#
    SQL# GRANT ROLE_TO_OTHER_ROLE TO ORACLE_ROLE;
    Grant succeeded.
    SQL#
    SQL# -- Create Secure Application Role
    SQL# create role SECURE_APP_ROLE identified using sec_roles;
    Role created.
    SQL# -- sec_roles procedure
    SQL# CREATE OR REPLACE procedure sec_roles AUTHID CURRENT_USER
    2 AS
    3
    4 BEGIN
    5 DBMS_SESSION.SET_ROLE('secure_app_role');
    6 END;
    7 /
    Procedure created.
    SQL#
    SQL# grant execute on SEC_ROLES to public;
    Grant succeeded.
    SQL#
    SQL# SQL# -- Create User Account
    SQL# CREATE USER app_user IDENTIFIED BY "xxxxxxx"
    2 DEFAULT TABLESPACE "USERS01"
    3 TEMPORARY TABLESPACE "TEMP01";
    User created.
    SQL# GRANT CONNECT, ORACLE_ROLE, PASSW_AUTH_ROLE, SECURE_APP_ROLE to app_user;
    Grant succeeded.
    SQL# ALTER USER app_user DEFAULT ROLE ALL;
    User altered.
    connect app_user@XXXXXX
    Enter password: *********
    Connected.
    select * from session_roles;
    ROLE
    CONNECT
    ORACLE_ROLE
    ROLE_TO_OTHER_ROLE
    PASSW_AUTH_ROLE
    Note here that SECURE_APP_ROLE does not appear in the list of active session roles, which is in accordance with Oracle Support (Metalink) note 745407.1 saying that this is the case starting with versions 11.1.0.7 and 10.2.0.4 for Secure Application Roles.
    AFTER THE PATCH APPLIED:
    connect app_user@XXXXXX
    Enter password: *********
    Connected.
    select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bi
    PL/SQL Release 10.2.0.5.0 - Production
    CORE 10.2.0.5.0 Production
    TNS for Solaris: Version 10.2.0.5.0 - Production
    NLSRTL Version 10.2.0.5.0 - Production
    SQL# show user
    USER is "APP_USER"
    SQL#
    SQL# select * from session_roles;
    ROLE
    CONNECT
    ORACLE_ROLE
    ROLE_TO_OTHER_ROLE
    As expected password enabled role PASSW_AUTH_ROLE disappeared from the list of the roles enabled by default. Contrary to the expectations ROLE_TO_OTHER_ROLE that is granted to ORACLE_ROLE but not directly to the user is still active. As it turns out that is not the last surprise.
    In order to test other possible combinations of roles granted to other roles I've created two other roles:
    create role role_to_other_role_2;
    Role created.
    SQL# create role PASSW_AUTH_ROLE_2 identified by xxxxxxxx;
    Role created.
    SQL# grant passw_auth_role_2 to oracle_role
    Grant succeeded.
    SQL# grant PASSW_AUTH_ROLE_2 to PASSW_AUTH_ROLE
    Grant succeeded.
    SQL# grant role_to_other_role_2 to passw_auth_role;
    Grant succeeded.
    Surprisingly after logon password enabled role PASSW_AUTH_ROLE_2, granted through non-password enabled role ORACLE_ROLE, is active without need to provide password to set PASSW_AUTH_ROLE_2 role, which kind of defeats the purpose of Oracle security change in the first place.
    connect app_user@XXXXXX
    Enter password: *********
    Connected.
    select * from session_roles;
    ROLE
    CONNECT
    ORACLE_ROLE
    ROLE_TO_OTHER_ROLE
    PASSW_AUTH_ROLE_2
    Also if we set other password enabled role PASSW_AUTH_ROLE all roles granted to that role become active roles:
    set role passw_auth_role identified by xxxxxxxx;
    Role set.
    select * from session_roles;
    ROLE
    PASSW_AUTH_ROLE
    PASSW_AUTH_ROLE_2
    ROLE_TO_OTHER_ROLE_2
    As we can see this Oracle attempt to solidify role based security leaves some holes, and documentation is confusing and misleading. I expect that there will be more interventions coming in the future and we will need to verify with Oracle if they intend to do changes with role based security in the future that might have much greater impact on applications security models, and potentially cause unwanted downtime.
    Finaly the query to figure out if you are potentially affected is:
    select B.grantee, A.role, B.default_role
    from dba_roles A, dba_role_privs B
    where A.password_required = 'YES'
    and A.role = B.granted_role
    and B.default_role = 'YES';

    I think, we are also facing this problem. Please let me know if any one has got any kind of FIX for this ?
    we have just migrated from 10.2.0.4.0 to 10.2.0.5.0. All of a sudden set of code stopped working.
    Query runs before setting up ROLE and similer query gives error after setting up the ROLE. If we don’t set the ROLE, both queries work fine.
    ======= Code =====
    SELECT granted_role
    FROM DBA_ROLE_PRIVS
    WHERE grantee = '501280629'
    AND granted_role IN ('PICAMG','PICAUS', 'PICAVW', 'PICAOP', 'PICADB')
    AND ROWNUM = 1 ----> this query works before setting up ROLE
    SET ROLE PICADB IDENTIFIED BY XXXXX ----> setting up ROLE
    SELECT granted_role
    FROM DBA_ROLE_PRIVS
    WHERE GRANTEE = '501280629'
    AND granted_role IN ('PICAMG','PICAUS', 'PICAVW', 'PICAOP', 'PICADB') ----> this query does work after setting up ROLE
    Thanks
    Suraj

  • With a firmware password enabled how to boot in to an other volume?

    I found this:
    Some startup keys don't respond if both firmware password protection and FileVault 2 are enabled
    Some startup key combinations that you can use when your Mac starts, such as those which use the Option or Command keys, may not respond if a firmware password has also been enabled.
    If you have a firmware password enabled on your Mac, you must successfully enter that password before you can boot to another startup volume, or before you can access the Startup Manager.
    Is it not so that if I boot from lets say a DVD or External HD, I will be asked for the Firmware PW before being allowed to go on? 

    I haven't tried it with FileVault so I can't tell you the answer for that question, but note that FileVault only affects to the internal drive, which would mean that you are not asked for FileVault. Another user has to confirm this

  • 8310 Password Enabled Locked....How to reset and clear lock to disable password?

    My 8310 phone has a lock on the Password Enabled, and I can't clear or change setting to disable password. Also, the security time out is locked, so I can't change the time either. Please help, I want to reset the phone so that it isn't locked and I can disable the security password.

    Yes. If you know who's company is was a part of, the BES admistrator can send a default IT policy to device to remove any restrictions from the device. I also found you can try removing the policy yourself. I've never tried this, but here's a link describing how to do so: http://www.blackberryfaq.com/index.php/Remove_IT_Policy
    If someone has been helpful please consider giving them kudos by clicking the star to the left of their post.
    Remember to resolve your thread by clicking Accepted Solution.

  • Reset NVRAM while EFI Password enabled

    I have a macbook pro (late 2011).
    And, I need to reset the NVRAM / SMC.
    However, I have my EFI Password enabled.
    And, I DO remember my EFI Password (a lot of people in Google is searching how to reset it, anyway) !!!
    When I do the following -
         1. Restart
         2. Press & hold CMD+ALT+P+R while booting, it prompts the EFI Pawword
         3. I provide the password
         4. Immediately after entering EFI Password, I press & hold CMD+ALT+P+R
         5. It loads OS X Utilities, does not restart (as explained in Apple's page, the system should restart)
    I have reasons to believe that the NVRAM is not reset
    By the way I do not want to get rid of EFI password.
    Any luck ?

    Thanks DS Store.
    I meant to say NVRAM (of Intel Macs), not PRAM (PPC Macs).
    The first article is good, however, I am able to find little help for my problem.
    It covers PRAM, and till OS X 10.5.X. Mine is 10.8.X.
    I have browsed Google, and found that I need to visit Apple Care for EFI Password reset (or, use the logic board reset).
    Any alternative ? This is bad to forbod someone from resetting NVRAM / SMC if EFI Password is enabled :-(

  • How to use telnet to enable SNMP in a router ?

    Hi,
    Is it possible to enable the snmp in a router via telnet with the wan address(I have the routers' passwords) ?
    If yes, how
    Router 1 : Cisco 871 w
    Router 2 : Sagem – F@st 3304 v2
    thank you
    Waiting...

    Hi,
    Command Prompt:
    telnet @router
    login: root
    Password: ********
    [root @ home]$
    What I should do next  ?

  • LMS 3.2 netconfig telnet password configuration customization

    I am trying to configure telnet vty password using netconfig. I want to make the configuration only for line vty 0-4 however I am not able to find a way to define the line numbers. Moreover it also has the login command added by itself.
    The default configuration it shows is as follows -
    line vty 0 %MAXLINENUMBER%
    password *******
    login %authentication default%
    exit
    And how I want to configure is as follows - 
    line vty 0 4
    password *******
    exit
    Please suggest if there is any way.

    Hi Soniya
    Your're quite correct, in thinking that this might not work. But lucky for you - it does work.
    Simply paste the whole config you need in the ad-hoc tasks and deply it.
    Like this:
    line vty 0 4
    password cisco12345
    login
    That's it, - no need to add "exit" either.
    hope it helps. cheers.
    Pierre

  • Can I configure an external drive to be password protected or do I need to buy an external hard drive already password enabled

    I asked at a Hong Kong apple shop if they had password protected external drives.  They didn't, I bought one anyway.
    I'm wondering can I configure this drive.  If yes, what do I need to do?

    This looks like the easiest and most direct method and since it uses Disk Utility it would work on any OS.
    http://osxdaily.com/2012/01/25/password-protect-external-drive-mac-encrypted-par tition/

  • HT4352 problem sharing iTunes with new Apple TV.(model MD199LL/A. I have iTunes and Apple TV set up with same address and passwords, enabled iTunes and Apple TV for home sharing and still nothing? I have latest iTunes and Apple TV update. Any other sugges

    Have a problem with Home Sharing with Apple TV and iTunes. Have latest iTunes and Apple TV downloads. Have both items set up for home sharing with same address and passwords. AppleTV running fine for everything else. FYI, my library is about 60gigs. AppleTV model is MD199LL/A if that matters. Really want to hear my entire music library and not just Purchased items. Thanks for any help!!!

    I have an older PC with Windows XP Professional on it. I updated to the latest iTunes and I am able to access the photos, etc. on it. However, my Windows 7 PC still does work (since last Apple TV update). Apple TV does not recognize that Home Sharing is turned here. The latter PC has all my current photos on it which I would like share with others on my Apple TV. A fix would be appreciated.

  • Printer wont connect when wep password enabled

    Hi. I've had a HP Deskjet 5850 for many years. It worked perfectly with my D-Link wifi router, it connected wirelessly with no issues. I recently bought an airport extreme, I've reset everything on the printer and it works via ethernet, but it only works via wifi when airport is set for wireless security is set to none. If I assign a password of any sort it won't connect.
    In the printer's admin webpage I've set and reset it for a wep password and it wont connect. Does anyone know if this printer is compatible with airports wep password protection?
    Thanks!

    I created a WEP password, this is what the printer supports. However, even my MacBook had issues logging in with WEP, it would get bumped off the network and then could only log into the my airport extreme's wireless network after a restart... and then it would get bumped off again. So I switched the airport to WPA/WPA2 password and the macbook works fine now, and the connection is faster than it was with a WEP password. Does the AirPort have known issues with WEP?
    Thanks!

  • Import Policy fails after Universal Password enabled

    I apologize if this got posted twice but I cannot see my first posting.
    My problem is as described in the TID below:
    http://support.novell.com/cgi-bin/se...?/10089544.htm
    My NMAS version meets the criteria as stated in the TID.
    We are running NetWare 6 SP5 with ZFD4.1 and after configuring the
    Universal Password Policy on the container that ZFD objects are
    configured, we get the import error as indicated in the TID.
    Any work arounds other than upgrading to ZFD7 and/or OES?
    Any advice would be appreciated.
    Chris

    Chris,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Do a search of our knowledgebase at http://support.novell.com/search/kb_index.jsp
    - Check all of the other support tools and options available at
    http://support.novell.com.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://support.novell.com/forums)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://support.novell.com/forums/faq_general.html
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Cant access bridge apps with password enabled on my bb

    Im having a problem where i cannot access any bridge apps because my bb is password protected. whenever i attempt to open an app i get an error message saying "bridge disconnected 'password is incorrect. please try again" but it never gives me an opportunity to enter my password. Also the message stay on-screen so the playbook is unsuable unless i restart it by holding the power button.
    pic of error message: http://yfrog.com/hskxgckj

    Try removing the BlackBerry Bridge App from the BlackBerry smartphone and and disable any connections between the PlayBook and BlackBerry smartphone.  Now pair your devices and start the BlackBerry Bridge process from the beginning.  Let me know if that got you anywhere.
    "Lost in space in search of a cosmic gate"
    Momo

  • Meetme conference with password enabled

    We would like to add password to a meetme conference. Believe the current setting in CCMv4.1(3) is not able to support it. Any workaround for the solution? Thanks.

    There are a few options, even in CCM 3.3.
    Take a look at the thread at:
    http://forums.cisco.com/eforum/servlet/NetProf?page=netprof&forum=Archive&topic=Voice%20and%20Video&CommCmd=MB%3Fcmd%3Ddisplay_location%26location%3D.1dda017f
    Let me know if this helps by rating the post.
    Michael

  • Private Browsing doesn't remember passwords and the firefox tab is orange and shows remember passwords enabled. Cannot cancel to restart either. Help.

    I downloaded 8.0.1 and now remember password does not work. I have read everything on the internet, one saying when RP is on the Firefox browser tap would be purple and orange when off. It is Orange and he drop down menu shows Stop Private Browsing but when I do that nothing happens. I deleted and downloaded Firefox again but same problem. Whats the gig...

    In Private Browsing you can't remember new passwords, but currently saved password are still accessible.
    *https://support.mozilla.com/kb/Private+Browsing
    Do you mean names and passwords in the Password Manager or do you mean that you are no longer logged on to (remembered by) websites after closing and restarting Firefox?<br />
    There is a difference between remembering the name and password in the Password Manager and a "remember me" check box on a web page.<br />
    The latter usually involves the creation of a special "remember me" cookie that is stored on your computer and that is send to the server.<br />
    In PB mode all cookies are session cookies that expire if you end that PB session or close Firefox.<br />
    So it isn't possible to have websites remember you and automatically log you in in PB mode.

Maybe you are looking for