Geekzone: technology news, blogs, forums
Guest
Welcome Guest.
You haven't logged in yet. If you don't have an account you can register now.


iamsammajor

379 posts

Ultimate Geek
+1 received by user: 27

Lifetime subscriber

#245124 19-Jan-2019 22:36
Send private message

Help with reseting edgerouter lite please.

I couldnt not login the router throught 182.168.1.1

I did manually set my pc ip to 192.168.1.2 and router to 192.168.1.1

Search online said hold the reset key to reset. The led on eth2 will go from flashing to steady. Then reset will began. The light never go flashing.

How else i can reset the router. Anyone can help me please...

Thanks
Sam

Create new topic
Aredwood
3885 posts

Uber Geek
+1 received by user: 1749


  #2163894 19-Jan-2019 23:24

Get a console cable, connect it to your computer and see what happens when it boots. (Or just cut up a patch cable and make one, same pin out that Cisco routers use).

My first Edgerouter died due to a failed flash memory drive. Boot loader started just fine, but would hang with read errors from the card.







AKLWestie
650 posts

Ultimate Geek
+1 received by user: 115

Trusted
Lifetime subscriber

  #2163984 20-Jan-2019 09:35
Send private message

I had a similar issue a few years back, as @Aredwood said, the flash memory of the ERLite was dead.

 

Inside the ERLite, the flash memory is actually a 2GB or 4GB flash drive.  I opened up the ERLite and checked the physical dimensions of the original flash drive and bought a new USB drive that can fit, and flashed the new drive with an updated firmware.

 

You can google it and find some instructions about it.

 

Unfortunately the original flash drive of the ERLite is pretty bad (a known problem).


iamsammajor

379 posts

Ultimate Geek
+1 received by user: 27

Lifetime subscriber

  #2164023 20-Jan-2019 11:39
Send private message

Aredwood: Get a console cable, connect it to your computer and see what happens when it boots. (Or just cut up a patch cable and make one, same pin out that Cisco routers use).

My first Edgerouter died due to a failed flash memory drive. Boot loader started just fine, but would hang with read errors from the card.


Rj45 to rj45 or Rj45 to dp9?



iamsammajor

379 posts

Ultimate Geek
+1 received by user: 27

Lifetime subscriber

  #2164024 20-Jan-2019 11:40
Send private message

AKLWestie:

I had a similar issue a few years back, as @Aredwood said, the flash memory of the ERLite was dead.


Inside the ERLite, the flash memory is actually a 2GB or 4GB flash drive.  I opened up the ERLite and checked the physical dimensions of the original flash drive and bought a new USB drive that can fit, and flashed the new drive with an updated firmware.


You can google it and find some instructions about it.


Unfortunately the original flash drive of the ERLite is pretty bad (a known problem).



I cracked open and change the drive. And trying to find a console cable or buy one on a sunday.......

iamsammajor

379 posts

Ultimate Geek
+1 received by user: 27

Lifetime subscriber

  #2164352 20-Jan-2019 17:58
Send private message

found a way to flash the new usb driver without console cable, now the router is brought back to life. thanks everyone for your help.

 

 

 

thanks,

 

S


iamsammajor

379 posts

Ultimate Geek
+1 received by user: 27

Lifetime subscriber

  #2164505 21-Jan-2019 06:50
Send private message

the new usb is now dead, i gave up fixing, it might be something else rather than the storage.

 

after i fix it and put in all the configure, it works well for about 10 hr, then i found error 500 when i try to login.

 

maybe it is time to have a new router.

 

 


 
 
 

Shop now at Mighty Ape (affiliate link).
mentalinc
3384 posts

Uber Geek
+1 received by user: 1023

Trusted

  #2164508 21-Jan-2019 07:12
Send private message

Mine just died. but was the power supply (died around the 2 year old mark)

 

 

I had a spare edge router x so used that power adapter...




CPU: AMD 5900x | RAM: GSKILL Trident Z Neo RGB F4-3600C16D-32GTZNC-32-GB | MB:  Asus X570-E | GFX: EVGA FTW3 Ultra RTX 3080Ti| Monitor: LG 27GL850-B 2560x1440

 

Quic: https://account.quic.nz/refer/473833 R473833EQKIBX 


iamsammajor

379 posts

Ultimate Geek
+1 received by user: 27

Lifetime subscriber

  #2164510 21-Jan-2019 07:14
Send private message

mentalinc: Mine just died. but was the power supply (died around the 2 year old mark)

I had a spare edge router x so used that power adapter...


mine has to be storage related tho. Just could not figure what ia causing it. Glad you have a spare as backup lol.

