source code for ids in manet
#1

Hai...I need source code related to intrusion detection of aodv protocol for Manet's..... Will you please provide me the code..
Reply
#2
The source is available for use in the public domain under the general GPL © UMBC. See the license terms in the source code. The tarball contains the complete source code and documentation for an intrusion detection system we have developed for ad hoc mobile networks. The compressed tarball also contains libpcap and a binary compiled for ARM. See the "Secure Routing and Intrusion Detection for Mobile Ad Hoc Networks" document for implementation details. The documentation is also sufficiently descriptive.

Migration to the wireless network of the wired network has been a worldwide trend in recent decades. The mobility and scalability of the wireless network made this possible in many applications. Among all contemporary wireless networks, Mobile Ad hoc NETwork (MANET) is one of the most important and unique applications. Unlike traditional network architecture, MANET does not require a fixed network infrastructure; Each node functions as both transmitter and receiver. Nodes communicate directly with each other when they are within the same communication range. Otherwise, they rely on their neighbors to relay messages. The auto-configuration capability of in MANET nodes makes it popular among mission-critical applications such as military use or emergency recovery. However, the open medium and the wide distribution of nodes make MANET vulnerable to malicious attackers. In this case, it is crucial to develop effective intrusion detection mechanisms to protect MANET from attacks. With the improvements in technology and the cut in hardware costs, we are witnessing a current trend of the expansion of MANETs in industrial applications. To adjust to this trend, we firmly believe that it is vital to address your potential security issues. In this article, we propose and implement a new intrusion detection system called EAACK (Enhanced Adaptive Acknowledgement) specially designed for MANETs. Compared to contemporary approaches, EAACK demonstrates higher rates of detection of malicious behavior under certain circumstances, while not greatly affecting the results of the network.

Sample NS2 Simulation code for MANET:

This is the code for inserting, look up and deleting entries in routing table involved in MANET.
void
aodv_rt_entry::pc_insert(nsaddr_t id)
{
if (pc_lookup(id) == NULL) {
AODV_Precursor *pc = new AODV_Precursor(id);
assert(pc);
LIST_INSERT_HEAD(&rt_pclist, pc, pc_link);
}
}
aodv_rt_entry::pc_lookup(nsaddr_t id)
{
AODV_Precursor *pc = rt_pclist.lh_first;
for(; pc; pc = pc->pc_link.le_next) {
if(pc->pc_addr == id)
return pc;
}
return NULL;
}
void
aodv_rt_entry::pc_delete(nsaddr_t id) {
AODV_Precursor *pc = rt_pclist.lh_first;
for(; pc; pc = pc->pc_link.le_next) {
if(pc->pc_addr == id) {
LIST_REMOVE(pc,pc_link);
delete pc;
break;
}
Reply

Important Note..!

If you are not satisfied with above reply ,..Please

ASK HERE

So that we will collect data for you and will made reply to the request....OR try below "QUICK REPLY" box to add a reply to this page
Popular Searches: manet project code, ids in manet code in ns2, ns2 manet source code, double guard ids project source code, ns 2 code for cbds in manet, project code for ids based on data mining, ids in manet using ns2 code,

[-]
Quick Reply
Message
Type your reply to this message here.

Image Verification
Please enter the text contained within the image into the text box below it. This process is used to prevent automated spam bots.
Image Verification
(case insensitive)

Possibly Related Threads...
Thread Author Replies Views Last Post
  free download source code of online college magazine 5 17,602 29-06-2018, 10:09 AM
Last Post: Guest
  opengl source code for butterfly 3 3,243 14-05-2018, 08:57 AM
Last Post: Akshatha k
  ice cream parlour management system in vb source code 4 5,257 04-04-2018, 11:58 PM
Last Post: vprk77
  source code in php for online training and placement cell management 1 6,665 23-03-2018, 09:06 AM
Last Post: ritzi
  free download college website project in html with source code 2 4,605 24-02-2018, 10:46 AM
Last Post: Guest
  source code for hospital management system in jsp 4 1,937 13-01-2018, 10:51 AM
Last Post: dhanabhagya
  source code in c for dna cryptography in computer sc ppt 1 1,515 09-01-2018, 09:59 PM
Last Post: harshavarshinib
  java programmings for bus ticket reservation source code 1 6,204 09-11-2017, 11:28 PM
Last Post: Ayushi Nagar
  location alarm android tutorial and source code 1 1,438 14-10-2017, 02:53 PM
Last Post: shakil19944
  source code in matlab for fuzzy based traffic light controll system 2 1,313 08-10-2017, 02:12 PM
Last Post: nomanamjad143

Forum Jump: