Chromecast issues after upgrading because of Krack vulnerabi

Post new topic   Reply to topic    DD-WRT Forum Index -> Broadcom SoC based Hardware
Goto page Previous  1, 2
Author Message
jpp
DD-WRT Novice


Joined: 26 Sep 2017
Posts: 28

PostPosted: Sat Jun 23, 2018 3:23    Post subject: Reply with quote
kernel-panic69 wrote:
https://svn.dd-wrt.com/ticket/6319

Seems like it's a known issue. You could try reverting to 35531 and see if it's working in that build.


I have used 33986 build, 34929 and i am currently using 36006.

All builds have this issue.

JP


Last edited by jpp on Sat Jun 23, 2018 3:34; edited 1 time in total
Sponsor
jpp
DD-WRT Novice


Joined: 26 Sep 2017
Posts: 28

PostPosted: Sat Jun 23, 2018 3:24    Post subject: Reply with quote
Malachi wrote:
Except the e2000 is neither Qualcomm nor Marvell.


I have reported similar issues on my e1200 (broadcom):

jpp wrote:
I am using : DD-WRT v3.0-r34929 mega 02/12/18 on two e1200v2 and i am getting a few errors on the logs related to igmp:

user.warn igmpproxy[1585]: MRT_DEL_MFC; Errno(2): No such file or directory
user.warn igmpproxy[1585]: No interfaces found for source 0.0.0.0
igmpproxy[2306]: select() failure; Errno(4): Interrupted system call

Any thoughts?

My HP printer has some connectivity problems with the same router and i read that printer uses multicast / bonjour / mdns settings to work.

Could this be the root cause?

JP
vaiost
DD-WRT Novice


Joined: 14 Dec 2008
Posts: 29
Location: Greece

PostPosted: Sun Jun 24, 2018 19:40    Post subject: Reply with quote
I can confirm that I also have multicast problems with my e2000 as well. Phones and pcs can not even cast youtube to the tv and so on.

Converted 320N to E2000 on 36079

_________________
Linksys E2000 (Converted from WRT320N) - BS 19342 Big
TP-Link TL-WR941ND -
Asus WL-500W (dead)
betolley
DD-WRT Novice


Joined: 20 Aug 2010
Posts: 24

