cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
5603
Views
0
Helpful
7
Replies

RVS4000 PING Issue with certain packet sizes

cmartin97
Level 1
Level 1

I'm having an issue with my internal LAN connection using a RVS4000 router.  My configuration is basically factory default except I use 192.168.99.1/255.255.255.0 for my network.

If I ping using any packet size up to 1024 I don't have any issues.  ping fails for any packet sizes from 1025 to 1472. 

I thought I had a bad wire or setting on my PC but I've tried multiple ports and multiple PCs on the router.

The command I'm running is ping 192.168.99.1 -l <#bytes>

I've tried this between other nodes on the network and it only seems to fail from the LAN to the RVS4000.

A little more research and my MTU is set at 1500 which means any packet sent with more than 1472 bytes (sans header) will be fragmented.

So it's something between 1K and when packets are fragmented.

UPDATE:  I changed the MTU on the PCs and Laptops on my network to 1052 instead of the default 1500 and that seemed to resolve the issue.

Is there a reason the RVS4000 requires this non-default MTU setting?

7 Replies 7

mgierhart
Level 1
Level 1

Chris - Did you ever get an answer on this? I am having the exact same issues; not able to pass a packet size over 1024.. Updated resetting back to factory settings and updating firmware did not fix the issue.

HI,

Well when i seen this post , and i had to get an RVS4000 out of stock and test for myself and didn't have the issues explained above. What version of RVS4000 do you guys have? what firmware is it running? I would like to try and replicate in our lab.

Thanks,

Jasbryan

We are using the plan RVS4000 and the firmware is v1.3.13.02 15/JUN/2011

I have 2 of these and both having same issue. I am connecting one of

the units on my service bench, from PC start to LAN port.

Reset Router to default factory settings prior to re-flash.

Using ping 192.168.1.1 -l 1024

Anything of 1024 times out.

Mark

Mark,

Strange - yeah e-mail me directly would like to get a confirmation file and load it on my lab RVS4000 for testing.

Jasbryan

Here is a batch file script I wrote to test this issue  my RVS4000 is at ip 192.168.99.1

@echo off

set pingResult=

FOR /L %%G IN (1000,1,2000) DO (
    ping -n 1 192.168.99.1 -l %%G | find "bytes=" > nul

    if ERRORLEVEL 1 (
       echo ping with %%G bytes - FAIL
    ) else (
       echo ping with %%G bytes - SUCCESS
    )
)

It fails only within a specifc range between 1025 and 1472.  1472 is when the package is fragmented and it succeeeds again  based on a 1500 MTU value.

output:

ping with 1000 bytes - SUCCESS

ping with 1001 bytes - SUCCESS

ping with 1002 bytes - SUCCESS

ping with 1003 bytes - SUCCESS

ping with 1004 bytes - SUCCESS

ping with 1005 bytes - SUCCESS

ping with 1006 bytes - SUCCESS

ping with 1007 bytes - SUCCESS

ping with 1008 bytes - SUCCESS

ping with 1009 bytes - SUCCESS

ping with 1010 bytes - SUCCESS

ping with 1011 bytes - SUCCESS

ping with 1012 bytes - SUCCESS

ping with 1013 bytes - SUCCESS

ping with 1014 bytes - SUCCESS

ping with 1015 bytes - SUCCESS

ping with 1016 bytes - SUCCESS

ping with 1017 bytes - SUCCESS

ping with 1018 bytes - SUCCESS

ping with 1019 bytes - SUCCESS

ping with 1020 bytes - SUCCESS

ping with 1021 bytes - SUCCESS

ping with 1022 bytes - SUCCESS

ping with 1023 bytes - SUCCESS

ping with 1024 bytes - SUCCESS

ping with 1025 bytes - FAIL

ping with 1026 bytes - FAIL

ping with 1027 bytes - FAIL

ping with 1028 bytes - FAIL

ping with 1029 bytes - FAIL

ping with 1030 bytes - FAIL

ping with 1031 bytes - FAIL

ping with 1032 bytes - FAIL

ping with 1033 bytes - FAIL

ping with 1034 bytes - FAIL

ping with 1035 bytes - FAIL

ping with 1036 bytes - FAIL

ping with 1037 bytes - FAIL

ping with 1038 bytes - FAIL

ping with 1039 bytes - FAIL

ping with 1040 bytes - FAIL

ping with 1041 bytes - FAIL

ping with 1042 bytes - FAIL

ping with 1043 bytes - FAIL

ping with 1044 bytes - FAIL

ping with 1045 bytes - FAIL

ping with 1046 bytes - FAIL

ping with 1047 bytes - FAIL

ping with 1048 bytes - FAIL

ping with 1049 bytes - FAIL

ping with 1050 bytes - FAIL

ping with 1051 bytes - FAIL

ping with 1052 bytes - FAIL

ping with 1053 bytes - FAIL

ping with 1054 bytes - FAIL

ping with 1055 bytes - FAIL

ping with 1056 bytes - FAIL

ping with 1057 bytes - FAIL

ping with 1058 bytes - FAIL

ping with 1059 bytes - FAIL

ping with 1060 bytes - FAIL

ping with 1061 bytes - FAIL

ping with 1062 bytes - FAIL

ping with 1063 bytes - FAIL

ping with 1064 bytes - FAIL

ping with 1065 bytes - FAIL

ping with 1066 bytes - FAIL

ping with 1067 bytes - FAIL

ping with 1068 bytes - FAIL

ping with 1069 bytes - FAIL

ping with 1070 bytes - FAIL

ping with 1071 bytes - FAIL

ping with 1072 bytes - FAIL

ping with 1073 bytes - FAIL

ping with 1074 bytes - FAIL

ping with 1075 bytes - FAIL

ping with 1076 bytes - FAIL

ping with 1077 bytes - FAIL

ping with 1078 bytes - FAIL

