D-Link DIR-860L A1: Known defects

Post new topic   This topic is locked: you cannot edit posts or make replies.    DD-WRT Forum Index -> Broadcom SoC based Hardware
Goto page Previous  1, 2, 3, 4, 5, 6, 7, 8, 9  Next
Author Message
inspiron2015
DD-WRT Novice


Joined: 25 Nov 2015
Posts: 2

PostPosted: Wed Nov 25, 2015 22:10    Post subject: DIR-860L A1 issues Reply with quote
Hello,
I just flashed the 27506 code to my DIR-860L. It seemed working well at first. But it happened to disconnect the internet connection frequently. It may happen while watching the video or browsing the webpage once every a few ten minutes. It is really annoying. Since every one reported it is stable version, so I am thinking it probably caused by improper setting. Can some one kindly tell me how to correct it?
As well, I found my TP-Link (TL-PS310U) stops the scan function since the dd-wrt code flashed. May it be related to the issue of internet disconnection?

Thanks!
Sponsor
Edr
DD-WRT Novice


Joined: 20 Jun 2015
Posts: 20

PostPosted: Wed Nov 25, 2015 22:36    Post subject: Disconnects Reply with quote
I"m running build 27858 without any problems. Did you select reset to defaults before you flashed the rom? I forgot to do that one time before I flashed and ran into the problem you are describing.
inspiron2015
DD-WRT Novice


Joined: 25 Nov 2015
Posts: 2

PostPosted: Thu Nov 26, 2015 4:48    Post subject: internet disconnect Reply with quote
Thanks for reply.
Where did you find the 27858 code? Can you please post the link for it?
I have tried to reset the router a couple hours ago, it seems no disconnection happened as more.
One more question, can you do bandwidth monitoring per user?
Thanks!
Edr
DD-WRT Novice


Joined: 20 Jun 2015
Posts: 20

PostPosted: Thu Nov 26, 2015 13:48    Post subject: link for firmware Reply with quote
You can get the newer betas here:

http://www.dd-wrt.com/site/support/other-downloads
ioqzc
DD-WRT Novice


Joined: 04 Jan 2016
Posts: 3

PostPosted: Thu Jan 07, 2016 22:11    Post subject: port forwarding Reply with quote
I installed dd-wrt on my dir-860L A1 and it works quite nice, except for port forwarding. I tried build 07-06-2015-r27490/dlink-dir860l-a1/ and it did forward after I did the trick with disable-enable SPI firewall; but that only worked if I was on wireless, not on cable. So I tried build 07-09-2015-r27506/dlink-dir860l-a1 but port forwarding stopped working entirely. Did anybody else had this problem on this build/router?
I also tried reinstalling dd-wrt by erasing nvram instead of 30sec hard reset before and after flash (is that the correct way?), and the ideas in http://www.wordmark.org/Wndr3700.html. I am thinking about flashing a newer build, but which one?
Well, here is some extra info, maybe I messed something visible:

# iptables -t nat -vnL PREROUTING
Chain PREROUTING (policy ACCEPT 4376 packets, 298K bytes)
pkts bytes target prot opt in out source destination
0 0 DNAT icmp -- * * 0.0.0.0/0 79.112.54.178 to:192.168.12.1
24 1248 DNAT tcp -- * * 0.0.0.0/0 79.112.54.178 tcp dpt:51351 to:192.168.12.157:51351
26 2766 DNAT udp -- * * 0.0.0.0/0 79.112.54.178 udp dpt:51351 to:192.168.12.157:51351
0 0 DNAT tcp -- * * 0.0.0.0/0 79.112.54.178 tcp dpt:51351 to:192.168.12.158:51351
0 0 DNAT udp -- * * 0.0.0.0/0 79.112.54.178 udp dpt:51351 to:192.168.12.158:51351
1078 99158 TRIGGER 0 -- * * 0.0.0.0/0 79.112.54.178 TRIGGER type:dnat match:0 relate:0


# iptables -vnL FORWARD
Chain FORWARD (policy ACCEPT 0 packets, 0 bytes)
pkts bytes target prot opt in out source destination
586K 527M ACCEPT 0 -- * * 0.0.0.0/0 0.0.0.0/0 state RELATED,ESTABLISHED
0 0 ACCEPT 47 -- * ppp0 192.168.12.0/24 0.0.0.0/0
0 0 ACCEPT tcp -- * ppp0 192.168.12.0/24 0.0.0.0/0 tcp dpt:1723
4922 296K lan2wan 0 -- * * 0.0.0.0/0 0.0.0.0/0
3 176 ACCEPT 0 -- br0 br0 0.0.0.0/0 0.0.0.0/0
83 4220 ACCEPT tcp -- * * 0.0.0.0/0 192.168.12.157 tcp dpt:51351
75 6905 ACCEPT udp -- * * 0.0.0.0/0 192.168.12.157 udp dpt:51351
0 0 ACCEPT tcp -- * * 0.0.0.0/0 192.168.12.158 tcp dpt:51351
0 0 ACCEPT udp -- * * 0.0.0.0/0 192.168.12.158 udp dpt:51351
0 0 TRIGGER 0 -- ppp0 br0 0.0.0.0/0 0.0.0.0/0 TRIGGER type:in match:0 relate:0
4761 285K trigger_out 0 -- br0 * 0.0.0.0/0 0.0.0.0/0
4747 284K ACCEPT 0 -- br0 * 0.0.0.0/0 0.0.0.0/0 state NEW
14 560 DROP 0 -- * * 0.0.0.0/0 0.0.0.0/0
Edr
DD-WRT Novice


Joined: 20 Jun 2015
Posts: 20

PostPosted: Fri Jan 08, 2016 15:12    Post subject: haven't tested port forwarding, but Reply with quote
I have two 860l a1 routers. One is running on 28598 firmware and the other is running 28647. I have no stability issues at all with either one. I have VPN set up on 28598 and it's working fine.

Did you try adding this and saving it to the firewall in commands?

insmod ipt_mark
Insmod xt_markiptables -t mangle -A PREROUTING -i ! `get_wanface` -d `nvram get wan_ipaddr` -j MARK --set-mark 0xd001
iptables -t nat -A POSTROUTING -m mark --mark 0xd001 -j MASQUERADE
ioqzc
DD-WRT Novice


Joined: 04 Jan 2016
Posts: 3

PostPosted: Fri Jan 08, 2016 20:54    Post subject: port forwarding Reply with quote
Yes, tried that firewall command; I tried it again now just to make sure it's exactly the same... I will try the builds that work for you, 28598, and [hopefully I will not need also] 28647.

Thx, and wish me luck Smile
ioqzc
DD-WRT Novice


Joined: 04 Jan 2016
Posts: 3

PostPosted: Fri Jan 08, 2016 22:13    Post subject: port forwarding Reply with quote
No. Port forward is not working. I just flashed both 28598 and 28647.

I must be doing something really stupid Sad

Update: I am only letting this here for any future unfortunate souls who run into the same issue: it makes sense to open the port both on the router *and* on the computer... duh! The clue for me was that my torrent client was able to seed anyway; I googled it and found http://askubuntu.com/questions/405487/transmission-says-port-is-closed-but-seeding-is-happening

Thx guys!
Twingo
DD-WRT User


Joined: 30 Dec 2007
Posts: 135

PostPosted: Tue Jan 12, 2016 21:24    Post subject: Reply with quote
At least port forwarding is working on my 860L running 27506, you might try this build to see if it works okay for you.
Edr
DD-WRT Novice


Joined: 20 Jun 2015
Posts: 20

PostPosted: Thu Jan 14, 2016 23:54    Post subject: port forwarding Reply with quote
I'm pretty sure he did get port forwarding working with the new build.
MikeBob
DD-WRT Novice


Joined: 21 Jan 2016
Posts: 4

PostPosted: Thu Jan 21, 2016 17:12    Post subject: How to revert back to stock firmware? Reply with quote
How do you flash back to the stock dlink firmware?
My 860 A1 is current flashed to DD-WRT 28647.
kotboy
DD-WRT Novice


Joined: 20 Jan 2016
Posts: 3

PostPosted: Thu Jan 21, 2016 18:03    Post subject: Re: How to revert back to stock firmware? Reply with quote
MikeBob wrote:
How do you flash back to the stock dlink firmware?
My 860 A1 is current flashed to DD-WRT 28647.


