Problems with Factory Reset on EPC3925

After performing a factory reset on my router, I am unable to log into the router in order to set up or change my wireless settings.
The default admin/password login does not work (I've tried all combinations), and I am only able to login as a guest user (blank username/password), which does not let me change any settings.
It is also stuck on bridged mode (router page is 192.168.100.1 instead of 192.168.0,1), which I am unable to change both due to both the lack of admin account as well as the fact that the factory resets do not revert it to router/non-bridged mode.
Any help at all on how to log in and change these settings would be very much appreciated -- thanks!

Hi CheshireCat and Welcome to the Cisco Home Community.
The EPC/DPC3925 is an internet service provider (ISP) supported product. In other words you need to contact your ISP or technology reseller that you purchased this from to help you with your question.
However I did a search and found the DPC3925/EPC3925 manual that may help you: http://manual.upc.ro/pdf/epc_3925.pdf
The Search Function is your friend.... and Google too.
How to Secure your Network
How to Upgrade Routers Firmware
Setting-Up a Router with DSL Internet Service
Setting-Up a Router with Cable Internet Service
How to Hard Reset or 30/30/30 your Router

Similar Messages

  • Problem with factory resetting Airport Express

    I am trying to do a hard factory reset my airport express. I want to reset it to the factory default so that I can change the settings so that it connects to my comcast wirless modem. I followed the instructions on the apple support site. I held the reset button will the device was unplugged and then plugged it in while still holding the reset button. I held it until the green light flashed four times. But the stupid thing will not reset at all. Just the same blinking orange light. No green light. And of course, non identifiable on airport admin utility. This is really frustrating. Anyone know how to solve this problem.
    Thanks

    I have the exact problem described by AKAPLG. I've tried EVERYTHING with no good result.
    - My network does NOT show up in AirPort Utility (and even the old Airport Admin Utility)
    - Even after hard reset I can still see the old name of my network but am still unable to join it.
    - I've tried connecting directly with Ethernet to my MacBook Pro, but it is unclear what I'm supposed to do next, the manual doesn't mention this at all. When it's connected I do not see my AX in the AirPort Utility menu when I rescan.
    - The "Factory Reset" described by the booklet that came with the 802.11n device is inconsistent with what I see when I try it. I get a single green blink followed by a long solid yellow (sorry Amber) followed by blinking amber. I never see 4 green blinks, as described.
    This is the worst Apple experience I've ever had. Period. Any more advice please before I take this POS back to the store and trade it for a punch in the ribs or a hot stick shoved in my eye?
    Message was edited by: jpembert

  • [SOLVED] A3500-FL problem after factory reset

    after a hard reset/ factory reset i get boot, but after that , all I see is a black screen with a spinning/ rotating circle in the middle.
    I can acces the notification area, but i cannot acces settings or launcher.
    help, please!
    P.S. i've read everithing about this model and couldn't find a solution. Any help will be highly appreciated
    Solved!
    Go to Solution.

    INCREDIBLE!!!
    the problem was that I was holding the tablet in portret orientation while it boots.
    So, I ACCIDENTALLY keep it in LANDSCAPE mode and, voila! it enters the welcome settings. So easy!
    I hope this will help others

  • Problem with time reset

    Hi everyone,
    I just purchased a lumia 1520 black this weekend. However, I keep having problems with the time and date setting. Whether I use the automatic setting or not, the time keeps resetting a couple times a day to some time on the 20th of july 2013. Even if I reset it, it keeps coming back some time later. As you can imagine this is very annoying. Anyone knows how to resolve this?
    Thanks in advance,
    Bart

    Try a soft reset by holding both the Power and Volume Down buttons pressed until the phone vibrates and restarts. If that doesn't help, I would suggest taking it back to point of purchase or to a Nokia Care Point to have it checked/repaired.

  • Problem about factory reset my iphone 4s

    My boyfriends has very big problem after he try to download iOS 8. He forgot an Apple ID password so he tried to sign up new apple ID and found that iCould still ask about old Apple ID password. He tried to type every but it wasn't work and then it was LOCKED. Unfortunately, his old email was deleted. He can't reset his password and forget about questions for reset password in iforgot.apple.com. Eventually, iforgot.apple.com is also LOCKED. I don't know what should he do? it shows notify that "This apple id has been disabled security reasons".
    Any one can you help me? Thanks for your kindness suggestion

    I found in internet that factory reset can restore everything
              --> I try to reset in Setting> General> reset> Erase all Content and Settings. --> it ask for passcode I type usually passcode that use for unlock screen but it's not work. I don't know why?
              --> I try to use reset via iTune but it asked me to close "Find My iPhone" first. But I can't because, I don't know password for iCound .

  • Problems with Factory pattern

    Sorry... I know this topic has been done to death but I still have some questions.
    In my development, I keep encountering a recurring problem that I believe should be solved by the 'factory pattern'. (Note: I'm not a patterns nut so I am only guessing about the correct pattern).
    Here is the problem:
    I develop an abstract base class. I extend the base class with several subclasses. Exterior objects use the instances via a base class reference and I don't want to them to have to know which is the correct subclass or how to create the instance.
    My solution is to make a create(param, param,...) method in the base class and using the param(s) construct the instance something like:static Foo create(int type)
    Foo instance = null;
    String className = "com.myco.foos.DefaultFoo";
    if(CONST_A == type)
      className = "com.myco.foos.FooA";
    else if(CONST_B == type)
      className = "com.myco.foos.FooB";
    {on and on...}
    {using reflection create a new instance from the className String}
    return instance;
    }The obvious problem with the create() method is that it becomes a maintenence point and I don't like the idea of a base class knowing about subclasses.
    Anyone know better a solution? Comments?
    Thanks in advance.

    Yes, that is the Factory pattern you describe. The client programs are going to call your createFoo() method and get back an instance of a subclass of Foo. Typically this pattern is used where there is some external entity that determines what subclass will be returned -- for example a system property -- and the client programs call createFoo() with no arguments. In this case reflection is used to create the instance, and your base class does not need to know anything about any subclasses.
    However, if your client programs can influence the choice of subclass, then they will have to pass some kind of parameter into createFoo(). At this point, createFoo() requires some decision logic that says "create this, or that, depending on the input parameter". And if that parameter is simply a code that enables the client programs to say "Give me a ChocolateFoo instance", then returning "new ChocolateFoo()" is the most straightforward design. But in this case, why can't the client program do that?
    If you don't like the base class having to know about subclasses (and you shouldn't be happy if it does), then you could have a helper class -- FooFactory -- that contains only the static method createFoo(). This class would know about Foo, and about any of its subclasses that it can produce instances of. It's still a maintenance point, no avoiding that, but at least it is off by itself somewhere.

  • Problems after Factory Reset (Os X 10.8.5) (Quicktime)

    I've been having problems with my wi-fi and problems with my Macbook Pro shutting off and not wanting to power on over the past few weeks.  So, today I did a factory fresh install of my OS.  I noticed a problem with Quicktime videos stuttering when I maximize or minimize the video.  It only does it during that task.  I can fast forward it or rewind it without problems.  My wi-fi seems to be back to normal, but my Thunderbolt to Ethernet adapter is quite slow.  Not sure why..  Other than that, everything seems to be fine.  Starts up and shuts down good, and doesn't shut off randomly.  The Quicktime issue is not a huge one, but very annoying and I was wondering if anyone else has experienced this.  I am a DJ and I like to preview all of the videos I get. 
    My laptop is
    -2.3 quad i7
    -8 gb ram
    -1 gb gt 650m

    Can't remember if the Display menu bar icon was removed in Mountain Lion like it is in Mavericks, which makes it harder to switch between Extended Desktop and Mirroring.
    First try going to Apple > System Preferences > Displays > Display tab and see if checking "Show displays in the menu bar" is still available..?
    If it is, then you should still be able to select between Extended Desktop (Mirroring Off) and Mirroring On from the menu bar or by opening the Display Preference from there.
    If it is not, try > Mac App Store - Display Menu which will give you the Mirror Displays option on your menu bar.

  • Problems with itunes resetting

    i have had itunes for about 2 years and have not had one problems with it. i have not downloaded and new itunes software. for some reason this started a couple days ago. every time when i close out of it, it resets everything. i have to add all the music again from the itunes folder, but it resets it every time. once i restarts it will ask me to agree to the software license agreement. i have tryed to uninstall itunes, and then reinstalled it, but that did not do any good. any ideas on what it could be?
    btw if it matters i have windowsXP pro.

    I didn't say it had anything to do with the music itself. What I said was it sounds like iTunes can not write to the folder where it keeps the database files that store all the info about your library INCLUDING about podcasts.
    Anything you do in iTunes is stored in that database file. Which songs, movies, and podcasts are in the library, play counts, date added, ratings, playlists, etc. If you start with an empty library, add a bunch of stuff to it (including podcasts) then exit iTunes and it can not write that information to the database files, next time you open iTunes it will show an empty library again.
    So again, while this might not be the issue you are having, have you checked the read/write permissions of the iTunes folder? Make sure the folder is not read only and make sure your user account has access to it under the security tab.
    Patrick

  • Probleme beim Factory Reset, Miix 2 - 8

    Hi,
    ich habe das Lenovo Miix 2 - 8, 32 GB, seit Juni im Einsatz und auch bereits einmal erfolgreich den Factory Reset durchgeführt. Jetzt wollte ich es wieder machen und nach dem anwählen im Bootmenü soll ich einen Windows Datenträger einlegen, da Dateien fehlen?
    Habe auch Versucht über Windows den Reset zu machen, gleiches Ergebnis, benötigt Daten-CD.
    Ich habe die Partitionen definitiv nicht verändert oder angelangt, sind alle 5 noch da.
    Einziger Unterschied ist, dass ich auf Windows 8.1 upgedated bin. 
    Gibts da noch was zu beachten bzw. wo kann das Problem sein?
    Ich habe mir noch einen USB Stick bestellt (mikro) zum direkten anschließen. 
    Ich wollte mal versuchen die 5. große Partition sichtbar zu machen, um dann über Windows einen Wiederherstellungsdatenträger zu erstellen. Dann booten und hoffentlich wird der Stick angezeigt.
    Trotzdem blöd, kann ja eigentlich nicht sein. Kann ich sonst noch was tun? testen?
    Wäre das ein Garantiefall?
    Gruß
    Hans

    Hi,
    I have the same issue... I can't play any game without come back to start unexpectedly.
    Did you ever fix it?
    Thanks

  • IOS 7 upgrade problem forced factory reset

    I decided to try IOS 7 on my iPad 2. That was a huge mistake! After several attempts to download, it finally completed. The Install button was finally active, so I tried to install, and it indicated that the update was not available. I tried this several times with no luck. Finally I decided to try it from the PC. I loaded iTunes and saw that there was an IOS software update available, but in order to do that I had to upgrade iTunes to 11.1. Well, the Download iTunes Update button clicks but doesn't actually do anything. I eventually wound up just going to iTunes and downloading it again. It went through the install and finally updated.
    So I connected the iPad and it tried to load the IOS 7 update. In the middle of that iTunes just closed, no errors, nothing. Opening it back up, it tells me I must reset my iPad to factory settings. At this point I'm boiling, but I went ahead with it because I figured I would be able to just restore from a backup, which I fortunately created before all of this started.
    Well, iTunes was able to load the IOS 7 update on the iPad, but after it restarted from the factory reset, things have once again taken a turn for the worst. Now when I connect the iPad, it tries to access iTunes store, and tells me it can't, and to check the network and try again. Everything else that I do online is working fine from the PC so I know it's not that, but I restarted anyway. No change.
    So now I have an iPad 2 with IOS 7 in factory reset state, that I can't restore from backup or even get connected in iTunes. I only bought this iPad in the last month, so I supposedly have 90 days support from Apple, but every method I try to get support for it is either to send it in or take it to an Apple store. This is a nightmare. What should I do?

    My iPad 3 downloaded ios7, rebooted, started to execute the installation (same as my iPhone did).
    Then it got hung up half way through the execution.
    Have stared at the boot screen with a bar showing half-loaded for 12 hours.
    Several times tried hard reboot. Keeps getting stalled at half way.
    About to turn it into a discuss and throw it into the ditch!!
    Whiskey Tango Foxtrot!!

  • Time capsule setting up problem after factory reset

    What's the next step after factory reset to set up my time capsule again???
    i did factory reset for 4-5 times and i cant use my time capsule to create a network, join an existing network or anything else.
    i also tried normal reset but still nothing can be done.
    There is always a message at the end " an unexpected error occured. Try again"

    Plug the TC into the computer by ethernet..
    Make sure the computer has no other network running and nothing else is plugged into the TC.. just TC Lan port to the computer ethernet.
    Now press reset and open airport utility.
    Generally you will have no issue once it is isolated. Do the setup and then you can disconnect and put it back in the network.
    If it doesn't work, is the LED on the TC flashing amber or what??
    Is the ethernet port connectivity LED on?

  • Vista problems with iPod reset utility

    I can't even run the installation program. I keep getting a message saying that "iPod Reset Utility requires that your computer is running Windows 2000 or Windows XP".
    My OS is Windows Vista. Anyone have any solutions? Many thanks...

    LeeGalaxy,
    The minimum system requirements for the utility are as stated in KB 305204
    http://docs.info.apple.com/article.html?artnum=305204
    System Requirements
    - Windows 2000 with Service Pack 4, Windows XP with Service Pack 2**
    **iPod Reset Utility 1.0 is not supported for use with Windows Vista.
    That said, some have had success, in using iTunes with Vista.
    However, this article lists some important information on that configuration:
    http://docs.info.apple.com/article.html?artnum=305042
    And you may be able to use iTunes to setup your iPod. Have you tried that?
    Or were you attempting to use the iPod Reset Utility, as described in KB 305204, to solve one of these symptoms:
    - iPod will not play music, and cannot be restored using iTunes.
    - iPod is not recognized by iTunes, but is visible in My Computer or in Device Manager on a Windows PC, or in Apple System Profiler on a Mac.
    - iPod shuffle (1st Generation) is identified as a device in "Recovery mode."
    - iPod shuffle (2nd Generation) is identified as a "USB DFU device."
    If not, you may find this helpful:
    Restoring iPod shuffle to factory settings
    http://docs.info.apple.com/article.html?artnum=300701
    Just to confirm, it is my understanding you have the iPod shuffle (First Generation), correct?
    Hope this helps,
    Generik
    Dual 2.3 GHz PowerPC G5   Mac OS X (10.4.8)  

  • I cannot turn it on!!!n97.(problem with hard reset...

    hi guys..this is my **bleep** prob..i had a n97..the problem is it wont start at all...ive tried the hard reset but it wont work as it could be..ive tried a million times to hard reset but it still cannot..the phone only stuck at the Nokia..then it stuck there forever until i get this problem solved..is they anyone that has any ideas about this thing..??

    Erm.. I'm not quite with you johnjoel. From what I understand, the problem isn't sorted at all??
    First, What was the inital problem, and when did it occure? - Did you install anything on it before it happened? Did you upgrade the fw?
    Anyway, your phone's stuck on the boot screen. Usually there's nothing more to do other than take it to a Nokia care point as mccoy did, if the hard reset fails.
    But do you have a memory card installed? If yes; pull it out and try another hard reset. if it works, you will most likely have to format the memorycard.
    If you don't have a memorycard installed or the trick doesn't work; leave the memorycard outside the phone and pull out the sim-card too. Try another hard reset. - If the phone boots without it, but fails to boot with it, even when you've just performed a successfully hard reset, I would try another simcard if you have one spare. - If the phone does not work with that simcar either, you will have to take it to a Nokia care point.
    If i did misunderstand you, and you have sorted it out, let me know by posting here, and I will remove this.
    If youre not sure if you do the hard reset correctly; let me know.
    Cheers.

  • Problems with Factory CXmlCtx, xmlnode class on Solaris

    Hi,
    I am using Oracle 10g XDK and Iam facing the following problem in Solaris (this works fine in IBM AIX and HP-UX).
    CXmlCtx* ctxp = new CXmlCtx();
    Factory< CXmlCtx, xmlnode>* fp;
    fp = new Factory< CXmlCtx, xmlnode>( ctxp);
    parser->domparser = fp->createDOMParser(DOMParCXml, NULL);
    The code dumps a core at the 4th line (createDOMParser) function. The code was compiled with SunWSPro compiler /opt/SUNONE8/SUNWspro/bin/cc.
    Any pointers to the resolution of this issue will be appreciated.
    Thanks

    Yes, that is the Factory pattern you describe. The client programs are going to call your createFoo() method and get back an instance of a subclass of Foo. Typically this pattern is used where there is some external entity that determines what subclass will be returned -- for example a system property -- and the client programs call createFoo() with no arguments. In this case reflection is used to create the instance, and your base class does not need to know anything about any subclasses.
    However, if your client programs can influence the choice of subclass, then they will have to pass some kind of parameter into createFoo(). At this point, createFoo() requires some decision logic that says "create this, or that, depending on the input parameter". And if that parameter is simply a code that enables the client programs to say "Give me a ChocolateFoo instance", then returning "new ChocolateFoo()" is the most straightforward design. But in this case, why can't the client program do that?
    If you don't like the base class having to know about subclasses (and you shouldn't be happy if it does), then you could have a helper class -- FooFactory -- that contains only the static method createFoo(). This class would know about Foo, and about any of its subclasses that it can produce instances of. It's still a maintenance point, no avoiding that, but at least it is off by itself somewhere.

  • Problems with cookie reset.

    I have set cookies to block from third parties and advertisers, but every now an then it happens that Safari Preferences resets to Always. This happens sometime when I restart Safari or even after a longer time in Safari. No Idea what triggers the change, but it is quite annoying.
    Any ideas how to get it solid? The problem started in SL and is still present in Lion....

    Hey treman03,
    You should have received a microSD card or USB drive with the recovery image on it when you purchased the tablet. 
    If you no longer have this you can order the USB recovery here: Order software and driver media. You can also order by phone by calling HP phone support. You can call our technical support at 800-474-6836. If you live outside the US/Canada Region, please click the following link to get the support number for your region: Phone Assist Worldwide.
    Thanks.
    Please click the "Kudos, Thumbs Up" at the bottom of this post if you want to say "Thanks" for helping!
    Please click "Accept as Solution" if you feel my post solved your issue, it will help others find the solution.
    The Great Deku Tree
    I work on behalf of HP.

