It might/could/should work. At least it used to for one user with a failover setup.Which is current status for Dual WAN support?
Didn't try it again because it was breaking QoS completely.
I think so. It reaches the router because the IP is not local, gets hairpinned back to the LAN interface, where download limits are applied.Is it be because the DNS servers resolve the domain to my external IP instead of the internal one and therefore is counted as WAN traffic?
Many options to add a hosts.add file, or dnsmasq.conf.add with an address= or host-record= entry. I personally like the host-record entry because you can specify a TTL without impacting Diversion.Is there any way to completely bypass QoS for that domain name? Maybe hardcoding a DNS record somewhere in the router (also using Diversion to get rid of ads) so the gamell.mynas.com always resolves directly to the local IP internally?
host-record=gemell.mynas.com,192.168.1.2,3600
service restart_dnsmasq
It worked like a charm, thank you so much!host-record=gemell.mynas.com,192.168.1.2,3600
When the router sends its own traffic to the internet, it does not get classified by the Trend Micro engine. Traffic from the LAN to the Internet gets classified normally. So the router traffic can be manually classified by an iptables rule and this option determines what priority is given by that rule. This would be router traffic such as dnsmasq DNS forwarding, amtm update checks, Entware updates, router speedtest uploads, and router VPN client upload traffic.Please someone explain this option to me in a simple way?
“Router/VPN Client Outbound Traffic Class”
I like that quote!!! @dave14305 I'm curious to know if you been cooking something in regards to Flex??? Guess only time will telll haha
Nothing cooking yet. Just reacquainting myself with my old setup, and keeping it simple for a while.I like that quote!!! @dave14305 I'm curious to know if you been cooking something in regards to Flex??? Guess only time will telll haha
It's certainly possible to do so outside of FlexQoS. It won't look right in FlexQoS when looking at Tracked Connections, however.@dave14305 I have an IPTV service which is being classified as Web Surfing and all their servers end xxx.xxx.xxx.xxx".fibertel.com.ar" and ".telecom.net.ar"
Is it possible to make a wildcard to capture all that traffic and mark it as streaming?
/jffs/scripts/firewall-start
(replace eth0 with your WAN interface if not eth0):if ! ipset -L -n Streaming >/dev/null 2>&1; then ipset -q create Streaming hash:ip timeout 86400; fi
iptables -t mangle -A POSTROUTING -o br0 -m set --match-set Streaming src -j MARK --set-xmark 0x8004ffff/0xc03fffff
iptables -t mangle -A POSTROUTING -o eth0 -m set --match-set Streaming dst -j MARK --set-xmark 0x4004ffff/0xc03fffff
/jffs/configs/dnsmasq.conf.add
:max-cache-ttl=86400
ipset=/fibertel.com.ar/telecom.net.ar/Streaming
service "restart_dnsmasq;restart_qos;restart_firewall"
Thanks!!! I'll do it laterIt's certainly possible to do so outside of FlexQoS. It won't look right in FlexQoS when looking at Tracked Connections, however.
Add the following commands to
- Create an ipset.
- Configure dnsmasq to populate the ipset.
- Add an iptables rule to mark anything matching the ipset as streaming.
/jffs/scripts/firewall-start
(replace eth0 with your WAN interface if not eth0):
Add the following config toBash:if ! ipset -L -n Streaming >/dev/null 2>&1; then ipset -q create Streaming hash:ip timeout 86400; fi iptables -t mangle -A POSTROUTING -o br0 -m set --match-set Streaming src -j MARK --set-xmark 0x8004ffff/0xc03fffff iptables -t mangle -A POSTROUTING -o eth0 -m set --match-set Streaming dst -j MARK --set-xmark 0x4004ffff/0xc03fffff
/jffs/configs/dnsmasq.conf.add
:
To give it a whirl, run:Code:max-cache-ttl=86400 ipset=/fibertel.com.ar/telecom.net.ar/Streaming
You will hopefully see the IPTV traffic show up as Streaming in the graphs, but they will still appear as Web Surfing in the Tracked Connections list.Bash:service "restart_dnsmasq;restart_qos;restart_firewall"
If the IPTV service uses IPv6, there are additional changes needed to create the IPv6 version of these commands.
Thanks. Well i have been using qos before (from freshjr to flexqos) on my ac87u since i was on less than 100mbps. Since then it has been part of my router setup so kinda hard for me to stop using it. Lol. Anyway, i just enabled it and just stopped using autobw.Welcome to the forums @heille1221.
This is expected.
Any reason why you need to use FlexQoS anymore?
Welcome To SNBForums
SNBForums is a community for anyone who wants to learn about or discuss the latest in wireless routers, network storage and the ins and outs of building and maintaining a small network.
If you'd like to post a question, simply register and have at it!
While you're at it, please check out SmallNetBuilder for product reviews and our famous Router Charts, Ranker and plenty more!