ping with 1079 bytes - FAIL

ping with 1080 bytes - FAIL

ping with 1081 bytes - FAIL

ping with 1082 bytes - FAIL

ping with 1083 bytes - FAIL

ping with 1084 bytes - FAIL

ping with 1085 bytes - FAIL

ping with 1086 bytes - FAIL

ping with 1087 bytes - FAIL

ping with 1088 bytes - FAIL

ping with 1089 bytes - FAIL

ping with 1090 bytes - FAIL

ping with 1091 bytes - FAIL

ping with 1092 bytes - FAIL

ping with 1093 bytes - FAIL

ping with 1094 bytes - FAIL

ping with 1095 bytes - FAIL

ping with 1096 bytes - FAIL

ping with 1097 bytes - FAIL

ping with 1098 bytes - FAIL

ping with 1099 bytes - FAIL

ping with 1100 bytes - FAIL

ping with 1101 bytes - FAIL

ping with 1102 bytes - FAIL

ping with 1103 bytes - FAIL

ping with 1104 bytes - FAIL

ping with 1105 bytes - FAIL

ping with 1106 bytes - FAIL

ping with 1107 bytes - FAIL

ping with 1108 bytes - FAIL

ping with 1109 bytes - FAIL

ping with 1110 bytes - FAIL

ping with 1111 bytes - FAIL

ping with 1112 bytes - FAIL

ping with 1113 bytes - FAIL

ping with 1114 bytes - FAIL

ping with 1115 bytes - FAIL

ping with 1116 bytes - FAIL

ping with 1117 bytes - FAIL

ping with 1118 bytes - FAIL

ping with 1119 bytes - FAIL

ping with 1120 bytes - FAIL

ping with 1121 bytes - FAIL

ping with 1122 bytes - FAIL

ping with 1123 bytes - FAIL

ping with 1124 bytes - FAIL

ping with 1125 bytes - FAIL

ping with 1126 bytes - FAIL

ping with 1127 bytes - FAIL

ping with 1128 bytes - FAIL

ping with 1129 bytes - FAIL

ping with 1130 bytes - FAIL

ping with 1131 bytes - FAIL

ping with 1132 bytes - FAIL

ping with 1133 bytes - FAIL

ping with 1134 bytes - FAIL

ping with 1135 bytes - FAIL

ping with 1136 bytes - FAIL

ping with 1137 bytes - FAIL

ping with 1138 bytes - FAIL

ping with 1139 bytes - FAIL

ping with 1140 bytes - FAIL

ping with 1141 bytes - FAIL

ping with 1142 bytes - FAIL

ping with 1143 bytes - FAIL

ping with 1144 bytes - FAIL

ping with 1145 bytes - FAIL

ping with 1146 bytes - FAIL

ping with 1147 bytes - FAIL

ping with 1148 bytes - FAIL

ping with 1149 bytes - FAIL

ping with 1150 bytes - FAIL

ping with 1151 bytes - FAIL

ping with 1152 bytes - FAIL

ping with 1153 bytes - FAIL

ping with 1154 bytes - FAIL

ping with 1155 bytes - FAIL

ping with 1156 bytes - FAIL

ping with 1157 bytes - FAIL

ping with 1158 bytes - FAIL

ping with 1159 bytes - FAIL

ping with 1160 bytes - FAIL

ping with 1161 bytes - FAIL

ping with 1162 bytes - FAIL

ping with 1163 bytes - FAIL

ping with 1164 bytes - FAIL

ping with 1165 bytes - FAIL

ping with 1166 bytes - FAIL

ping with 1167 bytes - FAIL

ping with 1168 bytes - FAIL

ping with 1169 bytes - FAIL

ping with 1170 bytes - FAIL

ping with 1171 bytes - FAIL

ping with 1172 bytes - FAIL

ping with 1173 bytes - FAIL

ping with 1174 bytes - FAIL

ping with 1175 bytes - FAIL

ping with 1176 bytes - FAIL

ping with 1177 bytes - FAIL

ping with 1178 bytes - FAIL

ping with 1179 bytes - FAIL

ping with 1180 bytes - FAIL

ping with 1181 bytes - FAIL

ping with 1182 bytes - FAIL

ping with 1183 bytes - FAIL

ping with 1184 bytes - FAIL

ping with 1185 bytes - FAIL

ping with 1186 bytes - FAIL

ping with 1187 bytes - FAIL

ping with 1188 bytes - FAIL

ping with 1189 bytes - FAIL

ping with 1190 bytes - FAIL

ping with 1191 bytes - FAIL

ping with 1192 bytes - FAIL

ping with 1193 bytes - FAIL

ping with 1194 bytes - FAIL

ping with 1195 bytes - FAIL

ping with 1196 bytes - FAIL

ping with 1197 bytes - FAIL

ping with 1198 bytes - FAIL

ping with 1199 bytes - FAIL

ping with 1200 bytes - FAIL

ping with 1201 bytes - FAIL

ping with 1202 bytes - FAIL

ping with 1203 bytes - FAIL

ping with 1204 bytes - FAIL

ping with 1205 bytes - FAIL

ping with 1206 bytes - FAIL

ping with 1207 bytes - FAIL

ping with 1208 bytes - FAIL

ping with 1209 bytes - FAIL

ping with 1210 bytes - FAIL

ping with 1211 bytes - FAIL

ping with 1212 bytes - FAIL

ping with 1213 bytes - FAIL

ping with 1214 bytes - FAIL

ping with 1215 bytes - FAIL

ping with 1216 bytes - FAIL

ping with 1217 bytes - FAIL

ping with 1218 bytes - FAIL

ping with 1219 bytes - FAIL

ping with 1220 bytes - FAIL

ping with 1221 bytes - FAIL

ping with 1222 bytes - FAIL

ping with 1223 bytes - FAIL