fe31nz
1294 posts

Uber Geek
+1 received by user: 423


  #2165076 22-Jan-2019 04:36
Send private message

I have had the power adapters for both my ERLs die, so check if that is the problem.  Jaycar has a compatible one - just check the label on the adapter for the correct specifications.

 

When setting things up in an Edgerouter, if you are doing something that will write data, you must ensure that you are not getting it to write to the USB storage.  For example, if you run tcpdump and store the results, and you do that to the USB, it will die rapidly.  USB sticks are not built for frequent small write operations - they wear out.  Just a few days of operating with writes to the USB stick is enough to kill it.  In my ERL, I use /var/log as a good place to write things to, as it is on a ramdisk.  But anything written to RAM will be lost on a crash or reboot, so it you want to write data and keep it across a reboot, then you need to send it to another box for storage.  For example, you can send log messages to an external syslog server.  If you need something more than just messages, you can pipe the data to another box using standard Linux piping techniques.


iamsammajor

379 posts

Ultimate Geek
+1 received by user: 27

Lifetime subscriber

  #2165085 22-Jan-2019 06:57
Send private message

fe31nz:

 

I have had the power adapters for both my ERLs die, so check if that is the problem.  Jaycar has a compatible one - just check the label on the adapter for the correct specifications.

 

When setting things up in an Edgerouter, if you are doing something that will write data, you must ensure that you are not getting it to write to the USB storage.  For example, if you run tcpdump and store the results, and you do that to the USB, it will die rapidly.  USB sticks are not built for frequent small write operations - they wear out.  Just a few days of operating with writes to the USB stick is enough to kill it.  In my ERL, I use /var/log as a good place to write things to, as it is on a ramdisk.  But anything written to RAM will be lost on a crash or reboot, so it you want to write data and keep it across a reboot, then you need to send it to another box for storage.  For example, you can send log messages to an external syslog server.  If you need something more than just messages, you can pipe the data to another box using standard Linux piping techniques.

 

 

 

 

the new usb is dead same as the old one, could read part of it from PC, but error during formatting.

 

i gave up on the idea of changing USB, had killed three usb so far, it is not worth doing it if i dont know how.

 

has gone back to fritz box until i found a replacement,


Aredwood
3885 posts

Uber Geek
+1 received by user: 1749


  #2165599 22-Jan-2019 17:39

I had the same problem of not being able to get another USB thumb drive working. The ERL boot loader kept on failing to detect the new drive. But the new drive would work just fine in Windows. Maybe the issue is similar to the Winmodem problem from back in the dialup days. Where cheaper dialup modems used the host computer to carry out some processing functions. And such modems wouldn't work in DOS, Linux etc.

I solved the problem by just buying a new ERL.

I still have the old one, so hoping to eventually find a drive that works. And get that ERL going again.





 
 
 
 

Shop now for Dell laptops and other devices (affiliate link).
michaelmurfy
meow
13579 posts

Uber Geek
+1 received by user: 10910

Moderator
ID Verified
Trusted
Lifetime subscriber

  #2165640 22-Jan-2019 18:02
Send private message

Remember - as it runs Linux the flash drive is also in the Linux partition structure - you'll need a Linux PC to read it (or the correct library's on Windows). Otherwise, it'll just come up with a message stating you need to format.





Michael Murphy | https://murfy.nz
Referral Links: Quic Broadband (use R122101E7CV7Q for free setup)

Are you happy with what you get from Geekzone? Please consider supporting us by subscribing.
Opinions are my own and not the views of my employer.


iamsammajor

379 posts

Ultimate Geek
+1 received by user: 27

Lifetime subscriber

  #2165739 22-Jan-2019 20:13
Send private message

michaelmurfy:

Remember - as it runs Linux the flash drive is also in the Linux partition structure - you'll need a Linux PC to read it (or the correct library's on Windows). Otherwise, it'll just come up with a message stating you need to format.



The last drive i put in, it has the edgerouter up and runing.
It worked for 8ish hours and i found out it stop when i tried to log in but has error 500 once enter id and password to login.

Then i tried the same trick. Didnt work, error came up when i tried to flash the os into the usb.

Fritz.box is great but has some internet drop through out the day. Is there any rock solid router you recommend apart from edgerouter, Michael?
Thanks advance
S.

Create new topic








Geekzone Live »

Try automatic live updates from Geekzone directly in your browser, without refreshing the page, with Geekzone Live now.



Are you subscribed to our RSS feed? You can download the latest headlines and summaries from our stories directly to your computer or smartphone by using a feed reader.