Wireless GUI Access - Advanced Wireless Settings

Post new topic   This topic is locked: you cannot edit posts or make replies.    DD-WRT Forum Index -> Marvell MVEBU based Hardware (WRT1900AC etc.)
Author Message
FlaParrotHead
DD-WRT User


Joined: 04 Nov 2020
Posts: 80

PostPosted: Wed Nov 11, 2020 16:42    Post subject: Wireless GUI Access - Advanced Wireless Settings Reply with quote
Has this setting/option been removed, or relocated, from current builds? I do not see it anywhere.

Thanks!

_________________
Linksys WRT3200ACM
VersionDD-WRT v3.0-r50500 std (10/13/22)
Kernel VersionLinux 4.9.330 #3466 SMP Thu Oct 13 02:01:23 +07 2022 armv7l
Linksys RE9000 Extender (WiFi attached)
OpenVPN with PBR: ExpressVPN
Devices: Sonos, Apple, QNAP, Laserjet other
Sponsor
egc
DD-WRT Guru


Joined: 18 Mar 2014
Posts: 12812
Location: Netherlands

PostPosted: Wed Nov 11, 2020 16:50    Post subject: Reply with quote
I will move your question to the appropriate forum.

Please take note of the Forum guidelines so that you post in the right forum.
https://forum.dd-wrt.com/phpBB2/viewtopic.php?t=324087

_________________
Routers:Netgear R7000, R6400v1, R6400v2, EA6900 (XvortexCFE), E2000, E1200v1, WRT54GS v1.
Install guide R6400v2, R6700v3,XR300:https://forum.dd-wrt.com/phpBB2/viewtopic.php?t=316399
Install guide R7800/XR500: https://forum.dd-wrt.com/phpBB2/viewtopic.php?t=320614
Forum Guide Lines (important read):https://forum.dd-wrt.com/phpBB2/viewtopic.php?t=324087
Oldsmobile_Mike
DD-WRT Novice


Joined: 02 Jul 2014
Posts: 47

PostPosted: Sun Nov 29, 2020 23:30    Post subject: Reply with quote
Did you ever find where this setting has been moved to?
blkt
DD-WRT Guru


Joined: 20 Jan 2019
Posts: 5650

PostPosted: Mon Nov 30, 2020 15:16    Post subject: Reply with quote
See the Advanced Settings checkboxes in Wireless -> Basic Settings in each wireless or physical interface.
FlaParrotHead
DD-WRT User


Joined: 04 Nov 2020
Posts: 80

PostPosted: Wed Dec 02, 2020 1:31    Post subject: Reply with quote
blkt wrote:
See the Advanced Settings checkboxes in Wireless -> Basic Settings in each wireless or physical interface.


While that is where I expected it, it’s not showing on any of the three radios advanced settings...

_________________
Linksys WRT3200ACM
VersionDD-WRT v3.0-r50500 std (10/13/22)
Kernel VersionLinux 4.9.330 #3466 SMP Thu Oct 13 02:01:23 +07 2022 armv7l
Linksys RE9000 Extender (WiFi attached)
OpenVPN with PBR: ExpressVPN
Devices: Sonos, Apple, QNAP, Laserjet other
blkt
DD-WRT Guru


Joined: 20 Jan 2019
Posts: 5650

PostPosted: Wed Dec 02, 2020 2:35    Post subject: Reply with quote
Have you hardware reset and then reconfigured manually from scratch?

(or web GUI Administration -> Factory Defaults, or nvram erase && reboot from Telnet as root)
Krzat
DD-WRT Novice


Joined: 11 Oct 2020
Posts: 9

PostPosted: Wed Dec 02, 2020 17:14    Post subject: Reply with quote
Yep, I looked for such checkbox quite some time ago.
Found this. Firewall command.

iptables -I INPUT -i br1 -p tcp --dport telnet -j REJECT --reject-with tcp-reset
iptables -I INPUT -i br1 -p tcp --dport ssh -j REJECT --reject-with tcp-reset
iptables -I INPUT -i br1 -p tcp --dport www -j REJECT --reject-with tcp-reset
iptables -I INPUT -i br1 -p tcp --dport https -j REJECT --reject-with tcp-reset
iptables -I INPUT -i br2 -p tcp --dport telnet -j REJECT --reject-with tcp-reset
iptables -I INPUT -i br2 -p tcp --dport ssh -j REJECT --reject-with tcp-reset
iptables -I INPUT -i br2 -p tcp --dport www -j REJECT --reject-with tcp-reset
iptables -I INPUT -i br2 -p tcp --dport https -j REJECT --reject-with tcp-reset

Those bridges are sepret vaps...

