tc qdisc с GRE в openwrt

Я пытаюсь реализовать управление трафиком в интерфейсе GRE на плате openwrt. Для этого я следовал ниже шагов,

Create GRE interface named gre1 in both tunnel end devices.
Tested reachability with ping, Success.

create qdisc using following command.

tc qdisc add dev gre1 root handle 1: default 2

Before creating tc classes i tired to ping the tunnel interface but this failed. 
I tried to capture packet in gre1 but found 0 packets.

Monitored the statistics of qdisc using the command

tc -p -s -d qdisc show dev gre1

found that packet drop count is increasing.

Я проверил то же самое в Ubuntu PC и нашел работу. Кроме того, если я изменить туннель на VPN-туннель вместо GRE, он работает нормально.

Есть ли какая-то дополнительная вещь, которую я должен обработать, чтобы реализовать tc в GRE?

Любая помощь будет оценена.

1 ответ

Решение

Исправлена ​​!

Добавить класс

tc class add dev eth0 parent 1:1 classid 1:2 htb rate 60kbps ceil 100kbps

затем добавьте sfq для класса

tc qdisc add dev eth0 parent 1:2 handle 20: sfq
Другие вопросы по тегам