<div dir="ltr"><div><div><div><div>Hi,<br><br>I am performing some simulations on ndnSIM 1.0 and for some of my measurements I'd like to completely eliminate interest/data drops or at least make them as close to zero as possible. My understanding is that most packet drops happen due to a timeout or a queue overflow. For the interest part, I have tried to increase the lifetime of the interest packets, <span style="font-family:monospace,monospace">MaxPitEntryLifetime</span> and also the queue size as follows:<br><br><font><span style="font-family:monospace,monospace">ndn::AppHelper consumerHelper ("ns3::ndn::ConsumerZipfMandelbrot"); // to be installed on all consumers<br>consumerHelper.SetAttribute ("LifeTime", StringValue ("9999s"));<br>...<br>Config::Set ("/NodeList/<nodeID>/$ns3::ndn::Pit/MaxPitEntryLifetime", TimeValue (Seconds (9999))); // for all nodeID's<br>...<br>Config::SetDefault ("ns3::DropTailQueue::MaxPackets", StringValue ("9999"));<br><br></span></font></div><font><span style="font-family:arial,helvetica,sans-serif">Still, I am getting some interest and data drops. These drops are measured through </span><span style="font-family:monospace,monospace">L3AggregateTracer</span><span style="font-family:arial,helvetica,sans-serif"> and tend to increase</span></font><span style="font-family:arial,helvetica,sans-serif"> by i</span>ncreasing the channel delay using the following command:<br><br><span style="font-family:monospace,monospace">Config::SetDefault ("ns3::PointToPointChannel::Delay", StringValue ("500ms"));</span><br><br></div>I am wondering what other settings can lead to packet drops, both on interests and data and what is the most efficient way of preventing such drops?<br><br></div>Thanks,<br></div>Ali<br></div>