Default Confuguration to load

Hello Everyone,
I have cisco router 871 series.IT is configured with username and password.
And i dont know the password to log into Router.
I want to load the router to the default configuration.or want to erase password.
How can i do this?
Can any one give me solution for this?
Any kind help will be highly appreciated.
Thanks,
Bharat.

Hi Steve,
Thanks for yr reply.but in the router configuration it is not showing any registor value.
Here i am copying the details when i boot up the router.
Cisco IOS Software, C870 Software (C870-ADVSECURITYK9-M), Version 12.4(6)T2, REL
EASE SOFTWARE (fc1)
Technical Support: http://www.cisco.com/techsupport
Copyright (c) 1986-2006 by Cisco Systems, Inc.
Compiled Tue 16-May-06 17:41 by kellythw
Image text-base: 0x8002008C, data-base: 0x81639198
This product contains cryptographic features and is subject to United
States and local country laws governing import, export, transfer and
use. Delivery of Cisco cryptographic products does not imply
third-party authority to import, export, distribute or use encryption.
Importers, exporters, distributors and users are responsible for
compliance with U.S. and local country laws. By using this product you
agree to comply with applicable laws and regulations. If you are unable
to comply with U.S. and local laws, return this product immediately.
A summary of U.S. laws governing Cisco cryptographic products may be found at:
http://www.cisco.com/wwl/export/crypto/tool/stqrg.html
If you require further assistance please contact us by sending email to
[email protected].
Installed image archive
Cisco 871 (MPC8272) processor (revision 0x200) with 118784K/12288K bytes of memo
ry.
Processor board ID FHK1024201T
MPC8272 CPU Rev: Part Number 0xC, Mask Number 0x10
5 FastEthernet interfaces
128K bytes of non-volatile configuration memory.
24576K bytes of processor board System flash (Intel Strataflash)
%NAT: Error activating CNBAR on the interface FastEthernet4
%NAT: Error activating CNBAR on the interface Vlan1
Press RETURN to get started!