ping with 1224 bytes - FAIL

ping with 1225 bytes - FAIL

ping with 1226 bytes - FAIL

ping with 1227 bytes - FAIL

ping with 1228 bytes - FAIL

ping with 1229 bytes - FAIL

ping with 1230 bytes - FAIL

ping with 1231 bytes - FAIL

ping with 1232 bytes - FAIL

ping with 1233 bytes - FAIL

ping with 1234 bytes - FAIL

ping with 1235 bytes - FAIL

ping with 1236 bytes - FAIL

ping with 1237 bytes - FAIL

ping with 1238 bytes - FAIL

ping with 1239 bytes - FAIL

ping with 1240 bytes - FAIL

ping with 1241 bytes - FAIL

ping with 1242 bytes - FAIL

ping with 1243 bytes - FAIL

ping with 1244 bytes - FAIL

ping with 1245 bytes - FAIL

ping with 1246 bytes - FAIL

ping with 1247 bytes - FAIL

ping with 1248 bytes - FAIL

ping with 1249 bytes - FAIL

ping with 1250 bytes - FAIL

ping with 1251 bytes - FAIL

ping with 1252 bytes - FAIL

ping with 1253 bytes - FAIL

ping with 1254 bytes - FAIL

ping with 1255 bytes - FAIL

ping with 1256 bytes - FAIL

ping with 1257 bytes - FAIL

ping with 1258 bytes - FAIL

ping with 1259 bytes - FAIL

ping with 1260 bytes - FAIL

ping with 1261 bytes - FAIL

ping with 1262 bytes - FAIL

ping with 1263 bytes - FAIL

ping with 1264 bytes - FAIL

ping with 1265 bytes - FAIL

ping with 1266 bytes - FAIL

ping with 1267 bytes - FAIL

ping with 1268 bytes - FAIL

ping with 1269 bytes - FAIL

ping with 1270 bytes - FAIL

ping with 1271 bytes - FAIL

ping with 1272 bytes - FAIL

ping with 1273 bytes - FAIL

ping with 1274 bytes - FAIL

ping with 1275 bytes - FAIL

ping with 1276 bytes - FAIL

ping with 1277 bytes - FAIL

ping with 1278 bytes - FAIL

ping with 1279 bytes - FAIL

ping with 1280 bytes - FAIL

ping with 1281 bytes - FAIL

ping with 1282 bytes - FAIL

ping with 1283 bytes - FAIL

ping with 1284 bytes - FAIL

ping with 1285 bytes - FAIL

ping with 1286 bytes - FAIL

ping with 1287 bytes - FAIL

ping with 1288 bytes - FAIL

ping with 1289 bytes - FAIL

ping with 1290 bytes - FAIL

ping with 1291 bytes - FAIL

ping with 1292 bytes - FAIL

ping with 1293 bytes - FAIL

ping with 1294 bytes - FAIL

ping with 1295 bytes - FAIL

ping with 1296 bytes - FAIL

ping with 1297 bytes - FAIL

ping with 1298 bytes - FAIL

ping with 1299 bytes - FAIL

ping with 1300 bytes - FAIL

ping with 1301 bytes - FAIL

ping with 1302 bytes - FAIL

ping with 1303 bytes - FAIL

ping with 1304 bytes - FAIL

ping with 1305 bytes - FAIL

ping with 1306 bytes - FAIL

ping with 1307 bytes - FAIL

ping with 1308 bytes - FAIL

ping with 1309 bytes - FAIL

ping with 1310 bytes - FAIL

ping with 1311 bytes - FAIL

ping with 1312 bytes - FAIL

ping with 1313 bytes - FAIL

ping with 1314 bytes - FAIL

ping with 1315 bytes - FAIL

ping with 1316 bytes - FAIL

ping with 1317 bytes - FAIL

ping with 1318 bytes - FAIL

ping with 1319 bytes - FAIL

ping with 1320 bytes - FAIL

ping with 1321 bytes - FAIL

ping with 1322 bytes - FAIL

ping with 1323 bytes - FAIL

ping with 1324 bytes - FAIL

ping with 1325 bytes - FAIL

ping with 1326 bytes - FAIL

ping with 1327 bytes - FAIL

ping with 1328 bytes - FAIL

ping with 1329 bytes - FAIL

ping with 1330 bytes - FAIL

ping with 1331 bytes - FAIL

ping with 1332 bytes - FAIL

ping with 1333 bytes - FAIL

ping with 1334 bytes - FAIL

ping with 1335 bytes - FAIL

ping with 1336 bytes - FAIL

ping with 1337 bytes - FAIL

ping with 1338 bytes - FAIL

ping with 1339 bytes - FAIL

ping with 1340 bytes - FAIL

ping with 1341 bytes - FAIL

ping with 1342 bytes - FAIL

ping with 1343 bytes - FAIL

ping with 1344 bytes - FAIL

ping with 1345 bytes - FAIL

ping with 1346 bytes - FAIL

ping with 1347 bytes - FAIL

ping with 1348 bytes - FAIL

ping with 1349 bytes - FAIL

ping with 1350 bytes - FAIL

ping with 1351 bytes - FAIL

ping with 1352 bytes - FAIL

ping with 1353 bytes - FAIL

ping with 1354 bytes - FAIL

ping with 1355 bytes - FAIL

ping with 1356 bytes - FAIL

ping with 1357 bytes - FAIL

ping with 1358 bytes - FAIL

ping with 1359 bytes - FAIL

ping with 1360 bytes - FAIL

ping with 1361 bytes - FAIL

ping with 1362 bytes - FAIL

ping with 1363 bytes - FAIL

ping with 1364 bytes - FAIL

ping with 1365 bytes - FAIL

ping with 1366 bytes - FAIL

ping with 1367 bytes - FAIL

ping with 1368 bytes - FAIL

ping with 1369 bytes - FAIL