Maybe you are looking for

  • How to create a new field in CL01?

    Hello people! We have created a new field in CI_KLAH include in KLAH table. But now I would like to show this field in CL01, CL02 an CL03. I looked for screen exit but there is no... Do you know how can I display this field? Thanks a lot!

  • Ipad 2 as a present.

    My mom has mentioned she wants an ipad 2, so I decided I ll buy her one but Im not sure what size to get her. She says she would want to watch movies and tv shows, have some music ( Im not sure how much. On her last ipod nano she didnt have much.). S

  • Deployment username and password for LDAP & Jdeveloper 9i

    Ok -- I finally got 9iAS R2 up and running and now I'm trying to connect with JDeveloper 9i. By default, my installation changed the JAZN security provider to LDAP (from what I see). The first problem was/is that the client didn't connect using the d

  • Dbms_advanced_rewrite to return a new date

    Is there a way to offset the database date by a given amount of months/days/years so that when the sysdate is queried, it returns a date which equals the current date+the offset? This has to be done without changing the server's OS date. I'm trying

  • Ask your help!

    We have Windows 2008 R2 clustering with two SQL clustered resources.  Windows cluster object and two SQL clustered resources are updated dynamically in DNS.  But, the SQL CNO is not updated in DNS and we constantly get errors 1579 and 1196 failovercl