PostPosted: Mon Jun 25, 2018 3:44    Post subject: Chromecast Working now. Reply with quote
Firmware: DD-WRT v3.0-r36168 mini (06/20/1Cool

I have tried several of the mini's and chromecast is working with them but not the mega's. Having a issue where I am disconnecting and reconnecting every now and them but chromecast is working again.
betolley
DD-WRT Novice


Joined: 20 Aug 2010
Posts: 24

PostPosted: Tue Jun 26, 2018 2:39    Post subject: Got it working. Reply with quote
I have installed a bunch of different versions both old and new. I had some issues with some kind of interference with my wireless HDMI transmitter and the Mixed Mode and had to set it to Mixed-BG and chromecast and wifi is working for me with my e2000

Firmware: DD-WRT v3.0-r36168 mini (06/20/18

With the larger versions the chromecast wouldn't work but with the mini's they did. Thanks everyone for the help.
pastim
DD-WRT Novice


Joined: 30 Apr 2018
Posts: 9

PostPosted: Mon Jul 30, 2018 14:19    Post subject: Reply with quote
I updated my Netgear R6250 to DD-WRT 36070 and chromecast (still) doesn't work. I have previously tried the iptables changes to no effect. I might add that the web admin GUI is also very, very slow.

I went back to 32170 (from june 2017) and chromecast works.

Is there any known way of getting this to work on recent DD WRTs? I'll do a reset if I really have to (it's then some work to get it back to the way I want it, since I fix a load of IPs, MACs etc).

I also had a problem using a system that I believe uses similar multicasts to Chromecast (Samsung multi-room app for managing soundbars and speakers). That works on the older firmware but not the new one.
pastim
DD-WRT Novice


Joined: 30 Apr 2018
Posts: 9

PostPosted: Mon Jul 30, 2018 15:56    Post subject: Reply with quote
JAMESMTL wrote:
don't drop or reject dns queries, redirect or dnat them to your dns server

How can I do that?
BR07H3R
DD-WRT User


Joined: 24 Dec 2017
Posts: 135

PostPosted: Mon Jul 30, 2018 19:18    Post subject: Reply with quote
pastim wrote:
JAMESMTL wrote:
don't drop or reject dns queries, redirect or dnat them to your dns server

How can I do that?


iptables -t nat -A PREROUTING -i lan -p udp --dport 53 -j DNAT --to 192.168.1.1
iptables -t nat -A PREROUTING -i lan -p tcp --dport 53 -j DNAT --to 192.168.1.1


Add these to the firewall. Click apply settings. Profit?

You might need to enable local dns on the services tab.
pastim
DD-WRT Novice


Joined: 30 Apr 2018
Posts: 9

PostPosted: Mon Jul 30, 2018 23:12    Post subject: Reply with quote
BR07H3R wrote:
pastim wrote:
JAMESMTL wrote:
don't drop or reject dns queries, redirect or dnat them to your dns server

How can I do that?


iptables -t nat -A PREROUTING -i lan -p udp --dport 53 -j DNAT --to 192.168.1.1
iptables -t nat -A PREROUTING -i lan -p tcp --dport 53 -j DNAT --to 192.168.1.1


Add these to the firewall. Click apply settings. Profit?

You might need to enable local dns on the services tab.

Thanks very much. Before I try this, can you explain what it's doing? It looks like it is taking all DNS queries addressed to port 53 and sending them to the local gateway router DNS. Is that correct? If so, won't that stop all my normal DNS access?
BR07H3R
DD-WRT User


Joined: 24 Dec 2017
Posts: 135

PostPosted: Tue Jul 31, 2018 11:16    Post subject: Reply with quote
pastim wrote:
BR07H3R wrote:
pastim wrote:
JAMESMTL wrote:
don't drop or reject dns queries, redirect or dnat them to your dns server

How can I do that?


iptables -t nat -A PREROUTING -i lan -p udp --dport 53 -j DNAT --to 192.168.1.1
iptables -t nat -A PREROUTING -i lan -p tcp --dport 53 -j DNAT --to 192.168.1.1


Add these to the firewall. Click apply settings. Profit?

You might need to enable local dns on the services tab.

Thanks very much. Before I try this, can you explain what it's doing? It looks like it is taking all DNS queries addressed to port 53 and sending them to the local gateway router DNS. Is that correct? If so, won't that stop all my normal DNS access?

Well I'm still learning all of this... Yes you are correct. From what I understand as long as you are using dnsmasq to specify a dns address (dhcp-option=6,1.1.1.1) everything should work correctly.
BR07H3R
DD-WRT User


Joined: 24 Dec 2017
Posts: 135

PostPosted: Tue Jul 31, 2018 16:23    Post subject: Reply with quote
BR07H3R wrote:
pastim wrote:
BR07H3R wrote:
pastim wrote:
JAMESMTL wrote:
don't drop or reject dns queries, redirect or dnat them to your dns server

How can I do that?


iptables -t nat -A PREROUTING -i lan -p udp --dport 53 -j DNAT --to 192.168.1.1
iptables -t nat -A PREROUTING -i lan -p tcp --dport 53 -j DNAT --to 192.168.1.1


Add these to the firewall. Click apply settings. Profit?

You might need to enable local dns on the services tab.

Thanks very much. Before I try this, can you explain what it's doing? It looks like it is taking all DNS queries addressed to port 53 and sending them to the local gateway router DNS. Is that correct? If so, won't that stop all my normal DNS access?

Well I'm still learning all of this... Yes you are correct. From what I understand as long as you are using dnsmasq to specify a dns address (dhcp-option=6,1.1.1.1) everything should work correctly.

Might also need no dns rebind
pastim
DD-WRT Novice


Joined: 30 Apr 2018
Posts: 9

PostPosted: Tue Aug 28, 2018 13:05    Post subject: Reply with quote
I couldn't seem to get any IPTABLES changes to make any difference.

As time has gone by I thought I'd try the latest firmware from this website - DD-WRT v3.0-r36698M std (08/22/1Cool

And lo and behold, it works, sort of. The chromecast loses the connection frequently, but this seems quite common. It will do for now!
eurobeat
DD-WRT Novice


Joined: 04 May 2018
Posts: 2

PostPosted: Sat Sep 08, 2018 20:10    Post subject: Reply with quote
Don't use the latest build or any build on 2018 if you use Chromecast. I tried 3 different builds on 2018 and all of them works intermittently. I roll back to R30949 works. The reason of trying a new firmware was because the R30949 Access Restrictions doesn't work, but I tried all versions and none of them works (well that is another issue).

The method I tried are adding the command on firewall, changing the DNS to the comcast dns and other dns.

Linksys WRT1900ACS Ver2
Comcast
Chromecast Ver 1 and 2.
Nvidia Shield TV
CoreyB.
DD-WRT Novice


Joined: 08 Apr 2010
Posts: 39

PostPosted: Sun Sep 09, 2018 22:49    Post subject: Reply with quote
I’m not sure if this is exacty the same thing, but on my Android TV going through a Linksys E900 with ddwrt r36079 mega as a client bridge. When the tv was running through that, I wasn’t able to see it as a castable device on any of my devices connected to my wi-fi. The only way I was able to see it was it was to wire my laptop to the client bridge as well, then I could see it on my laptop only.

To resolve this, I was able to put the r36079 mini k2.6 build on there with the same client bridge configuration, then I was able to cast to it from all my devices.
Goto page Previous  1, 2 Display posts from previous:    Page 2 of 2
Post new topic   Reply to topic    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