ping with 1370 bytes - FAIL

ping with 1371 bytes - FAIL

ping with 1372 bytes - FAIL

ping with 1373 bytes - FAIL

ping with 1374 bytes - FAIL

ping with 1375 bytes - FAIL

ping with 1376 bytes - FAIL

ping with 1377 bytes - FAIL

ping with 1378 bytes - FAIL

ping with 1379 bytes - FAIL

ping with 1380 bytes - FAIL

ping with 1381 bytes - FAIL

ping with 1382 bytes - FAIL

ping with 1383 bytes - FAIL

ping with 1384 bytes - FAIL

ping with 1385 bytes - FAIL

ping with 1386 bytes - FAIL

ping with 1387 bytes - FAIL

ping with 1388 bytes - FAIL

ping with 1389 bytes - FAIL

ping with 1390 bytes - FAIL

ping with 1391 bytes - FAIL

ping with 1392 bytes - FAIL

ping with 1393 bytes - FAIL

ping with 1394 bytes - FAIL

ping with 1395 bytes - FAIL

ping with 1396 bytes - FAIL

ping with 1397 bytes - FAIL

ping with 1398 bytes - FAIL

ping with 1399 bytes - FAIL

ping with 1400 bytes - FAIL

ping with 1401 bytes - FAIL

ping with 1402 bytes - FAIL

ping with 1403 bytes - FAIL

ping with 1404 bytes - FAIL

ping with 1405 bytes - FAIL

ping with 1406 bytes - FAIL

ping with 1407 bytes - FAIL

ping with 1408 bytes - FAIL

ping with 1409 bytes - FAIL

ping with 1410 bytes - FAIL

ping with 1411 bytes - FAIL

ping with 1412 bytes - FAIL

ping with 1413 bytes - FAIL

ping with 1414 bytes - FAIL

ping with 1415 bytes - FAIL

ping with 1416 bytes - FAIL

ping with 1417 bytes - FAIL

ping with 1418 bytes - FAIL

ping with 1419 bytes - FAIL

ping with 1420 bytes - FAIL

ping with 1421 bytes - FAIL

ping with 1422 bytes - FAIL

ping with 1423 bytes - FAIL

ping with 1424 bytes - FAIL

ping with 1425 bytes - FAIL

ping with 1426 bytes - FAIL

ping with 1427 bytes - FAIL

ping with 1428 bytes - FAIL

ping with 1429 bytes - FAIL

ping with 1430 bytes - FAIL

ping with 1431 bytes - FAIL

ping with 1432 bytes - FAIL

ping with 1433 bytes - FAIL

ping with 1434 bytes - FAIL

ping with 1435 bytes - FAIL

ping with 1436 bytes - FAIL

ping with 1437 bytes - FAIL

ping with 1438 bytes - FAIL

ping with 1439 bytes - FAIL

ping with 1440 bytes - FAIL

ping with 1441 bytes - FAIL

ping with 1442 bytes - FAIL

ping with 1443 bytes - FAIL

ping with 1444 bytes - FAIL

ping with 1445 bytes - FAIL

ping with 1446 bytes - FAIL

ping with 1447 bytes - FAIL

ping with 1448 bytes - FAIL

ping with 1449 bytes - FAIL

ping with 1450 bytes - FAIL

ping with 1451 bytes - FAIL

ping with 1452 bytes - FAIL

ping with 1453 bytes - FAIL

ping with 1454 bytes - FAIL

ping with 1455 bytes - FAIL

ping with 1456 bytes - FAIL

ping with 1457 bytes - FAIL

ping with 1458 bytes - FAIL

ping with 1459 bytes - FAIL

ping with 1460 bytes - FAIL

ping with 1461 bytes - FAIL

ping with 1462 bytes - FAIL

ping with 1463 bytes - FAIL

ping with 1464 bytes - FAIL

ping with 1465 bytes - FAIL

ping with 1466 bytes - FAIL

ping with 1467 bytes - FAIL

ping with 1468 bytes - FAIL

ping with 1469 bytes - FAIL

ping with 1470 bytes - FAIL

ping with 1471 bytes - FAIL

ping with 1472 bytes - FAIL

ping with 1473 bytes - SUCCESS

ping with 1474 bytes - SUCCESS

ping with 1475 bytes - SUCCESS

ping with 1476 bytes - SUCCESS

ping with 1477 bytes - SUCCESS

ping with 1478 bytes - SUCCESS

ping with 1479 bytes - SUCCESS

ping with 1480 bytes - SUCCESS

ping with 1481 bytes - SUCCESS

ping with 1482 bytes - SUCCESS

ping with 1483 bytes - SUCCESS

ping with 1484 bytes - SUCCESS

ping with 1485 bytes - SUCCESS

ping with 1486 bytes - SUCCESS

ping with 1487 bytes - SUCCESS

ping with 1488 bytes - SUCCESS

ping with 1489 bytes - SUCCESS

ping with 1490 bytes - SUCCESS

ping with 1491 bytes - SUCCESS

ping with 1492 bytes - SUCCESS

ping with 1493 bytes - SUCCESS

ping with 1494 bytes - SUCCESS

ping with 1495 bytes - SUCCESS

ping with 1496 bytes - SUCCESS

ping with 1497 bytes - SUCCESS

ping with 1498 bytes - SUCCESS

ping with 1499 bytes - SUCCESS

ping with 1500 bytes - SUCCESS

ping with 1501 bytes - SUCCESS

ping with 1502 bytes - SUCCESS

ping with 1503 bytes - SUCCESS

ping with 1504 bytes - SUCCESS

ping with 1505 bytes - SUCCESS

ping with 1506 bytes - SUCCESS

ping with 1507 bytes - SUCCESS

ping with 1508 bytes - SUCCESS

ping with 1509 bytes - SUCCESS

ping with 1510 bytes - SUCCESS