Similar Messages

  • Default photo down loader

    How can I get iPhoto to be the default imaging application to down load pictures from email?
    I right click on the picture and get a menu that gives me the following choices:
    Open Attachment, Open With (arrow link), Save Attachment, Save to downloads Folder, Save As Icon.
    If I click on the Open With, I'm presented with a a list that includes various imaging apps (PhotoShop Elements, Graphic Converter, Preview, etc.) But no iPhoto. If I want to download it there, I have to click on Other, which presents the whole list of Applications. I then gave to scroll down that list to open iPhoto.
    I have many friends that send pictures via email that I want to add to my library. How can I get the iPhoto to be shown in that first default list?

    Hello. Just click on the image in your email and drag it to the iphoto icon in your dock.
    David.

  • Default namespace problem loading XML

    I am loading multiple rss/xml file. For some of them I have to use namespace (atom feeds)
    so I write this lines
    var atom:Namespace = new Namespace("http://www.w3.org/2005/Atom");
    var rssXML:XML = new XML();
      default xml namespace = atom;
    I test this in a outside my program but when I integrate this into my main program, it seem like it 's in conflict with all other xml
    the problematic line is :    default xml namespace = atom
    How do I set a namespace only for one xml object ?????
    I try diferent way, but didn't get nowhere
    thanks

    You can declare namespace per XML (but do so before you create XML object):
    var namespace1:Namespace = new Namespace("http://www.w3.org/2005/Atom");
    default xml namespace = namespace1;
    var xml1:XML = <xml1 /> ;
    trace(xml1.namespace());
    var namespace2:Namespace = new Namespace();
    default xml namespace = namespace2;
    var xml2:XML = <xml2 /> ;
    trace(xml2.namespace());
    var namespace3:Namespace = new Namespace("http://www.example.com/schema");
    default xml namespace = namespace3;
    var xml3:XML = <xml3 /> ;
    trace(xml3.namespace());
    Trace
    http://www.w3.org/2005/Atom
    http://www.example.com/schema
    Kenneth Kawamoto
    http://www.materiaprima.co.uk/

  • How to use default route achieving load-balancing?

    show me an example
    thanks

    Hi Friend,
    If you have 2 default route with same admin distance you can have equa load balancing.
    Something like this
    ip route 0.0.0.0 0.0.0.0
    ip route 0.0.0.0 0.0.0.0
    Now because these 2 default routes have equal admin distance so both will be peferred and will result into equal load ballancing.
    HTH, if yes please rate the post.
    Ankur

  • Mac Open With will not change default after CS5 Load

    I needed to keep CS4 as my "working" copy of InDesign since all others in our office use it.  When I loaded CS5, it defaults to opening all of my files on my Mac.  I want to open the files in CS4 when I double click them.  I know I need to change this in the Info pane, but it keeps reverting to CS5 as the default (yes, I unlocked it also).  Is CS5 doing something to lock the file type?  It's just a pain to right click and open with on every file I open.
    Any help appreciated... FYI, very experienced user (not novice) but stumped on this one.  Actually tried downloaded software also, no go.
    Not sure I like this.

    You could probably get by with RC Default apps too if you just want to make one version of indesign be the default. Soxy looks like it can do a lot more.
    http://www.rubicode.com/Software/RCDefaultApp/
    It's pretty darn good and also great for keeping preview's fingers off your files. Never used Soxy, but there is a similar product in JoJo by the guy who makes up for QuarkXPress' pathetic inability to export a competent pdf of multiple eps files without hitting "save as eps…" 400 hundred times in a catalog. If you have just a handful of people JoJo may be a better solution, or at least one to consider. It is only available as a 4 seat minimum order for 29 euros.
    http://www.jolauterbach.com/products/jojo.htm

  • Using the vanilla/default preloader to load additional assets?

    I have a Flex application that automatically loads the SWF and it's contents and displays the default progress bar like in all Flex apps. Currently I have a class in the application using a Loader instance to load a few external bitmaps to be added to the stage/canvas as well as an MP3. I'd like to handle the loading of these assets in the Flex default preloader and get rid of the Loader instance entirely.
    How can I do this?

    At least for the images, and perhaps for the sound, you need to not use loader, and instead embed the assets, because if loader is used the assets load at the same time as the SWF, which is too late.
    So in the createChildren method you override when you override DownloadProgressBar:
    //global var
    [Embed("Logo1.png")]
    [Bindable] public var logoCls:Class;
    private var logoDO:DisplayObject;
    // in createChildren() method
    logoDO = new logoCls();
    logoDO.x = (stageWidth/2)-(borderRect.width/2)+_logoX;
    logoDO.y = (stageHeight/2)-(borderRect.height/2)+_logoY;
    addChild(logoDO);
    If this post answers your question or helps, please mark it as such.
    Greg Lafrance - Flex 2 and 3 ACE certified
    www.ChikaraDev.com
    Flex / AIR Development, Training, and Support Services

  • Webpart connection - possible to have no default choice on load? (i.e. show all)

    For a Blog sub-site it might be beneficial to show all posts on load (actually I think this is the out of the box behavior).  Modifying the Categories webpart to limit the total number of items shown seems to have broken this behavior for us so we're
    trying to use webpart connections as a filter; however, on load webpart connections seems to default to 1st row selected. 
    Is it possible to load without anything selected?  (i.e. show all blog posts)

    The partial answer is the following.
    Under Miscellaneous: 
    Uncheck > "Send first row to connected Web Parts when page loads"
    This solves the problem of the first row defaulting as the filter value; however, the default view is now that only items that have no category show (instead of the preferred behavior of showing all items).

  • Defaulting values SQL Loader

    Hi All ,
      I have a use case in sql loader where in i have two columns A and B in a Table.
       My Use case for control file is to get B from csv ( which is a mandatory column)  . A is optional in CSV . if A is populated take that value for A . If not default if from B.
      Thing i have tried is :
    B                        ,    
    A  EXPRESSION : "NVL( :A, :B) " ,
    This is failing saying that
    Invalid bind variable A in SQL string for column A.
    Any ideas ? I know we could define a function. . But any better way to do with control files itself ?
    Thanks,
    Bibin

    Remove the word EXPRESSION.
    SCOTT@orcl12c> host type test.csv
    bval1,aval1,
    bval2,,
    SCOTT@orcl12c> host type test.ctl
    load data
    infile test.csv
    into table a_table
    fields terminated by ','
    trailing nullcols
    (b,
    a "nvl (:a, :b)")
    SCOTT@orcl12c> create table a_table
      2    (b  varchar2(5),
      3     a  varchar2(5))
      4  /
    Table created.
    SCOTT@orcl12c> host sqlldr scott/tiger control=test.ctl log=test.log
    SQL*Loader: Release 12.1.0.1.0 - Production on Fri Nov 15 13:46:40 2013
    Copyright (c) 1982, 2013, Oracle and/or its affiliates.  All rights reserved.
    Path used:      Conventional
    Commit point reached - logical record count 2
    Table A_TABLE:
      2 Rows successfully loaded.
    Check the log file:
      test.log
    for more information about the load.
    SCOTT@orcl12c> select * from a_table
      2  /
    B     A
    bval1 aval1
    bval2 bval2
    2 rows selected.

  • Make default sliding panel load first

    Hi,
    I am using SpryURLUtils to link directly to certain sliding panels on a page, so for example:
    mysite.com/thepage.html?panel=3
    sets the 3rd panel (working from 0 of course) on that page to be displayed by default.
    The only problem here is that panels 0,1 and 2 still get loaded before 3 by the browser because they come first in the page structure, and as a result panel 0 is being displayed until panel 3 has been loaded, after which it 'jumps' to panel 3, which doesn't look too smooth and I think could confuse the user. Each panel on my page has a background image specified in CSS rules in the header of the page.
    What I want is for panel 3 (in this example) to be displayed straight away. I assume the problem may lie partly with the fact the widget constructor code (shown above) where the default panel is specified is located beneath all the page content, but I can't think of a way around this.
    Does anybody have any ideas?
    Thanks

    I solved this way:
    <body onLoad="myPanelsSlides('slide2');"/>
    Thanks

  • Is it possible to Override Flex Default behaviour of loading Images on mouse scroll over ??

    Hi ,
    I am displaying Images on to a DataGrid .
    This works fine .
    My question is that  ,  Flex 3 is not loading all the Images at once , its loading Sometimes on mouse scroll down on a
    browser and sometimes on Mouse down .
    I dont want to have this behaviour , is it possible to override such behaviour and load all the Images at once ??

    Hi,
    What has been going wrong with your post ? You can use external USB sound card for your laptop. Here are few of them:
      http://www.shopbot.com.au/external-sound-card-usb/​price/australia/582295
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Default State Not Loading as Home Page

    Just like the title reads, my default state is not displaying as my home page.
    I can't seem to figure it out, a seemingly random state is appearing at the default state.
    Any sugestions???
    Thanks,
    Joshua

    That might be a part of the problem, I am VERY new to programming, I am very much from the design side of the world.
    I honestly don't know how to look through the code and be able to tell.

  • "Easy" way to add a text string Flex default pre-loader?

    Is there an easy way to add text (company name for example) to the top of the default Flex pre-loader?
    Thanks.

    Sure,
    http://www.flexer.info/2008/02/07/very-first-flex-preloader-customization/
    Johnny
    Please rate answers.

  • Shipping point not defaulting loading group for materials

    Hello all,
    I would like to know how to set up a particular shipping point defaulting to particular loading group for certain group of materials. would this change has to be done manually in the material master or is there any customizing changes that has to be done for this change.
    Thanks,
    Maxx

    Maxx,
    This sounds like standatd Shipping Point Determination.
    1. Create a Loading group for your material
    > Logistics Execution > Shipping > Basic Shipping Functions > Shipping Point and Goods Receiving Point Determination > Define Loading Groups
    2 Assign that new Loading Group to your material(s)
    > Tcode MM01, MM02
    3. Assign combination of Shipping condition, Loading Group, Plant, & the desired Shipping Point
    > Logistics Execution > Shipping > Shipping Point and Goods Receiving Point Determination > Assign Shipping Points

  • How to prevent IE9 new tab loading default homepage?

    I configured IE9 default home with domain GPO to enforce default homepage on all PCs. However, a default homepage is loaded whenever my users click on 'New Tab' next to homepage tab, the default homepage is loading. Is there a way to open a 'Blank Page
    or Bing' when users click on 'new tab'? Thanks.
    Thang Mo
    I figured it out in IE 9 General tab setting, now please help me how to set it in GPO, thanks.

    Hi,
    Thanks for your feedback and sharing your
    solutions and experience here. It will be very beneficial for other community members who have similar questions.
    Karen Hu
    TechNet Community Support

  • Load Balance reference to be default server in connection wizard

    We have a multi server environment (3 web servers - load balanced) and database and OLAP on separate servers.
    BPC 7.5 Microsoft SP6
    Servers 2998 R2
    I am able to use the fully qualified load balance reference successfully, however, I would prefer to always default the load balance reference and not server 1, 2 or 3 as a default value in the connection wizard for my user communiity? What is the correct changes to ServerInfo to make the load balance the defatul reference?
    I have attemtped to updated the server info in 6 places on a server to reference the load Balance reference.It works, but I want to default this value for all users. Is there another reference besides the items below that need updating
    1) Reporting Services instance name,
    2) Reporting Services external server name
    3) Application Server external server name
    4) Application Server virtual server name
    5) Web Server name
    6) Web Server Virtual Name
    Thanks for the insight

    Hi William
    You can remove the references to the other servers. For example AppServer2, AppServer3
    Backup the Appserver database first before making any changes, in the table AppServer.dbo.tblServerInfo you can remove the entries AppServer2, AppServer3. You will need to ensure that the Virtual IP (Loadbanced FQDN) is valid for AppServer1, etc
    The client reads the configuration values from multiple tables, but in the table AppServer.dbo.tblAppSetInfo it can only make reference to one value in the column. For Example: AppServer1, ReportServer1, etc
    So in the end, you would only need values for AppServer1, ReportServer1, OLAPServer1, WebServer1,SQLServer1, etc
    That is how you would always default to the load balanced configuration values.
    Hope this helps
    Kind regards
    Daniel

