Reputation: 1
I am trying to route my traffic via a tunnel interface between 2 servers.
How do I capture those packets on iperf server and achieve end to end traffic flow passing via my tunnel and application.
Ping is working from tunAIp to tunBIp and ping packets are also observed in my application logs. I have tried capturing packets on a working iperf client server connection and observe some LLDP/ ARP packets which are not present in my tunnel interface route.
Upvotes: 0
Views: 73
Reputation: 1
Thanks to Packets not relayed to target application using tun interface I have solved my issue by disabling Checksum offload while setting up my Tunnel interface. TUN_F_CSUM was set in my application during tunnel creation which offloads the checksum validation for a later stage in data traffic and in my case it was never getting validated which caused the issue. Hence, on disabling it checksum gets validated on reception at tunnel A and issue got resolved.
Upvotes: 0