Hello,
Thanks for the fast reply!
Trying to send big frames or packets which of cause gets fragmented.
I was thinking it was buffer related, why I wanted to change the que size. The webfig states the pfifo que is in packets, but 35000 bytes is less than 50 packets which is default que size. Setting it 500 did not change anything either.
Big parcels gets fragmented of cause - but it fails above 34000'ish bytes. Se below - have also attached the overview from wireshark from the command below.
λ ping 172.16.210.40 -n 1 -4 -l 32000 && ping 172.16.210.40 -n 1 -4 -l 35000
Pinging 172.16.210.40 with 32000 bytes of data:
Reply from 172.16.210.40: bytes=32000 time=13ms TTL=64
Ping statistics for 172.16.210.40:
Packets: Sent = 1, Received = 1, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 13ms, Maximum = 13ms, Average = 13ms
Pinging 172.16.210.40 with 35000 bytes of data:
Request timed out.
Ping statistics for 172.16.210.40:
Packets: Sent = 1, Received = 0, Lost = 1 (100% loss),
Regarding fragmentations and max single packet size - forcing no fragmentations gives a limit on 1472 bytes, it looks like.
λ ping 172.16.210.40 -n 1 -4 -l 1472 -f && ping 172.16.210.40 -n 1 -4 -l 1474 -f
Pinging 172.16.210.40 with 1472 bytes of data:
Reply from 172.16.210.40: bytes=1472 time=1ms TTL=64
Ping statistics for 172.16.210.40:
Packets: Sent = 1, Received = 1, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 1ms, Maximum = 1ms, Average = 1ms
Pinging 172.16.210.40 with 1474 bytes of data:
Packet needs to be fragmented but DF set.
Ping statistics for 172.16.210.40:
Packets: Sent = 1, Received = 0, Lost = 1 (100% loss),
Big packet also fails on the ping to the router, not only towards device, but works on the OpenVPN (tap) adaptor itself.
λ ping 172.16.210.220 -n 1 -4 -l 65500 && ping 172.16.210.1 -n 1 -4 -l 65500
Pinging 172.16.210.220 with 65500 bytes of data:
Reply from 172.16.210.220: bytes=65500 time<1ms TTL=128
Ping statistics for 172.16.210.220:
Packets: Sent = 1, Received = 1, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms
Pinging 172.16.210.1 with 65500 bytes of data:
Request timed out.
Ping statistics for 172.16.210.1:
Packets: Sent = 1, Received = 0, Lost = 1 (100% loss),
You do not have the required permissions to view the files attached to this post.