Maybe you are looking for

  • Adobe Digital Edition

    How can I download Adobe Digital Editions on any of my Palms. I have Z22, T|X and Centro. I can download library books to the Adobe Digital Editions on my computer but can't figure out how to get this onto my palm. Instructions say you have to regist

  • Interface ABAP Proxy - File - Synchronous - (Is it possible???)

    Hi Experts, I want execute ABAP Proxy which will create File in FTP. On final, i need return "OK" information to the ABAP Proxy. Is it possible? ABAP Proxy <-> File Synchronous? Without BPM and Custom Module Adapter. Just using RequestResponseBean???

  • Unable to deploy ADF app from Jdev 10.1.3.3 to OAS 10.1.3.1

    Dear colleagues, I'm deploying my app from JDev 10.1.3.3 to OAS 10.1.3.1. And it is driving me crazy, my application is a J2EE ADF application. When I try to deploy I'm getting the following errors: I've tried everything during days, but still I'm no

  • LR3 Watermarks - Now they work, now they don't.

    I continue to have trouble getting watermarking to work consistently in LR3. I thought maybe it had to do with permissions in certain folders, or maybe a LR setting I don't know about that I need to change. But it just seems strange how it works some

  • Using Multiple OS's

    I am about to receive my new MacBook Pro C2D. I am planning to run WindowsXP on it. I am mainly going to be using OSX though, so I was thinking, the best option for me, is to probably partition my HDD so that it's approx: 30Gb Windows NTFS 70Gb MacOS