Intermittent DSL connection problems

On my Netgear, the MTU is on the WAN setup.

Question: How to determine the right MTU value for your ISP access?
MTUs are multiples of 8 bytes, the largest being 1500. SO, we test
  • ping -l 1500 -f 8.8.8.8
reducing the 1500 by 8 until it stops reporting
Pinging 8.8.8.8 with 1500 bytes of data:
Packet needs to be fragmented but DF set.
That will be the best value for you.
 
Ping -l (1500-x*8) -f 8.8.8.8
fine, redo with X = {1,2,3,4,5...} until it's correct
ping -l 1492 -f 8.8.8.8
ping -l 1484 -f 8.8.8.8
ping -l 1476 -f 8.8.8.8
...
 
Look at this sequence and continue the pattern - - -
ping -l 1492 -f 8.8.8.8
ping -l 1484 -f 8.8.8.8
ping -l 1476 -f 8.8.8.8
 
Ok, I was copy/pasting your numbers from the previous post, what part of this ping -l 1484 -f 8.8.8.8 do I type in?
 
I should also probably mention the other computer in the house on ethernet was not affected that I know of.
 
Keep going!!! subtract 8 from the last value used and iterate.
Code:
ping -l 1476 -f 8.8.8.8
        ^^^^
 
Yes, that shows all the ping options
  • -l nnn sets the size of the packet to be send, in this test, NNN is > 8 and <=1500
  • -f disallows fragmentation
so the normal ping 8.8.8.8 becomes ping -l nnn -f 8.8.8.8
 
Sorry man, the options clearly show -l requires a number. NNN is representational of NUMBERS.

Start with a number of 1500, reducing by 8 until
Packet needs to be fragmented but DF set.
does not appear. THAT'S the MTU you want to use.

Reply WHEN and IF you get that result :sigh:
 
For the above post & this one, I'm using my iPad. I'm wondering if I should go back to wireless on my w7.
Why is only my pc affected by this & not the other one in the bldg?
 
Even the Wifi takes the path, PC--> WiFi (or wired) ---> Router ---> Modem ---> ISP

The PPoE indicts the modem/ISP connection so imo, it will happen regardless of wifi/wired.
 
Ok, but I'd still like to know why its ONLY my W7 computer & not the other one on the same router?? Not to mention my iPhone & iPad are on the same router & they're always online.:confused::confused:
 
Back