ping with 1511 bytes - SUCCESS

ping with 1512 bytes - SUCCESS

ping with 1513 bytes - SUCCESS

ping with 1514 bytes - SUCCESS

ping with 1515 bytes - SUCCESS

ping with 1516 bytes - SUCCESS

ping with 1517 bytes - SUCCESS

ping with 1518 bytes - SUCCESS

ping with 1519 bytes - SUCCESS

ping with 1520 bytes - SUCCESS

ping with 1521 bytes - SUCCESS

ping with 1522 bytes - SUCCESS

ping with 1523 bytes - SUCCESS

ping with 1524 bytes - SUCCESS

ping with 1525 bytes - SUCCESS

ping with 1526 bytes - SUCCESS

ping with 1527 bytes - SUCCESS

ping with 1528 bytes - SUCCESS

ping with 1529 bytes - SUCCESS

ping with 1530 bytes - SUCCESS

ping with 1531 bytes - SUCCESS

ping with 1532 bytes - SUCCESS

ping with 1533 bytes - SUCCESS

ping with 1534 bytes - SUCCESS

ping with 1535 bytes - SUCCESS

ping with 1536 bytes - SUCCESS

ping with 1537 bytes - SUCCESS

ping with 1538 bytes - SUCCESS

ping with 1539 bytes - SUCCESS

ping with 1540 bytes - SUCCESS

ping with 1541 bytes - SUCCESS

ping with 1542 bytes - SUCCESS

ping with 1543 bytes - SUCCESS

ping with 1544 bytes - SUCCESS

ping with 1545 bytes - SUCCESS

ping with 1546 bytes - SUCCESS

ping with 1547 bytes - SUCCESS

ping with 1548 bytes - SUCCESS

ping with 1549 bytes - SUCCESS

ping with 1550 bytes - SUCCESS

ping with 1551 bytes - SUCCESS

ping with 1552 bytes - SUCCESS

ping with 1553 bytes - SUCCESS

ping with 1554 bytes - SUCCESS

ping with 1555 bytes - SUCCESS

ping with 1556 bytes - SUCCESS

ping with 1557 bytes - SUCCESS

ping with 1558 bytes - SUCCESS

ping with 1559 bytes - SUCCESS

ping with 1560 bytes - SUCCESS

ping with 1561 bytes - SUCCESS

ping with 1562 bytes - SUCCESS

ping with 1563 bytes - SUCCESS

ping with 1564 bytes - SUCCESS

ping with 1565 bytes - SUCCESS

ping with 1566 bytes - SUCCESS

ping with 1567 bytes - SUCCESS

ping with 1568 bytes - SUCCESS

ping with 1569 bytes - SUCCESS

ping with 1570 bytes - SUCCESS

ping with 1571 bytes - SUCCESS

ping with 1572 bytes - SUCCESS

ping with 1573 bytes - SUCCESS

ping with 1574 bytes - SUCCESS

ping with 1575 bytes - SUCCESS

ping with 1576 bytes - SUCCESS

ping with 1577 bytes - SUCCESS

ping with 1578 bytes - SUCCESS

ping with 1579 bytes - SUCCESS

ping with 1580 bytes - SUCCESS

ping with 1581 bytes - SUCCESS

ping with 1582 bytes - SUCCESS

ping with 1583 bytes - SUCCESS

ping with 1584 bytes - SUCCESS

ping with 1585 bytes - SUCCESS

ping with 1586 bytes - SUCCESS

ping with 1587 bytes - SUCCESS

ping with 1588 bytes - SUCCESS

ping with 1589 bytes - SUCCESS

ping with 1590 bytes - SUCCESS

ping with 1591 bytes - SUCCESS

ping with 1592 bytes - SUCCESS

ping with 1593 bytes - SUCCESS

ping with 1594 bytes - SUCCESS

ping with 1595 bytes - SUCCESS

ping with 1596 bytes - SUCCESS

ping with 1597 bytes - SUCCESS

ping with 1598 bytes - SUCCESS

ping with 1599 bytes - SUCCESS

ping with 1600 bytes - SUCCESS

ping with 1601 bytes - SUCCESS

ping with 1602 bytes - SUCCESS

ping with 1603 bytes - SUCCESS

ping with 1604 bytes - SUCCESS

ping with 1605 bytes - SUCCESS

ping with 1606 bytes - SUCCESS

ping with 1607 bytes - SUCCESS

ping with 1608 bytes - SUCCESS

ping with 1609 bytes - SUCCESS

ping with 1610 bytes - SUCCESS

ping with 1611 bytes - SUCCESS

ping with 1612 bytes - SUCCESS

ping with 1613 bytes - SUCCESS

ping with 1614 bytes - SUCCESS

ping with 1615 bytes - SUCCESS

ping with 1616 bytes - SUCCESS

ping with 1617 bytes - SUCCESS

ping with 1618 bytes - SUCCESS

ping with 1619 bytes - SUCCESS

ping with 1620 bytes - SUCCESS

ping with 1621 bytes - SUCCESS

ping with 1622 bytes - SUCCESS

ping with 1623 bytes - SUCCESS

ping with 1624 bytes - SUCCESS

ping with 1625 bytes - SUCCESS

ping with 1626 bytes - SUCCESS

ping with 1627 bytes - SUCCESS

ping with 1628 bytes - SUCCESS

ping with 1629 bytes - SUCCESS

ping with 1630 bytes - SUCCESS

ping with 1631 bytes - SUCCESS

ping with 1632 bytes - SUCCESS

ping with 1633 bytes - SUCCESS

ping with 1634 bytes - SUCCESS

ping with 1635 bytes - SUCCESS

ping with 1636 bytes - SUCCESS

ping with 1637 bytes - SUCCESS

ping with 1638 bytes - SUCCESS

ping with 1639 bytes - SUCCESS

