Jaggu wrote:
> Hi all...
>
> Me too have similar situation and am doing my first linux project.
> Could you please tell me where ..which location of kernel part I can
> find this funda happening ....like Linux/IP stack comparing or finding
> the source and destination address are same and re-directing packets to
> echo port if source and destination IP address are same?
>
> like file path...?
>
> thanks a lot
>
We faced the problem to have a 'ppp0' and 'eth0'
interface and we wanted to send data over ppp0
and receive it thru eth0 (and back) - just to measure
the delays.
Our solution was to modify
"net/ipv4/fib_frontend.c" of 2.4.19 near line 233
to let UDP packets pass, even though the source IP
address is a local one.
The solution was proposed by Ben Greear in 'linux.kernel' mailing list.
http://groups.google.de/groups?q=Gre...ofh.it&rnum=10
http://groups.google.de/groups?hl=de...om%26rnum%3D19
http://groups.google.de/groups?hl=de...om%26rnum%3D27
Toni