[ns] Does DSDV stores the Routing table of its neighbours?????

2006-04-14 Thread guzinu
Hi Jeevesh, DSDV stores the Routing table for each node that is modified by the information received by the node's neighbor nodes. rtable.h file contains class RoutingTable and rtable.cc stores each entry, contains information about the current node's neighbors, into rtable_ent *rtab

Re: [ns] Does DSDV stores the Routing table of its neighbours?????

2006-04-14 Thread guzinu
Hi Jeevesh, Actually DSDV doesn't have the all the neighbours's routing table with it, at the time of calculation of shortest path. it has got only necessary information gathered by the neighbor nodes during triggered and periodic update. It gets the routing update packet from its

Re: [ns] How to use both otcl and C++?????

2006-04-16 Thread guzinu
Hi Asma, You must write your own command function in your c++ code.For Example, your class name is MyAgent and then it must contain a member function called by command . Via this function, you can call functions that are defined in your class (MyAgent). This function provides you

Re: [ns] AODV - Route Repair Issue

2006-05-08 Thread guzinu
Hi Gabriel, I send you some explanations about local repair from rfc 3561. localrepairtimer function that is called from rt_ll_failed function is for local repair as explained below. /*_*/ 6.12. Local Repair When a link break in an active route

Re: [ns] Interval for HELLO message

2006-05-10 Thread guzinu
Hi Choong, You did what I am thinking. But I don't understand why the results are the same with your former experiments. I think about this topic, and I can find anything else, I inform you. What do you mean with round ? you can explain more clear, maybe I can help. Best

Re: [ns] What does AGT in trace file indicate?

2006-06-27 Thread guzinu
it indicates agent level. For example the trace file that is the output of a wireless scenario using AODV routing protocol. The agent level represents the layer that implements AODV routing protocol. Hello all... Just I woulk like to ask what does the AGT in the output trace file indicate?

Re: [ns] How can I add extension to packets in AODV?

2006-06-28 Thread guzinu
you can change AODV packet header (RREQUEST,RREPLY,RERROR) with yours. Or you can add some extra fields in this packet headers. All the headers using by the AODV are defined in the aodv_packet.h file. For example in the following code, temp field is added by me. Guzin ULUTAS (CEng) struct

Re: [ns] How to use cmu-trace

2006-07-13 Thread guzinu
you can learn it from the trace file after completion of your simulation. you can search the field whose value is RTR and node ID is what you want with some shell programming experiment.   Hi all, I my project i want to trace/count the no of pkts etc. I am working with wireless ad hoc

Re: [ns] Creating an AODV agent

2006-10-04 Thread guzinu
No, line is already included in your script, no need to do anything else. Hi Is it necessary to create an AODV agent and attach it to every node if the following line is already included in the script? set val(rp)AODV;# routing protocol

Re: [ns] Hello messages

2007-03-30 Thread guzinu
hello mechanism isn't active by default. because of the following sentences in aodv.cc file. #ifndef AODV_LINK_LAYER_DETECTION htimer.handle((Event*) 0); ntimer.handle((Event*) 0); #endif Guzin ULUTAS (CEng) Hi, Sombody can tell me if hello messages mechanism is active in