https://www.alexlaird.com/2013/03/dd-wrt-guest-wireless/
https://mile-lile.blogspot.com/2016/08/enhance-your-dd-wrt-security-with.html?m=1
https://forum.dd-wrt.com/phpBB2/viewtopic.php?t=313315
SurprisedItWorks
DD-WRT Guru


Joined: 04 Aug 2018
Posts: 1444
Location: Appalachian mountains, USA

PostPosted: Wed Dec 02, 2020 18:48    Post subject: Reply with quote
GUI>Administration>Commands, in the Firewall section:
Code:
  Only=br0
  #admin access (GUI,ssh,telnet) only from $Only
    SSH_PORT=$(nvram get sshd_port)
    iptables -I INPUT -i ! $Only -p tcp -m multiport \
      --dports $SSH_PORT,telnet,http,https -j REJECT --reject-with tcp-reset

This restricts admin access to br0 only. Or streamlined for minimalists:
Code:
iptables -I INPUT -i ! br0 -p tcp -m multiport --dports $(nvram get sshd_port),telnet,http,https -j REJECT --reject-with tcp-reset

The multiport thing may not be there for routers with minimal memory. Try this command by hand in the CLI and then look at the firewall to see if it "took" with iptables -vnL INPUT. Misformatted iptables commands generally do nothing at all.

_________________
2x Netgear XR500 and 3x Linksys WRT1900ACSv2 on 53544: VLANs, VAPs, NAS, station mode, OpenVPN client (AirVPN), wireguard server (AirVPN port forward) and clients (AzireVPN, AirVPN, private), 3 DNSCrypt providers via VPN.
blkt
DD-WRT Guru


Joined: 20 Jan 2019
Posts: 5650

PostPosted: Wed Dec 02, 2020 19:08    Post subject: Reply with quote
Rolling Eyes Anyway, go back to r44048 if advanced settings checkboxes are still missing in action after a reset.
bushant
DD-WRT Guru


Joined: 18 Nov 2015
Posts: 2024

PostPosted: Wed Dec 02, 2020 20:08    Post subject: Reply with quote
The only place I have seen a Disable Wireless GUI Access box is in the neighbors C9v1 OEM firmware.

It was not present in any of my stock Netgear GUI's.
Seems like it could be a handy addition.

_________________
Forum Guide Lines (with helpful pointers about how to research your router, where and what firmware to download, where and how to post and many other helpful tips!)
How to get help the right way

Before asking for help - Read the forum guidelines AND Upgrade DD-WRT!
Adblock by eibgrad + Blocklist Collection
egc
DD-WRT Guru


Joined: 18 Mar 2014
Posts: 12812
Location: Netherlands

PostPosted: Wed Dec 02, 2020 21:40    Post subject: Reply with quote
It is available on Broadcom.
_________________
Routers:Netgear R7000, R6400v1, R6400v2, EA6900 (XvortexCFE), E2000, E1200v1, WRT54GS v1.
Install guide R6400v2, R6700v3,XR300:https://forum.dd-wrt.com/phpBB2/viewtopic.php?t=316399
Install guide R7800/XR500: https://forum.dd-wrt.com/phpBB2/viewtopic.php?t=320614
Forum Guide Lines (important read):https://forum.dd-wrt.com/phpBB2/viewtopic.php?t=324087
bushant
DD-WRT Guru


Joined: 18 Nov 2015
Posts: 2024

PostPosted: Wed Dec 02, 2020 22:04    Post subject: Reply with quote
egc wrote:
It is available on Broadcom.

So it is.
Haven't messed with the Wireless GUI on that router in quite a while now. Embarassed
FlaParrotHead
DD-WRT User


Joined: 04 Nov 2020
Posts: 80

PostPosted: Sat Dec 05, 2020 3:09    Post subject: Reply with quote
egc wrote:
It is available on Broadcom.


Not on my 3200ACM and current build but will play with a reset or back level at some point down the road...

_________________
Linksys WRT3200ACM
VersionDD-WRT v3.0-r50500 std (10/13/22)
Kernel VersionLinux 4.9.330 #3466 SMP Thu Oct 13 02:01:23 +07 2022 armv7l
Linksys RE9000 Extender (WiFi attached)
OpenVPN with PBR: ExpressVPN
Devices: Sonos, Apple, QNAP, Laserjet other
Oldsmobile_Mike
DD-WRT Novice


Joined: 02 Jul 2014
Posts: 47

PostPosted: Sat Dec 05, 2020 16:20    Post subject: Reply with quote
egc wrote:
It is available on Broadcom.


Thanks! I went from a Broadcom-based RT-AC66u to a WRT3200ACM and couldn't figure this out either. Appreciate it!
Display posts from previous:    Page 1 of 1
Post new topic   This topic is locked: you cannot edit posts or make replies.    DD-WRT Forum Index -> Marvell MVEBU based Hardware (WRT1900AC etc.) 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 cannot attach files in this forum
You cannot download files in this forum