I cant ping with more than 1000 bytes

adampangrac

Prominent
Oct 8, 2017
1
0
510
I can ping my gateway with 2000+ bytes but i can't ping google.com with 2000+ bytes

Gateway
Pinging 192.168.1.1 with 65500 bytes of data:
Reply from 192.168.1.1: bytes=65500 time=12ms TTL=64
Reply from 192.168.1.1: bytes=65500 time=13ms TTL=64
Reply from 192.168.1.1: bytes=65500 time=13ms TTL=64
Reply from 192.168.1.1: bytes=65500 time=12ms TTL=64

Google
Pinging google.com [172.217.23.206] with 65500 bytes of data:
Request timed out.
Request timed out.
Request timed out.
Request timed out.

Can you please help me

Sorry for my english
 
Solution
If you want to find out the mtu, then put "-f" on your ping command. That is a don't fragment option.

ping -f -l 1470 8.8.8.8

Pinging 8.8.8.8 with 1470 bytes of data:
Reply from 8.8.8.8: bytes=1470 time=13ms TTL=58
Reply from 8.8.8.8: bytes=1470 time=13ms TTL=58
Reply from 8.8.8.8: bytes=1470 time=12ms TTL=58
Reply from 8.8.8.8: bytes=1470 time=13ms TTL=58

Ping statistics for 8.8.8.8:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 12ms, Maximum = 13ms, Average = 12ms

ping -f -l 1480 8.8.8.8

Pinging 8.8.8.8 with 1480 bytes of data:
Packet needs to be fragmented but DF set.
Packet needs to be fragmented but DF set.
Packet needs to be fragmented but DF set...
If you want to find out the mtu, then put "-f" on your ping command. That is a don't fragment option.

ping -f -l 1470 8.8.8.8

Pinging 8.8.8.8 with 1470 bytes of data:
Reply from 8.8.8.8: bytes=1470 time=13ms TTL=58
Reply from 8.8.8.8: bytes=1470 time=13ms TTL=58
Reply from 8.8.8.8: bytes=1470 time=12ms TTL=58
Reply from 8.8.8.8: bytes=1470 time=13ms TTL=58

Ping statistics for 8.8.8.8:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 12ms, Maximum = 13ms, Average = 12ms

ping -f -l 1480 8.8.8.8

Pinging 8.8.8.8 with 1480 bytes of data:
Packet needs to be fragmented but DF set.
Packet needs to be fragmented but DF set.
Packet needs to be fragmented but DF set.
Packet needs to be fragmented but DF set.
 
Solution