Slickdeals is community-supported.  We may get paid by brands for deals, including promoted items.
Heads up, this deal has expired. Want to create a deal alert for this item?
expired Posted by xlnc • Sep 3, 2024
expired Posted by xlnc • Sep 3, 2024

Linksys LN1301 Tri-Band AX4200 WiFi 6 Wireless Router

+ Free Shipping

$20

$25

20% off
Amazon
1,237 Comments 370,945 Views
Visit Amazon
Good Deal
Save
Share
Deal Details
Update: This popular deal is still available

Woot via Amazon has Linksys LN1301 Tri-Band AX4200 WiFi 6 Wireless Router on sale for $19.99. Shipping is free.

Thanks to community member xlnc for finding this deal.

About this Item:
  • Covers up to 2700 sq. ft.
  • Handles 40+ devices
  • Speed up to 4.2 Gbps (AX4200)
  • WiFi 6 Tri-Band
  • Quad-Core Processor
  • MU-MIMO and OFDMA

Editor's Notes

Written by megakimcheelove | Staff
  • About this Deal:
    • This price matches this previous Frontpage Deal (+59).
    • Please see the original post for additional details & give the WIKI and additional forum comments a read for helpful discussion.
  • About this Product:
    • 1 Year Linksys Warranty
  • About this Store:

Original Post

Written by xlnc
Community Notes
About the Poster
Deal Details
Community Notes
About the Poster
Update: This popular deal is still available

Woot via Amazon has Linksys LN1301 Tri-Band AX4200 WiFi 6 Wireless Router on sale for $19.99. Shipping is free.

Thanks to community member xlnc for finding this deal.

About this Item:
  • Covers up to 2700 sq. ft.
  • Handles 40+ devices
  • Speed up to 4.2 Gbps (AX4200)
  • WiFi 6 Tri-Band
  • Quad-Core Processor
  • MU-MIMO and OFDMA

Editor's Notes

Written by megakimcheelove | Staff
  • About this Deal:
    • This price matches this previous Frontpage Deal (+59).
    • Please see the original post for additional details & give the WIKI and additional forum comments a read for helpful discussion.
  • About this Product:
    • 1 Year Linksys Warranty
  • About this Store:

Original Post

Written by xlnc

Community Voting

Deal Score
+136
Good Deal
Visit Amazon

Price Intelligence

Model: Linksys LN1301 WiFi Router - Tri-Band WiFi - Plug-n-Play Setup - Covers up to 2700 sq. ft. - Speed up tp 4.2 Gbps - Handles 40+ Devices

Deal History 

Sort: Most Recent
Post Date Sold By Sale Price Activity
08/01/24Amazon$25 popular
246
Leave a Comment
To participate in the comments, please log in.

Top Comments

I have to disagree with you there. I have 64 devices connected to four LN1301s in a router + mesh network and performance has been decent and stable for nearly a week now. I have 16 IP cameras streaming 1080p video 24/7 as well. (Half of them via Ethernet bridging with the mesh nodes)

Mind you that I only have 100Mbps Spectrum internet but I do stream/direct play 4k videos from a Plex media server to several Amazon Firestick 4k devices without issue. Overall IMO you would be hard pressed to find such relatively decent hardware for so cheap; especially a Mesh network.

It wasn't all smooth at first mind you. I kept getting disconnects; especially with the streaming IP cameras. But I discovered by disabling Express Forwarding all my streaming issues went away. (CA>Connectivity>Administration>Express Forwarding)

I'm guessing that Cisco's/Linksys' proprietary Express Forwarding routing protocol was causing havoc with the IP cams streaming capabilities. Also, disabling Node Steering seemed to make things more stable as well; mesh nodes no longer disconnect from the router when Node Steering is disabled. (CA>Wi-Fi Settings>Advanced>Node Steering)
User feedback across two years indicates better performance with all three off. Express forwarding seems to negatively affect streaming. Node steering interferws with Google Home and Apple Homekit. Client steering slows connection down if you have more than one router.

Of course, user experience can vary so feel free to experiment. if the routers are giving you problems, try turning these features off and see if it works
Still waiting for mine to ship from the last $15 deal. Just checked and Woot says SEPT 13. Hasn't even shipped yet.

It's not a deal if you never receive it.

1,236 Comments

Sign up for a Slickdeals account to remove this ad.

Sep 22, 2024
589 Posts
Joined Aug 2012
Sep 22, 2024
PaperOrPlastic
Sep 22, 2024
589 Posts
Anyone else have issues with the Linksys app? Two days in a row now I've tried to launch it and it tells me that my local network is down when it clearly isn't. Modem and both routers (master and node) are connected along with all of my devices so it's definitely the app.
Sep 22, 2024
2,003 Posts
Joined Nov 2012
Sep 22, 2024
jkilez
Sep 22, 2024
2,003 Posts
Quote from jkilez :
For people who are using DD-WRT on this...