ping with 1640 bytes - SUCCESS

ping with 1641 bytes - SUCCESS

ping with 1642 bytes - SUCCESS

ping with 1643 bytes - SUCCESS

ping with 1644 bytes - SUCCESS

ping with 1645 bytes - SUCCESS

ping with 1646 bytes - SUCCESS

ping with 1647 bytes - SUCCESS

ping with 1648 bytes - SUCCESS

ping with 1649 bytes - SUCCESS

ping with 1650 bytes - SUCCESS

ping with 1651 bytes - SUCCESS

ping with 1652 bytes - SUCCESS

ping with 1653 bytes - SUCCESS

ping with 1654 bytes - SUCCESS

ping with 1655 bytes - SUCCESS

ping with 1656 bytes - SUCCESS

ping with 1657 bytes - SUCCESS

ping with 1658 bytes - SUCCESS

ping with 1659 bytes - SUCCESS

ping with 1660 bytes - SUCCESS

ping with 1661 bytes - SUCCESS

ping with 1662 bytes - SUCCESS

ping with 1663 bytes - SUCCESS

ping with 1664 bytes - SUCCESS

ping with 1665 bytes - SUCCESS

ping with 1666 bytes - SUCCESS

ping with 1667 bytes - SUCCESS

ping with 1668 bytes - SUCCESS

ping with 1669 bytes - SUCCESS

ping with 1670 bytes - SUCCESS

ping with 1671 bytes - SUCCESS

ping with 1672 bytes - SUCCESS

ping with 1673 bytes - SUCCESS

ping with 1674 bytes - SUCCESS

ping with 1675 bytes - SUCCESS

ping with 1676 bytes - SUCCESS

ping with 1677 bytes - SUCCESS

ping with 1678 bytes - SUCCESS

ping with 1679 bytes - SUCCESS

ping with 1680 bytes - SUCCESS

ping with 1681 bytes - SUCCESS

ping with 1682 bytes - SUCCESS

ping with 1683 bytes - SUCCESS

ping with 1684 bytes - SUCCESS

ping with 1685 bytes - SUCCESS

ping with 1686 bytes - SUCCESS

ping with 1687 bytes - SUCCESS

ping with 1688 bytes - SUCCESS

ping with 1689 bytes - SUCCESS

ping with 1690 bytes - SUCCESS

ping with 1691 bytes - SUCCESS

ping with 1692 bytes - SUCCESS

ping with 1693 bytes - SUCCESS

ping with 1694 bytes - SUCCESS

ping with 1695 bytes - SUCCESS

ping with 1696 bytes - SUCCESS

ping with 1697 bytes - SUCCESS

ping with 1698 bytes - SUCCESS

ping with 1699 bytes - SUCCESS

ping with 1700 bytes - SUCCESS

ping with 1701 bytes - SUCCESS

ping with 1702 bytes - SUCCESS

ping with 1703 bytes - SUCCESS

ping with 1704 bytes - SUCCESS

ping with 1705 bytes - SUCCESS

ping with 1706 bytes - SUCCESS

ping with 1707 bytes - SUCCESS

ping with 1708 bytes - SUCCESS

ping with 1709 bytes - SUCCESS

ping with 1710 bytes - SUCCESS

ping with 1711 bytes - SUCCESS

ping with 1712 bytes - SUCCESS

ping with 1713 bytes - SUCCESS

ping with 1714 bytes - SUCCESS

ping with 1715 bytes - SUCCESS

ping with 1716 bytes - SUCCESS

ping with 1717 bytes - SUCCESS

ping with 1718 bytes - SUCCESS

ping with 1719 bytes - SUCCESS

ping with 1720 bytes - SUCCESS

ping with 1721 bytes - SUCCESS

ping with 1722 bytes - SUCCESS

ping with 1723 bytes - SUCCESS

ping with 1724 bytes - SUCCESS

ping with 1725 bytes - SUCCESS

ping with 1726 bytes - SUCCESS

ping with 1727 bytes - SUCCESS

ping with 1728 bytes - SUCCESS

ping with 1729 bytes - SUCCESS

ping with 1730 bytes - SUCCESS

ping with 1731 bytes - SUCCESS

ping with 1732 bytes - SUCCESS

ping with 1733 bytes - SUCCESS

ping with 1734 bytes - SUCCESS

ping with 1735 bytes - SUCCESS

ping with 1736 bytes - SUCCESS

ping with 1737 bytes - SUCCESS

ping with 1738 bytes - SUCCESS

ping with 1739 bytes - SUCCESS

ping with 1740 bytes - SUCCESS

ping with 1741 bytes - SUCCESS

ping with 1742 bytes - SUCCESS

ping with 1743 bytes - SUCCESS

ping with 1744 bytes - SUCCESS

ping with 1745 bytes - SUCCESS

ping with 1746 bytes - SUCCESS

ping with 1747 bytes - SUCCESS

ping with 1748 bytes - SUCCESS

ping with 1749 bytes - SUCCESS

ping with 1750 bytes - SUCCESS

ping with 1751 bytes - SUCCESS

ping with 1752 bytes - SUCCESS

ping with 1753 bytes - SUCCESS

ping with 1754 bytes - SUCCESS

ping with 1755 bytes - SUCCESS

ping with 1756 bytes - SUCCESS

ping with 1757 bytes - SUCCESS

ping with 1758 bytes - SUCCESS

ping with 1759 bytes - SUCCESS

ping with 1760 bytes - SUCCESS

ping with 1761 bytes - SUCCESS

ping with 1762 bytes - SUCCESS

ping with 1763 bytes - SUCCESS

ping with 1764 bytes - SUCCESS

ping with 1765 bytes - SUCCESS

ping with 1766 bytes - SUCCESS

ping with 1767 bytes - SUCCESS

ping with 1768 bytes - SUCCESS

ping with 1769 bytes - SUCCESS

