I just want to know how can we generate packets with MTU size greater than 1500 MTU usin Ostinato. I tried to generate packets with MTU greater than 1500 but packets are not getting generated.
And if I try to send packets with Greater MTU size using ping command, its working fine on the same system where Ostinato is installed. Below is the o/p using ping command.
[root@kipgen01 ~]# ping -s 2000 172.29.7.48
PING 172.29.7.48 (172.29.7.48) 2000(2028) bytes of data.
2008 bytes from
172.29.7.48: icmp_seq=1 ttl=62 time=0.748 ms
2008 bytes from
172.29.7.48: icmp_seq=2 ttl=62 time=0.499 ms
2008 bytes from
172.29.7.48: icmp_seq=3 ttl=62 time=0.576 ms
[root@kipgen03 ~]# tshark -i eth1 src host 172.29.1.196
Running as user "root" and group "root". This could be dangerous.
Capturing on eth1
0.000000 172.29.1.196 -> 172.29.7.48 IPv4 1514 Fragmented IP protocol (proto=ICMP 1, off=0, ID=bc8a)
0.000021 172.29.1.196 -> 172.29.7.48 ICMP 562 Echo (ping) request id=0x487c, seq=6/1536, ttl=62
0.999982 172.29.1.196 -> 172.29.7.48 IPv4 1514 Fragmented IP protocol (proto=ICMP 1, off=0, ID=bc8b)
0.999998 172.29.1.196 -> 172.29.7.48 ICMP 562 Echo (ping) request id=0x487c, seq=7/1792, ttl=62
1.999951 172.29.1.196 -> 172.29.7.48 IPv4 1514 Fragmented IP protocol (proto=ICMP 1, off=0, ID=bc8c)
1.999967 172.29.1.196 -> 172.29.7.48 ICMP 562 Echo (ping) request id=0x487c, seq=8/2048, ttl=62
2.999936 172.29.1.196 -> 172.29.7.48 IPv4 1514 Fragmented IP protocol (proto=ICMP 1, off=0, ID=bc8d)
2.999952 172.29.1.196 -> 172.29.7.48 ICMP 562 Echo (ping) request id=0x487c, seq=9/2304, ttl=62
Can you please suggest me how can I generate packets with MTU greater than 1500 MTU using Ostinato. Thanks in advance.