Cache Pollution Attack in NDN NDN starter NDN Project Paper ndnSIM Version-1 installation instruction installation script ns-3 ns-3 manual Cache Pollution Attack A lightweight mechanism for detection of cache pollution attacks in named data networking related paper Thesis CoMon++: Preventing Cache Pollution in NDN Efficiently and Effectively related paper source code An ANFIS-based cache replacement method for mitigating cache pollution attacks in Named Data Networking related paper
Posts
Showing posts from January, 2018
- Get link
- X
- Other Apps
Installing ns2 in ubuntu 16.04 with black hole patched # ns2 with black hole scenario sudo apt-get update sudo apt-get dist-upgrade sudo apt-get update sudo apt-get gcc sudo apt-get install build-essential autoconf automake sudo apt-get install tcl8.5-dev tk8.5-dev sudo apt-get install perl xgraph libxt-dev libx11-dev libxmu-dev wget http://sourceforge.net/projects/nsnam/files/allinone/ns-allinone-2.35/ns-allinone-2.35.tar.gz/download wget http://www.mediafire.com/download/qzckp45yada6c14/Blackhole.patch tar -xvzf ns-allinone-2.35.tar.gz mv Blackhole.patch ns-allinone-2.35 patch -p1 -t < Blackhole.patch cd ns-allinone-2.35 sudo ./install echo -e '#LD_LIBRARY_PATH\nOTCL_LIB=/home/naveen/Music/ns-allinone-2.35/otcl-1.14\nNS2_LIB=/home/naveen/Music/ns-allinone-2.35/lib\nX11_LIB=/usr/X11R6/lib\nUSR_LOCAL_LIB=/usr/local/lib \nexport LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$OTCL_LIB:$NS2_LIB:$X11_LIB:$USR_LOCAL_LIB\n# TCL_LIBRARY\nTCL_LIB=/home/naveen/Music/ns-allinone-2.3...