ping with 1770 bytes - SUCCESS

ping with 1771 bytes - SUCCESS

ping with 1772 bytes - SUCCESS

ping with 1773 bytes - SUCCESS

ping with 1774 bytes - SUCCESS

ping with 1775 bytes - SUCCESS

ping with 1776 bytes - SUCCESS

ping with 1777 bytes - SUCCESS

ping with 1778 bytes - SUCCESS

ping with 1779 bytes - SUCCESS

ping with 1780 bytes - SUCCESS

ping with 1781 bytes - SUCCESS

ping with 1782 bytes - SUCCESS

ping with 1783 bytes - SUCCESS

ping with 1784 bytes - SUCCESS

ping with 1785 bytes - SUCCESS

ping with 1786 bytes - SUCCESS

ping with 1787 bytes - SUCCESS

ping with 1788 bytes - SUCCESS

ping with 1789 bytes - SUCCESS

ping with 1790 bytes - SUCCESS

ping with 1791 bytes - SUCCESS

ping with 1792 bytes - SUCCESS

ping with 1793 bytes - SUCCESS

ping with 1794 bytes - SUCCESS

ping with 1795 bytes - SUCCESS

ping with 1796 bytes - SUCCESS

ping with 1797 bytes - SUCCESS

ping with 1798 bytes - SUCCESS

ping with 1799 bytes - SUCCESS

ping with 1800 bytes - SUCCESS

ping with 1801 bytes - SUCCESS

ping with 1802 bytes - SUCCESS

ping with 1803 bytes - SUCCESS

ping with 1804 bytes - SUCCESS

ping with 1805 bytes - SUCCESS

ping with 1806 bytes - SUCCESS

ping with 1807 bytes - SUCCESS

ping with 1808 bytes - SUCCESS

ping with 1809 bytes - SUCCESS

ping with 1810 bytes - SUCCESS

ping with 1811 bytes - SUCCESS

ping with 1812 bytes - SUCCESS

ping with 1813 bytes - SUCCESS

ping with 1814 bytes - SUCCESS

ping with 1815 bytes - SUCCESS

ping with 1816 bytes - SUCCESS

ping with 1817 bytes - SUCCESS

ping with 1818 bytes - SUCCESS

ping with 1819 bytes - SUCCESS

ping with 1820 bytes - SUCCESS

ping with 1821 bytes - SUCCESS

ping with 1822 bytes - SUCCESS

ping with 1823 bytes - SUCCESS

ping with 1824 bytes - SUCCESS

ping with 1825 bytes - SUCCESS

ping with 1826 bytes - SUCCESS

ping with 1827 bytes - SUCCESS

ping with 1828 bytes - SUCCESS

ping with 1829 bytes - SUCCESS

ping with 1830 bytes - SUCCESS

ping with 1831 bytes - SUCCESS

ping with 1832 bytes - SUCCESS

ping with 1833 bytes - SUCCESS

ping with 1834 bytes - SUCCESS

ping with 1835 bytes - SUCCESS

ping with 1836 bytes - SUCCESS

ping with 1837 bytes - SUCCESS

ping with 1838 bytes - SUCCESS

ping with 1839 bytes - SUCCESS

ping with 1840 bytes - SUCCESS

ping with 1841 bytes - SUCCESS

ping with 1842 bytes - SUCCESS

ping with 1843 bytes - SUCCESS

ping with 1844 bytes - SUCCESS

ping with 1845 bytes - SUCCESS

ping with 1846 bytes - SUCCESS

ping with 1847 bytes - SUCCESS

ping with 1848 bytes - SUCCESS

ping with 1849 bytes - SUCCESS

ping with 1850 bytes - SUCCESS

ping with 1851 bytes - SUCCESS

ping with 1852 bytes - SUCCESS

ping with 1853 bytes - SUCCESS

ping with 1854 bytes - SUCCESS

ping with 1855 bytes - SUCCESS

ping with 1856 bytes - SUCCESS

ping with 1857 bytes - SUCCESS

ping with 1858 bytes - SUCCESS

ping with 1859 bytes - SUCCESS

ping with 1860 bytes - SUCCESS

ping with 1861 bytes - SUCCESS

ping with 1862 bytes - SUCCESS

ping with 1863 bytes - SUCCESS

ping with 1864 bytes - SUCCESS

ping with 1865 bytes - SUCCESS

ping with 1866 bytes - SUCCESS

ping with 1867 bytes - SUCCESS

ping with 1868 bytes - SUCCESS

ping with 1869 bytes - SUCCESS

ping with 1870 bytes - SUCCESS

ping with 1871 bytes - SUCCESS

ping with 1872 bytes - SUCCESS

ping with 1873 bytes - SUCCESS

ping with 1874 bytes - SUCCESS

ping with 1875 bytes - SUCCESS

ping with 1876 bytes - SUCCESS

ping with 1877 bytes - SUCCESS

ping with 1878 bytes - SUCCESS

ping with 1879 bytes - SUCCESS

ping with 1880 bytes - SUCCESS

ping with 1881 bytes - SUCCESS

ping with 1882 bytes - SUCCESS

ping with 1883 bytes - SUCCESS

ping with 1884 bytes - SUCCESS

ping with 1885 bytes - SUCCESS

ping with 1886 bytes - SUCCESS

ping with 1887 bytes - SUCCESS

ping with 1888 bytes - SUCCESS

ping with 1889 bytes - SUCCESS

ping with 1890 bytes - SUCCESS

ping with 1891 bytes - SUCCESS

ping with 1892 bytes - SUCCESS

ping with 1893 bytes - SUCCESS

ping with 1894 bytes - SUCCESS

ping with 1895 bytes - SUCCESS

ping with 1896 bytes - SUCCESS

ping with 1897 bytes - SUCCESS

ping with 1898 bytes - SUCCESS

