1

With the second IPv6 Launch Day behind us, i'm stuck waiting for traffic shaping support on IPv6 before i can deploy it to our network.

Is there any pc-based router that supports traffic shaping of IPv6?

Ian Boyd
  • 23,066

2 Answers2

3

traffic shaping ipv6 using tc for linux

tc qdisc add dev eth0 root handle 1: htb default 30
tc class add dev eth0 parent 1: classid 1:1 htb rate 256kbit
tc class add dev eth0 parent 1: classid 1:2 htb rate 256kbit
tc filter add dev eth0 protocol ipv6 parent 1:0 prio 1 u32 match ip6 dst 2001:a:b:c::2/64 flowid 1:1
tc filter add dev eth0 protocol ipv6 parent 1:0 prio 1 u32 match ip6 src 2001:a:b:c::2/64 flowid 1:2
0

Why not use a Linux box with a dual IP stack and iptables/tc?

Shorewall appears to do IPv6 based traffic shaping. http://www.shorewall.net/simple_traffic_shaping.html