Has anyone had success using NTFS filesystems on an external USB? I can get EXT4 and FAT32 filesystem to automatically mount, but cannot get NTFS to work, even manually. The DD-WRT v3.0-r58389 distribution includes the "ntfs3.ko" module, and can recognize that the partition has an NTFS filesytem (as seen in the /tmp/disk/sda text files), but just gives a "No such device" error when mounting. The device is there--I can read it with a "dd"--it just will not mount.

Anyone have luck with DD-WRT & USB & NTFS?
Figured out a solution to my own problem. Just posting in case anyone else runs into it.

It turns out the ntfs3.ko module is not autoloading on mount like it should, so the workaround is to create a startup script that loads the module and mounts the partition(s). It basically takes two steps:

1. Enable JFFS2 support in the Adminstration section of the web gui (and then reboot the router).
2. Create a script called "/jffs/etc/config/ntfs.startup" that loads the module and mounts the partition (and then reboot the router). At a most basic level it would look something like this:

Code:
#!/bin/sh
insmod /lib/modules/6.6.51-rt29/ntfs3.ko
mkdir /tmp/mnt/mydisk
sleep 5
mount -t ntfs3 /dev/sda2 /tmp/mnt/mydisk
Notes:
- You will have to create the subdirectories in the /jffs difrectory.
- The name of the script *has* to end with ".startup".
- The "6.6.51-rt29" directory is the kernel release number of DD-WRT. Yours may differ.
- I created a mount-point directory that would not conflict with the automount's names such as "sda1".
- The sleep is required before the mount because it takes a moment for the driver to load.
- Here I mount "sda2", but your partitions may vary. You need to know what partition(s) you want to mount.

The good news is that the drive actually achieves USB 3.0 speeds making the SMB share as fast as any NAS drive out there.

Edit: This problem is fixed in later releases (at least by r59171).
Last edited by jkilez January 17, 2025 at 04:10 AM.
Pro
Sep 22, 2024
1,640 Posts
Joined Nov 2013
Sep 22, 2024
beervomit
Pro
Sep 22, 2024
1,640 Posts
Quote from s11018 :
It is found under "connecivity/Internet settings/ip4/edit/connection type" when accessing GUI from PC browser. It is set to DHCP by default since the most common use is to connect internet port to your ISP modem. When using as an AP, I first set a static IP for the node. Make sure everything works fine even after a reboot. Then set to bridge mode.

Hope that helps.
That worked, thank you. Now I just have to figure out how to log into the child node.
Sep 22, 2024
8,313 Posts
Joined May 2007
Sep 22, 2024
diavolo33
Sep 22, 2024
8,313 Posts
After switching to these from a TP Link router, my wifi-connected devices (e.g., phone) cannot see ethernet-connected devices (e.g., Android TV). Is there a way to disable AP isolation somewhere in the settings?
Sep 22, 2024
104 Posts
Joined Dec 2007
Sep 22, 2024
astan
Sep 22, 2024
104 Posts
Quote from beervomit :
That worked, thank you. Now I just have to figure out how to log into the child node.
Log into parent node(static IP for node), look at device list to get child node IP address. Log into "child node IP address/ca" 192.168.x.x/ca
Sep 22, 2024
1,343 Posts
Joined Oct 2021
Sep 22, 2024
aabbccbbaa
Sep 22, 2024
1,343 Posts
Quote from jkilez :
Figured out a solution to my own problem. Just posting in case anyone else runs into it.

It turns out the ntfs3.ko module is not autoloading on mount like it should, so the workaround is to create a startup script that loads the module and mounts the partition(s). It basically takes two steps:

1. Enable JFFS2 support in the Adminstration section of the web gui (and then reboot the router).
2. Create a script called "/jffs/etc/config/ntfs.startup" that loads the module and mounts the partition (and then reboot the router). At a most basic level it would look something like this:

Code:
#!/bin/sh
insmod /lib/modules/6.6.51-rt29/ntfs3.ko
mkdir /tmp/mnt/mydisk
sleep 5
mount -t ntfs3 /dev/sda2 /tmp/mnt/mydisk
Notes:
- You will have to create the subdirectories in the /jffs difrectory.
- The name of the script *has* to end with ".startup".
- The "6.6.51-rt29" directory is the kernel release number of DD-WRT. Yours may differ.
- I created a mount-point directory that would not conflict with the automount's names such as "sda1".
- The sleep is required before the mount because it takes a moment for the driver to load.
- Here I mount "sda2", but your partitions may vary. You need to know what partition(s) you want to mount.

The good news is that the drive actually achieves USB 3.0 speeds making the SMB share as fast as any NAS drive out there.

Fantastic, repped!
Sep 22, 2024
124 Posts
Joined Jan 2018
Sep 22, 2024
briantoanle
Sep 22, 2024
124 Posts
Quote from zx5b4 :
Anyone else having mesh nodes showing wireless connection even thought they are wired to the main node?
I'm having the same issue as well. Gigabit ethernet backhaul through a switch and it has decided to be in Wireless backhaul. No amount of reboot has fixed it.

Sign up for a Slickdeals account to remove this ad.