ping with 1899 bytes - SUCCESS

ping with 1900 bytes - SUCCESS

ping with 1901 bytes - SUCCESS

ping with 1902 bytes - SUCCESS

ping with 1903 bytes - SUCCESS

ping with 1904 bytes - SUCCESS

ping with 1905 bytes - SUCCESS

ping with 1906 bytes - SUCCESS

ping with 1907 bytes - SUCCESS

ping with 1908 bytes - SUCCESS

ping with 1909 bytes - SUCCESS

ping with 1910 bytes - SUCCESS

ping with 1911 bytes - SUCCESS

ping with 1912 bytes - SUCCESS

ping with 1913 bytes - SUCCESS

ping with 1914 bytes - SUCCESS

ping with 1915 bytes - SUCCESS

ping with 1916 bytes - SUCCESS

ping with 1917 bytes - SUCCESS

ping with 1918 bytes - SUCCESS

ping with 1919 bytes - SUCCESS

ping with 1920 bytes - SUCCESS

ping with 1921 bytes - SUCCESS

ping with 1922 bytes - SUCCESS

ping with 1923 bytes - SUCCESS

ping with 1924 bytes - SUCCESS

ping with 1925 bytes - SUCCESS

ping with 1926 bytes - SUCCESS

ping with 1927 bytes - SUCCESS

ping with 1928 bytes - SUCCESS

ping with 1929 bytes - SUCCESS

ping with 1930 bytes - SUCCESS

ping with 1931 bytes - SUCCESS

ping with 1932 bytes - SUCCESS

ping with 1933 bytes - SUCCESS

ping with 1934 bytes - SUCCESS

ping with 1935 bytes - SUCCESS

ping with 1936 bytes - SUCCESS

ping with 1937 bytes - SUCCESS

ping with 1938 bytes - SUCCESS

ping with 1939 bytes - SUCCESS

ping with 1940 bytes - SUCCESS

ping with 1941 bytes - SUCCESS

ping with 1942 bytes - SUCCESS

ping with 1943 bytes - SUCCESS

ping with 1944 bytes - SUCCESS

ping with 1945 bytes - SUCCESS

ping with 1946 bytes - SUCCESS

ping with 1947 bytes - SUCCESS

ping with 1948 bytes - SUCCESS

ping with 1949 bytes - SUCCESS

ping with 1950 bytes - SUCCESS

ping with 1951 bytes - SUCCESS

ping with 1952 bytes - SUCCESS

ping with 1953 bytes - SUCCESS

ping with 1954 bytes - SUCCESS

ping with 1955 bytes - SUCCESS

ping with 1956 bytes - SUCCESS

ping with 1957 bytes - SUCCESS

ping with 1958 bytes - SUCCESS

ping with 1959 bytes - SUCCESS

ping with 1960 bytes - SUCCESS

ping with 1961 bytes - SUCCESS

ping with 1962 bytes - SUCCESS

ping with 1963 bytes - SUCCESS

ping with 1964 bytes - SUCCESS

ping with 1965 bytes - SUCCESS

ping with 1966 bytes - SUCCESS

ping with 1967 bytes - SUCCESS

ping with 1968 bytes - SUCCESS

ping with 1969 bytes - SUCCESS

ping with 1970 bytes - SUCCESS

ping with 1971 bytes - SUCCESS

ping with 1972 bytes - SUCCESS

ping with 1973 bytes - SUCCESS

ping with 1974 bytes - SUCCESS

ping with 1975 bytes - SUCCESS

ping with 1976 bytes - SUCCESS

ping with 1977 bytes - SUCCESS

ping with 1978 bytes - SUCCESS

ping with 1979 bytes - SUCCESS

ping with 1980 bytes - SUCCESS

ping with 1981 bytes - SUCCESS

ping with 1982 bytes - SUCCESS

ping with 1983 bytes - SUCCESS

ping with 1984 bytes - SUCCESS

ping with 1985 bytes - SUCCESS

ping with 1986 bytes - SUCCESS

ping with 1987 bytes - SUCCESS

ping with 1988 bytes - SUCCESS

ping with 1989 bytes - SUCCESS

ping with 1990 bytes - SUCCESS

ping with 1991 bytes - SUCCESS

ping with 1992 bytes - SUCCESS

ping with 1993 bytes - SUCCESS

ping with 1994 bytes - SUCCESS

ping with 1995 bytes - SUCCESS

ping with 1996 bytes - SUCCESS

ping with 1997 bytes - SUCCESS

ping with 1998 bytes - SUCCESS

ping with 1999 bytes - SUCCESS

ping with 2000 bytes - SUCCESS

Am having the same problem.

When I turn off IPS though the problem is resolved.

I can confirm the same behavior as Dru.  I'm using IPS signature 1.5.  The IPS log is reporting OVER_PING_LENGTH as the name of the "attack" that's it's blocking for packets between 1024 and 1500. 

NoTimeNameSource
12012-01-27 10:55:28OVER_PING_LENGTH192.168.99.101
22012-01-27 10:55:24OVER_PING_LENGTH192.168.99.101
32012-01-27 10:55:20OVER_PING_LENGTH192.168.99.101
42012-01-27 10:55:16OVER_PING_LENGTH192.168.99.101
52012-01-27 10:55:12OVER_PING_LENGTH192.168.99.101
62012-01-27 10:55:08OVER_PING_LENGTH192.168.99.101
72012-01-27 10:55:04OVER_PING_LENGTH192.168.99.101
82012-01-27 10:55:00OVER_PING_LENGTH192.168.99.101
92012-01-27 10:54:57OVER_PING_LENGTH192.168.99.101
102012-01-27 10:54:22OVER_PING_LENGTH192.168.99.101
112012-01-27 10:54:19OVER_PING_LENGTH192.168.99.101

Is there a way in the IPS configuration to disable this one signature?

Chris