What's new

N14/N56/N65 QOS UP/DOWN + BFQ with Padavan's F/W builds

  • 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!

I was trying to figure out just that for the past few days. Thank you for answering that. I guess I'll just finish up the remaining rules and call it a day.


Quick question: Is there anyway to block specific IPs or an entire country from accessing PPTP server? Not a day goes by when someone from China tries to break into my PPTP server.

You could try something like this: http://tomatousb.org/forum/t-605311

So PPTP server works for you then?
 
PPTP server works fine for me on Android (4.1.2) and Windows 7 though I'm using it with miniDNS. I had quite a few issues getting OpenVPN up and running but most of them were resolved when I used public DNS.

Interesting... Wonder if my custom rom/kernel on my S4 is to blame.
 
New builds are up

Changes:
- Default kernel is now 3.4 for N14 and N56 (but not N65)
- New FPU emulator (probably faster)
- Some code refactoring which doesn't affect any functionality but some build scripts needed adjustment
- Support for more 3g/4g modems
- miniupnpd and minidlna mainstream updates
 
New builds are up. The moonman-6(2) was a mistake in the build script and is the same as moonman-7. I'll remove it shortly when I get home.
All build are now built with gcc-4.9.1, please report any regressions if any found.
 
qos script wasn't being included in the last couple of builds after Padavan introduced lots of changed into his build scripts. Should be fixed in the next build that is being compiled right now. Interestingly nobody noticed, including myself... that is before I started wondering why websites are so slow when torrents are being downloaded. :D
 
Great job :), I am running 3.4.3.8-084-moonman-8 version and everything is working great. Wifi speed has doubled from 3.0.3.8-081 version.
 
Hi all, im looking at using this new firmware, any chance of screen shots, also how easy would this firmware allow me to connect to my ISP Sky fibre in uk:)
 
Great job :), I am running 3.4.3.8-084-moonman-8 version and everything is working great. Wifi speed has doubled from 3.0.3.8-081 version.

Glad you like it ;)

Hi all, im looking at using this new firmware, any chance of screen shots, also how easy would this firmware allow me to connect to my ISP Sky fibre in uk:)

Flash it and you will see what it looks like :) You can always go back to whatever firmware you like. I don't see why it would not work with your ISP if you have it working with your current firmware.
 
moonman how do you make ipv6 work. These are settings I'm using with comcast right now.
 

Attachments

  • Wireless Router RT-N56U - IPv6 Protocol 2014-10-01 12-41-20.jpg
    Wireless Router RT-N56U - IPv6 Protocol 2014-10-01 12-41-20.jpg
    24.9 KB · Views: 370
My provider doesn't have ipv6 native stack so I am using HE tunnel. I can't really say how to make it work. Try different settings. From what I read comcast uses dhcpv6-pd so you need to use dhcpv6 stateless setting, not stateful - and tick the IA-PD switch (which is on for you already).
 
Anyone got CloudFlare DDNS working? I've been breaking my head since half a day now.

Both

wget -qO- https://www.cloudflare.com/api.html?a=DIUP\&hosts=<my host>\&u=<my email>\&tkn=<my API key>\&ip=`wget -qO- http://myip.dnsomatic.com/`

and

curl -s https://www.cloudflare.com/api.html?a=DIUP\&hosts=<my host>\&u=<my email>\&tkn=<my API key>\&ip=<WAN IP>

work from my PC, but don't work from the router. Have entware, and installed curl and wget-ssl. No go. Anyone had better luck?
 
Anyone got CloudFlare DDNS working? I've been breaking my head since half a day now.

Both

wget -qO- https://www.cloudflare.com/api.html?a=DIUP\&hosts=<my host>\&u=<my email>\&tkn=<my API key>\&ip=`wget -qO- http://myip.dnsomatic.com/`

and

curl -s https://www.cloudflare.com/api.html?a=DIUP\&hosts=<my host>\&u=<my email>\&tkn=<my API key>\&ip=<WAN IP>

work from my PC, but don't work from the router. Have entware, and installed curl and wget-ssl. No go. Anyone had better luck?

Have you tried --no-check-certificate with wget? Also if you are using ENTware then 'wget' package is what you want (wget-nossl is what you don't want), with OPTware I believe it's opposite, something like wget-ssl, while wget is without ssl.
To get wan ip you can $(nvram get wan0_ipaddr)

This is a script I found on the net and modified it a bit. Never tested though: don't have an account on cloudflare. You can delete all the checks for changed IP too if your IP doesn't change often, or at all (I know mine doesn't unless I change device (or MAC of the device) connected to the modem)

#!/bin/sh
API=API key <--change this
EMAIL= email <--change this
HOSTNAME= domain name <--change this

if test -f /tmp/ip_cloudflare.txt
then
CacheIP=$(cat /tmp/ip_cloudflare.txt)
fi

CurrentIP=$(nvram get wan0_ipaddr)
if [ "$CurrentIP" != "$CacheIP" ]
then
echo "Updating CloudFlare DNS with" $CurrentIP
echo date "IP" $CurrentIP >> /tmp/cloudflare-dns-update.log

wget --no-check-certificate -O /tmp/cloudflare.domain "​https://www.cloudflare.com/api_json.html?a=DIUP&hosts=$HOSTNAME&u=$EMAIL&tkn=$API&ip=$CurrentIP"

Source: https://dev.openwrt.org/ticket/12500
You can also ask inadyn developer to add it and it will automatically appear in the f/w https://github.com/troglobit/inadyn
 
Last edited:
Have you tried --no-check-certificate with wget? Also if you are using ENTware then 'wget' package is what you want (wget-nossl is what you don't want), with OPTware I believe it's opposite, something like wget-ssl, while wget is without ssl.
To get wan ip you can $(nvram get wan0_ipaddr)

This is a script I found on the net and modified it a bit. Never tested though: don't have an account on cloudflare. You can delete all the checks for changed IP too if your IP doesn't change often, or at all (I know mine doesn't unless I change device (or MAC of the device) connected to the modem)



Source: https://dev.openwrt.org/ticket/12500
You can also ask inadyn developer to add it and it will automatically appear in the f/w https://github.com/troglobit/inadyn
Haven't tried this, but I got it to update the IP by hosting a PHP script on my Web host. But now the problem is different. I'm not able to make the crontab persist. Every time I reboot the router, the crontab is gone :/

Sent from my Nexus 4
 
You must be doing something wrong. It works for me.
EDIT: i fixed the link above, it had last quotation mark missing.
 
Last edited:
My provider doesn't have ipv6 native stack so I am using HE tunnel. I can't really say how to make it work. Try different settings. From what I read comcast uses dhcpv6-pd so you need to use dhcpv6 stateless setting, not stateful - and tick the IA-PD switch (which is on for you already).

Alright so I tried the dhcpv6 stateless setting still no ipv6 :( address. I'm confused now.
 

Attachments

  • Wireless Router RT-N56U - IPv6 Protocol 2014-10-03 18-48-26.jpg
    Wireless Router RT-N56U - IPv6 Protocol 2014-10-03 18-48-26.jpg
    55.1 KB · Views: 507

Latest threads

Support SNBForums w/ Amazon

If you'd like to support SNBForums, just use this link and buy anything on Amazon. Thanks!

Sign Up For SNBForums Daily Digest

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