Sep 22, 2024
425 Posts
Joined Jul 2012
Sep 22, 2024
Rydsen
Sep 22, 2024
425 Posts
Quote from rchow427 :
Just wanted to share my experience with adding a child node in stock firmware. After multiple attempts I was able to finally get the flashing purple light and then solid blue. My child node was connected via Ethernet cable in the INTERNET port of the child node about 11 feet away to the #1 LAN port of the parent node. The child node at this point still had the solid purple light on. I went on my pc, logged into 192.168.1.1 and disabled express forwarding, node steering, and client steering. I once again followed the steps previously mentioned and finally saw the flashing purple light which turned solid blue. Disconnected the Ethernet cable between the parent node and child node and the solid blue remained on. Then I unplugged the child node and relocated it to another floor. After plugging the child node back on, it was flashing red for some time. I stepped away for 10 mins and when I came back, the child node was solid blue. I went on the Linksys app on my phone and saw that I have 2 nodes now. Hope this help those that has been trying all day to connect a child node with stock firmware.
This was a big help so thank you very much. I just got my routers in this week and finally got around to setting them up. This saved me a lot of time. It worked like a charm and I'm up and running with one child node on stock firmware as well. I bought 3 but one is just a backup if one fails or we move to a larger house down the road. Again, thanks.
Sep 22, 2024
21 Posts
Joined Nov 2012
Sep 22, 2024
Nperei
Sep 22, 2024
21 Posts
Quote from briantoanle :
I'm having the same issue as well. Gigabit ethernet backhaul through a switch and it has decided to be in Wireless backhaul. No amount of reboot has fixed it.
Yes this happen after I did add new node. and move them Attic hooked to wired it was flipped wireless. odd it was working fine after add new node. I resolved by do factory reset add node again. so far good hooked to wired rather wireless werid. most people in this forum recommend to factory reset before we setup. Give a try hope fix your issue
Sep 22, 2024
1,562 Posts
Joined Dec 2008
Sep 22, 2024
bcm00re
Sep 22, 2024
1,562 Posts
Quote from briantoanle :
I'm having the same issue as well. Gigabit ethernet backhaul through a switch and it has decided to be in Wireless backhaul. No amount of reboot has fixed it.

I have a spare unit so on this one I first selected setup wired node then done then apply. If didn't seem to work, so I did the meshed setup again this time selecting setup wired node and setup wireless node, etc. I also made sure to disconnect from the WAN and wait for the node to get back to blue before moving. It has been several hours now, and this new child node is still showing as wired
Last edited by bcm00re September 22, 2024 at 03:26 PM.
Sep 23, 2024
12 Posts
Joined Jul 2018
Sep 23, 2024
DealsTiger
Sep 23, 2024
12 Posts
Quote from drboom :
I did a factory reset on all 5 of mine and started the config over. It was relatively painless since mine are just APs/mesh so there isn't much to configure. Had I been using them as a router, I probably would not have jumped to that. I suggest factory resetting each mesh AP/node one by one and re-adding them to the parent so you don't have to reconfigure your router in the hopes that works.
I set the additional mesh APs up from the website/CA section.
All that said, did you try power cycling the mesh nodes to see if that reset the backhaul?
How on earth would mesh work when parent is in bridge mode; I would appreciate if you share. If I follow SD method after I set up parent as AP, mesh would never work, and child never change its factory settings. If I apply SD method while parent is in router mode, I can easily make the mesh work, but then the child would lose connection (blinking red) once I switch parent to bridge.

By now, I spent a lot more hours on this than the money I saved not buying a real mesh!
Sep 23, 2024
4,372 Posts
Joined Feb 2006
Sep 23, 2024
Slickdeezee
Sep 23, 2024
4,372 Posts
For the stock firmware, is it possible to assign a static IP address to a device based on the device's MAC address?
Sep 23, 2024
3,668 Posts
Joined Dec 2006
Sep 23, 2024
Arkus
Sep 23, 2024
3,668 Posts
Quote from Slickdeezee :
For the stock firmware, is it possible to assign a static IP address to a device based on the device's MAC address?
Yes you can. You will reserve an address within the dhcp range to a specific MAC address.
Sep 23, 2024
4,372 Posts
Joined Feb 2006
Sep 23, 2024
Slickdeezee
Sep 23, 2024
4,372 Posts
Quote from Arkus :
Yes you can. You will reserve an address within the dhcp range to a specific MAC address.
Thanks found it under the Gears icon > Local Network tab > DHCP Reservations
1

Sign up for a Slickdeals account to remove this ad.

Sep 23, 2024
1,380 Posts
Joined Dec 2005
Sep 23, 2024
ProAm500
Sep 23, 2024
1,380 Posts
Quote from itsme13 :
if you happen to brick the device, i had to struggle to unbrick it.

Internet is full of instructions to unbrick linksys routers.

you can use any tftp server

try renaming the firmware to tortuga.img
also to flash firmware use command


run flashimg
and
run flashimg2

run both to flash both partitions.

this command was hard to find, i spend a sleepless night to find the right command.

update_both_images/flash_pri_image do not work on this.

Do you have links on the TFTP unbrick process? What TFTP client did you use?

Related Searches

Popular Deals

View All

Trending Deals

View All