tld DD-WRT Novice
Joined: 26 Nov 2016 Posts: 11
|
Posted: Mon Jan 01, 2018 18:56 Post subject: Access restrictions: What am I missing? |
|
I'm trying to use the access restrictions to block my LG TV from being able to update the firmware, by blocking the three sites mentioned here:
https://github.com/joey-astrologo/OLED55-65B6-Downgrade
It doesn't seem to be working at all, and I'm lost as to what I'm missing. Here's what I've done:
a) I enabled policy 1 and titled it "LG Updates".
b) I clicked Edit List of Clients and use the MAC address section to enter the MAC address of the TV (this is all I should need correct?).
c) I choose the "Filter" option.
d) I left it set to every day and 24 hours.
e) I entered the three domain name (snu.lge.com, lgtvonline.lge.com, su.lge.com) under Website Blocking by URL Address, and applied.
This simply doesn't appear to be working. Am I missing something there?
EDIT: Meant to mention that I'm running 10-20-2017-r33555 on a Linksys WRT1900ACS.
Thanks!
Tom |
|
Alozaros DD-WRT Guru

Joined: 16 Nov 2015 Posts: 5540 Location: UK, London, just across the river..
|
Posted: Mon Jan 01, 2018 19:35 Post subject: |
|
2 ways to go
1. block those sites via DNSmasq commands
add those lines on additional DNSmasq option
address=/snu.lge.com/0.0.0.0
address=/lgtvonline.lge.com/0.0.0.0
address=/su.lge.com/0.0.0.0
or
2.block them via iptables - just add those lines on administration>commands and click save firewall
iptables -I FORWARD -s 136.166.4.110 -j DROP
iptables -I FORWARD -s 63.123.46.16 -j DROP
iptables -I FORWARD -s 96.17.177.24 -j DROP
iptables -I FORWARD -s 96.17.177.9 -j DROP
you can do both if you'd need _________________ Atheros
TP-Link WR740Nv1 ---DD-WRT 51440 WAP
TP-Link WR1043NDv2 -DD-WRT 51576 Gateway/DoT DNS,AP Isolation,Ad-Block,Firewall,Forced DNS,VPN,VLAN
TP-Link WR1043NDv2 -DD-WRT 51440 Gateway/DoT DNS,Ad-Block,Firewall,Forced DNS,x3 VLAN(no-wifi)
TP-Link WR1043NDv2 -Gargoyle OS 1.13.0 AP,DNS,QoS,Quotas
Qualcomm-Atheros
Netgear R7800 --DD-WRT 51576 Gateway/DoT DNS,AD-Block,AP&Net Isolation,VLAN's,Firewall,Vanilla
Netgear R9000 --DD-WRT 51576 Gateway/DoT DNS,AD-Block,AP Isolation,Firewall,Forced DNS, 2,4Ghz only,Vanilla
Broadcom
Netgear R7000 ---DD-WRT 51440 Gateway/DoT DNS,AD-Block,Firewall,Forced DNS,VLAN's,VPN (wi-fi off)
NOT USING 5Ghz ANYWHERE
------------------------------------------------------
Stubby for DNS over TLS I DNSCrypt v2 by mac913 |
|