1. Download the latest firmware for the router from D-Link.


2. Set your PC's Ethernet adapter to use static IP address 192.168.0.2 and netmask 255.255.255.0. Connect your PC to a router LAN port.


3. Activate the router's bootloader by pressing and holding the reset button until the power light continually blinks amber. (It will blink just a few times after holding for a couple seconds, but needs about 30 seconds to get to the continual blink.)


4. Use Firefox to connect to 192.168.0.1 and upload the firmware. The router reboots itself when flashing is complete.

Note that with Internet Explorer, Chrome, curl, and likely others, the bootloader ignores the uploaded firmware and never responds to the HTTP request. (Fortunately, while only very old versions Internet Explorer don't trigger the bug in the bootloader's HTTP stack, all version of Firefox, including the latest, are compatible.)


5. Set your PC's Ethernet adapter to use DHCP. After the router assigns it an IP address (so you know the router has finished booting), reset the router to factory default configuration by pressing and holding the reset button until the power light continually blinks amber again. Then power cycle the router.
MikeBob
DD-WRT Novice


Joined: 21 Jan 2016
Posts: 4

PostPosted: Fri Jan 22, 2016 16:51    Post subject: Re: How to revert back to stock firmware? Reply with quote
That worked perfectly! Excellent clearly written instructions, thank you!


kotboy wrote:


1. Download the latest firmware for the router from D-Link.


2. Set your PC's Ethernet adapter to use static IP address 192.168.0.2 and netmask 255.255.255.0. Connect your PC to a router LAN port.


3. Activate the router's bootloader by pressing and holding the reset button until the power light continually blinks amber. (It will blink just a few times after holding for a couple seconds, but needs about 30 seconds to get to the continual blink.)


4. Use Firefox to connect to 192.168.0.1 and upload the firmware. The router reboots itself when flashing is complete.

Note that with Internet Explorer, Chrome, curl, and likely others, the bootloader ignores the uploaded firmware and never responds to the HTTP request. (Fortunately, while only very old versions Internet Explorer don't trigger the bug in the bootloader's HTTP stack, all version of Firefox, including the latest, are compatible.)


5. Set your PC's Ethernet adapter to use DHCP. After the router assigns it an IP address (so you know the router has finished booting), reset the router to factory default configuration by pressing and holding the reset button until the power light continually blinks amber again. Then power cycle the router.
Nilozone
DD-WRT Novice


Joined: 17 Nov 2014
Posts: 3

PostPosted: Fri Jan 22, 2016 17:59    Post subject: Speed problem Reply with quote
Proud owner of an dir 860L A1 , but ...
I have a gigabit link ...
i get 870 Mb with an modified firmware from dlink 1.07 b
400 Mb with 1.10 latest to date firmware
280 Mb with 28882 dd-wrt .... can anyone help me ?
I have an media convertor with lan before this router .
Acces mode is thru ppoe protocol.

Le: It was 28846 not 28882
MikeBob
DD-WRT Novice


Joined: 21 Jan 2016
Posts: 4

PostPosted: Fri Jan 22, 2016 21:35    Post subject: Re: Speed problem Reply with quote
Actually that is why I was asking about going back to stock. Same experience.

Just got gigabit myself and was only getting 320-330Mbs WAN to LAN using DD-WRT 28647. LAN to LAN was 520-580Mbs.

Revert to stock and jumped to 860Mbs. So very similar experience to yours.


Nilozone wrote:
Proud owner of an dir 860L A1 , but ...
I have a gigabit link ...
i get 870 Mb with an modified firmware from dlink 1.07 b
400 Mb with 1.10 latest to date firmware
280 Mb with 28882 dd-wrt .... can anyone help me ?
I have an media convertor with lan before this router .
Acces mode is thru ppoe protocol.

Le: It was 28846 not 28882
Goto page Previous  1, 2, 3, 4, 5, 6, 7, 8, 9  Next Display posts from previous:    Page 4 of 9
Post new topic   This topic is locked: you cannot edit posts or make replies.    DD-WRT Forum Index -> Broadcom SoC based Hardware All times are GMT

Navigation

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum