Re: [LARTC] tc act ipt errors

2007-01-31 Thread Marco Berizzi
 Tablename: mangle hook: NF_IP_PRE_ROUTING
 target: MARK set 0x1 index 0
 Action 4 device ifb0 ifindex 10
 RTNETLINK answers: No such file or directory
 We have an error talking to the kernel

 I have act_mirred loaded, and I have
 act_ipt loaded. What gives?

Did you load the iptables mark module?


___
LARTC mailing list
LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/cgi-bin/mailman/listinfo/lartc


[LARTC] tc act ipt errors

2007-01-30 Thread Leigh Sharpe
Hi all,
 I'm having a hell of a time getting tc and IFBs to co-operate.
I've copied the following from http://linux-net.osdl.org/index.php/IFB:
 
--
export TC=/sbin/tc
$TC qdisc add dev ifb0 root handle 1: prio 
$TC qdisc add dev ifb0 parent 1:1 handle 10: sfq
$TC qdisc add dev ifb0 parent 1:2 handle 20: tbf rate 20kbit buffer 1600 limit 
3000
$TC qdisc add dev ifb0 parent 1:3 handle 30: sfq
$TC filter add dev ifb0 protocol ip pref 1 parent 1: handle 1 fw classid 1:1
$TC filter add dev ifb0 protocol ip pref 2 parent 1: handle 2 fw classid 1:2
ifconfig ifb0 up
$TC qdisc add dev eth0 ingress
# redirect all IP packets arriving in eth0 to ifb0 
# use mark 1 -- puts them onto class 1:1
$TC filter add dev eth0 parent : protocol ip prio 10 u32 \
  match u32 0 0 flowid 1:1 \
  action ipt -j MARK --set-mark 1 \
  action mirred egress redirect dev ifb0
--

Gives me an error:

Tablename: mangle hook: NF_IP_PRE_ROUTING
target: MARK set 0x1 index 0
Action 4 device ifb0 ifindex 10
RTNETLINK answers: No such file or directory
We have an error talking to the kernel

Any ideas why?
I have act_mirred loaded, and I have act_ipt loaded. What gives?

 
Regards,
 Leigh
 
Leigh Sharpe
Network Systems Engineer
Pacific Wireless
Ph +61 3 9584 8966
Mob 0408 009 502
email [EMAIL PROTECTED] blocked::mailto:[EMAIL PROTECTED] 
web www.pacificwireless.com.au blocked::http://www.pacificwireless.com.au/ 
___
LARTC mailing list
LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/cgi-bin/mailman/listinfo/lartc