diff options
| author | Felix Fietkau | 2022-03-09 08:42:38 +0000 |
|---|---|---|
| committer | Felix Fietkau | 2022-03-17 08:01:03 +0000 |
| commit | bdfcb11847cee05a69e8d040a2e5d00a4bdfc16c (patch) | |
| tree | 082b38b1475cece06ec61887c6de482f10876772 | |
| parent | 5d158f6b3c15436c538ae41b7c850531bc9efaeb (diff) | |
| download | qosify-bdfcb11847cee05a69e8d040a2e5d00a4bdfc16c.tar.gz | |
interface: fix duplicated dns filter line
Signed-off-by: Felix Fietkau <nbd@nbd.name>
| -rw-r--r-- | interface.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/interface.c b/interface.c index 5e54f88..056c52f 100644 --- a/interface.c +++ b/interface.c @@ -287,11 +287,6 @@ cmd_add_ingress(struct qosify_iface *iface, bool eth) qosify_run_cmd(buf, false); ofs = prepare_tc_cmd(buf, sizeof(buf), "filter", "add", iface->ifname, " ingress"); - APPEND(buf, ofs, " protocol ip prio 5 u32 match ip sport 53 0xffff " - "flowid 1:1 action mirred egress redirect dev ifb-dns"); - qosify_run_cmd(buf, false); - - ofs = prepare_tc_cmd(buf, sizeof(buf), "filter", "add", iface->ifname, " ingress"); APPEND(buf, ofs, " protocol 802.1Q prio 6 u32 offset plus 4 match ip sport 53 0xffff " "flowid 1:1 action mirred egress redirect dev ifb-dns"); qosify_run_cmd(buf, false); |