All of lore.kernel.org
 help / color / mirror / Atom feed
* [LARTC] Forwarded traffic bypassing filter
@ 2003-10-16 21:26 Amit Gandhi
  2003-10-17 12:38 ` Lawrence MacIntyre
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Amit Gandhi @ 2003-10-16 21:26 UTC (permalink / raw)
  To: lartc

Please consider the following scenario & corresponding question.....


                    Machine1                             Machine2
                _________________                  _________________
MachineX        |               |                  |               |
HTTP(1)         |               |                  |  HTTP Server  |
------>-------->|          -----|------------------|               |
            eth0|         /     |eth1              |eth0           |
 10.20.253.242/8|        /      |10.20.255.238/8   |10.20.246.247/8|
                |    HTTP(2)    |                  |               |
                |_______________|                  |_______________|

                10.20.246.247 dev eth1
		10.20.246.247 dev eth1 lladdr xx:xx:xx:xx:xx:xx
                proxy_arp =1
                ip_forward=1

Here are my shaping rules (primary goal is to send the web traffic
through a seperate queue)

tc qdisc add dev eth1 root handle 1: htb default 20

tc class add dev eth1 parent 1: classid 1:1 htb rate 2mbit burst 15k

tc class add dev eth1 parnet 1:1 classid 1:10 htb rate 1mbit ceil 2mbit
burst 15k
tc class add dev eth1 parnet 1:1 classid 1:20 htb rate 1mbit burst 15k

tc qdisc add dev eth1 parent 1:10 handle 10: sfq perturb 10
tc qdisc add dev eth1 parent 1:20 handle 20: sfq perturb 10

tc filter add dev eth1 protocol ip parent 1:0 prio 1 u32 match ip dport
0x50 0xffff flowid 1:10


Now, after all of this configuration I've observed that:

a) All the web requests comming from "MachineX" go thru the default
queue 20
b) Web traffic generated from "Machine1" does gets send thru queue 10


Why, is the forwarded traffic bypassing the filter?

I inserted debug messages in the 'u32_classify' function
inside the kernel, just to make sure that the filter is not
failing, but the function never gets called for HTTP(1)
traffic!!!


Regards,
+Amit
email: subscribeamit@yahoo.com

__________________________________
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
http://shopping.yahoo.com
_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2003-10-17 21:17 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-10-16 21:26 [LARTC] Forwarded traffic bypassing filter Amit Gandhi
2003-10-17 12:38 ` Lawrence MacIntyre
2003-10-17 13:25 ` Amit Gandhi
2003-10-17 13:31 ` Lawrence MacIntyre
2003-10-17 14:59 ` Amit Gandhi
2003-10-17 21:17 ` Amit Gandhi

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.