What's new

[Fork] Asuswrt-Merlin 374.43 LTS releases (Archive)

  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

Hi @john9527! Thanks for your hard work! I am trying to re-compile 26E3 and found out you are missing the file /release/src/router/samba36/source3/configure in your repo. Grabbed it from Merlin's so not big deal, but just so you can check that for future pushes!
 
The following routers were released after the base code used for this fork was available, and are NOT supported.
  • AC66U-B1 (ARM based), AC68U Rev C1 and E1, AC1900, AC1900P, AC87U, AC3100, AC3200, AC88U, AC5300 (and the retail R versions)

Any progress on supporting the newer revisions, released after the base code for this fork, like the RT-AC68U White Rev E1 @john9527 ? No pressure, just checkin' whether you've made any progress (at supporting these) since our last chat.
 
just-a-taste102.png
 
I am testing iptables and ip6tables on V26E3 and having some problems ...

iptables -A logdrop -m length --length 1000:65535 -j DROP

does not work, but

iptables -A logdrop -m length --help

shows the length module command's syntax so I think the module is available
Same for ip6tables

What am I doing wrong?
 
In what sense? Error messages? How are you testing?

More information probably required, but logically it won't do anything because you are appending it to the end of the logdrop chain (after the -j DROP).
Error messages are

iptables: No chain/target/match by that name

ip6tables: No chain/target/match by that name

Yes this logically in wrong chain and the command has been reduced to minimum to show error. I picked logdrop chain so that if someone tries it, it will not cause any problems for them.

Compare with output where module u32 does not exist for ip6tables
ip6tables -A logdrop -m u32 --help
ip6tables v1.3.8: Couldn't load match `u32':File not found
 
Last edited:
It works for me. Have you confirmed that the logdrop chain actually exists? If not try rebooting the router (or creating the chain manually).

Yes chain exists and router rebooted.

My logdrop chain looks like

iptables -nvL logdrop --lin
Chain logdrop (17 references)
num pkts bytes target prot opt in out source destination
1 0 0 LOG !icmp -- * * 0.0.0.0/0 0.0.0.0/0 limit: avg 12/hour burst 12 LOG flags 7 level 4 prefix `DROP IPV4 '
2 0 0 LOG icmp -- * * 0.0.0.0/0 0.0.0.0/0 limit: avg 12/hour burst 12 LOG flags 7 level 4 prefix `DROP IPV4 icmp '
3 0 0 DROP all -- * * 0.0.0.0/0 0.0.0.0/0



Thanks for testing on your RT-AC68U, might be a problem on RT-N66U
 
Thanks for testing on your RT-AC68U, might be a problem on RT-N66U
N66U uses an older version of iptables and it may not be supported.

EDIT: it is supported, but you need to manually load the module on the N66
 
Last edited:
Thanks for testing on your RT-AC68U, might be a problem on RT-N66U
Yes, that's what I was thinking:

Code:
admin@RT-AC68U:/# lsmod | grep len
xt_length                890  2

admin@RT-AC68U:/# find / -name '*xt_length*'
/lib/modules/2.6.36.4brcmarm/kernel/net/netfilter/xt_length.ko
/sys/module/xt_length
/usr/lib/xtables/libxt_length.so
 
N66U uses an older version of iptables and it may not be supported.

EDIT: it is supported, but you need to manually load the module on the N66

Worked after " insmod xt_length" thanks
 
Can the cfe be edited on that model?
Haven't actually tried. Haven't seen a need since it's already at 1.4. I would have to assume that since would have an encrypted CFE, but could test maybe over the weekend, see if I can dump it and read it out.
 
Haven't actually tried. Haven't seen a need since it's already at 1.4. I would have to assume that since would have an encrypted CFE, but could test maybe over the weekend, see if I can dump it and read it out.
1.4:confused: (GHz?) or 2.0.0.6?
 

Latest threads

Sign Up For SNBForums Daily Digest

Get an update of what's new every day delivered to your mailbox. Sign up here!
Top