Hi my name is Imran and i am doing DART project so can anyone plz tell how
to do it in ns2.34 Help Please urgent

On Thu, Mar 25, 2010 at 5:30 AM, <[email protected]> wrote:

> Send Ns-users mailing list submissions to
>        [email protected]
>
> To subscribe or unsubscribe via the World Wide Web, visit
>        http://mailman.isi.edu/mailman/listinfo/ns-users
> or, via email, send a message with subject or body 'help' to
>        [email protected]
>
> You can reach the person managing the list at
>        [email protected]
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Ns-users digest..."
>
>
> Today's Topics:
>
>   1. Multiple movement patterns (John Adams)
>   2. Saving the received beacons in VANET (???)
>   3. Is there any way to SHUTDOWN a MobileNode? (darkblue winnie)
>   4. Re: Is there any way to SHUTDOWN a MobileNode?
>      (Sergio Luis O. B. Correia)
>   5. Re: Is there any way to SHUTDOWN a MobileNode? (darkblue winnie)
>   6. Analysis of trace file of wireless networks (ankit kesharwani)
>   7. Re: Is there any way to SHUTDOWN a MobileNode?
>      (Francesco Salpietro)
>   8. isabelle haudecoeur (john peter)
>   9. How are mac802.11 packets traced in cmu-trace.cc? (deepthi p)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Tue, 23 Mar 2010 20:12:39 -0400
> From: John Adams <[email protected]>
> Subject: [ns] Multiple movement patterns
> To: [email protected]
> Message-ID:
>        <[email protected]>
> Content-Type: text/plain; charset=ISO-8859-1
>
> Hi,
>
> Does any one know if there is a way to define multiple movement patterns in
> a wireless simulation. For instance if I have 20 nodes and I want 10 of
> them
> to have a movement pattern generated in one file and the last 10 of them
> have the movement pattern generated in another file. Is there any way?
>
> Thanks,
> John
>
>
> ------------------------------
>
> Message: 2
> Date: Wed, 24 Mar 2010 11:54:00 +0900
> From: ???  ???[RASHEED HUSSAIN]         <[email protected]>
> Subject: [ns] Saving the received beacons in VANET
> To: [email protected]
> Message-ID:
>        <[email protected]>
> Content-Type: text/plain; charset=ISO-8859-1
>
> Dear NS2 Uers
> I am implementing VANET in NS2. I have implemented the beaconing mechansim
> in NS2.
> Now i want a vehicle to save the incoming beacons for cross-check. my
> beacons are going beyond one-hop. So i have to check for duplicity. Any
> suggetions, how it can be done?
> For Example i define some node to re-broadcast the beacon which it
> received.
> Now a neighbor node may already have got this beacon, but will again
> receive
> the re-broadcasted beacon. So the node should drop the duplicate beacon.
>
> Thanks in advance!
>
> Rasheed
>
>
> ------------------------------
>
> Message: 3
> Date: Wed, 24 Mar 2010 14:43:29 +0200
> From: darkblue winnie <[email protected]>
> Subject: [ns] Is there any way to SHUTDOWN a MobileNode?
> To: [email protected]
> Message-ID:
>        <[email protected]>
> Content-Type: text/plain; charset=ISO-8859-1
>
> Hi,
>
> I am currently implementing a protocol in wireless network. I use 802.11 as
> MAC, AODV as the routing protocol, and also use the Energy_Model to track
> energy.
> Now I have finished the basic protocol and want to do a simulation.
>
> But I need to shutdown a MobileNode during the simulation, which means the
> node should be totally OFF or at least does not transmit any packet.
> I have search a lot and do not find a right answer....
>
> So, is there any way to shut down the mobile node either in the Otcl script
> or in the cpp code?
>
> Thank you in advance.
>
> Yi Gong
>
>
> ------------------------------
>
> Message: 4
> Date: Wed, 24 Mar 2010 12:37:12 -0300
> From: "Sergio Luis O. B. Correia" <[email protected]>
> Subject: Re: [ns] Is there any way to SHUTDOWN a MobileNode?
> To: darkblue winnie <[email protected]>
> Cc: [email protected]
> Message-ID:
>        <[email protected]>
> Content-Type: text/plain; charset=ISO-8859-1
>
> Hello,
>
> have you tried calling "reset" for the node you want to turn off?
> something like
>
> # tell all nodes when the simulation ends
> for { set i 0 } { $i < $opt(nn) } { incr i } {
>        $ns_ at $opt(stop).0 "$node_($i) reset";
> }
>
>
> att,
> sergio
>
> On Wed, Mar 24, 2010 at 9:43 AM, darkblue winnie
> <[email protected]> wrote:
> >
> > Hi,
> >
> > I am currently implementing a protocol in wireless network. I use 802.11
> as
> > MAC, AODV as the routing protocol, and also use the Energy_Model to track
> > energy.
> > Now I have finished the basic protocol and want to do a simulation.
> >
> > But I need to shutdown a MobileNode during the simulation, which means
> the
> > node should be totally OFF or at least does not transmit any packet.
> > I have search a lot and do not find a right answer....
> >
> > So, is there any way to shut down the mobile node either in the Otcl
> script
> > or in the cpp code?
> >
> > Thank you in advance.
> >
> > Yi Gong
> >
>
>
>
> --
> Computer Networks and Security Laboratory (LARCES)
> State University of Ceara (UECE/Brazil)
>
>
>
> ------------------------------
>
> Message: 5
> Date: Wed, 24 Mar 2010 17:55:10 +0200
> From: darkblue winnie <[email protected]>
> Subject: Re: [ns] Is there any way to SHUTDOWN a MobileNode?
> To: "Sergio Luis O. B. Correia" <[email protected]>
> Cc: [email protected]
> Message-ID:
>        <[email protected]>
> Content-Type: text/plain; charset=ISO-8859-1
>
> Hi,
>
> Thank you for your reply first. :)
>
> I have tried "reset" command, but there seems to be no difference.
> I guess the reset command just reset the node and its lower layers (without
> the attached agent) to its initial (default) state, but after that, the
> node
> start to work from the default state.
>
> By the way, I have found a tricky way to deal with it...
> Because I use energy_model in my simulation, I just set the energy of the
> node to 0 and it stops sending and receiving packets.
> And I need to declare my class as friend class in EnergyModel because the
> energy_ is a protected variable.
> And I also need to change my agent to realize this function and also let it
> stop when the energy set to zero.
>
>
> On Wed, Mar 24, 2010 at 5:37 PM, Sergio Luis O. B. Correia <
> [email protected]> wrote:
>
> > Hello,
> >
> > have you tried calling "reset" for the node you want to turn off?
> > something like
> >
> > # tell all nodes when the simulation ends
> > for { set i 0 } { $i < $opt(nn) } { incr i } {
> >        $ns_ at $opt(stop).0 "$node_($i) reset";
> > }
> >
> >
> > att,
> > sergio
> >
> > On Wed, Mar 24, 2010 at 9:43 AM, darkblue winnie
> > <[email protected]> wrote:
> > >
> > > Hi,
> > >
> > > I am currently implementing a protocol in wireless network. I use
> 802.11
> > as
> > > MAC, AODV as the routing protocol, and also use the Energy_Model to
> track
> > > energy.
> > > Now I have finished the basic protocol and want to do a simulation.
> > >
> > > But I need to shutdown a MobileNode during the simulation, which means
> > the
> > > node should be totally OFF or at least does not transmit any packet.
> > > I have search a lot and do not find a right answer....
> > >
> > > So, is there any way to shut down the mobile node either in the Otcl
> > script
> > > or in the cpp code?
> > >
> > > Thank you in advance.
> > >
> > > Yi Gong
> > >
> >
> >
> >
> > --
> > Computer Networks and Security Laboratory (LARCES)
> > State University of Ceara (UECE/Brazil)
> >
>
>
> ------------------------------
>
> Message: 6
> Date: Wed, 24 Mar 2010 10:57:15 +0530
> From: ankit kesharwani <[email protected]>
> Subject: [ns] Analysis of trace file of wireless networks
> To: [email protected]
> Message-ID:
>        <[email protected]>
> Content-Type: text/plain; charset=ISO-8859-1
>
> ---------- Forwarded message ----------
> From: ankit kesharwani <[email protected]>
> Date: Wed, Mar 24, 2010 at 3:23 AM
> Subject: Analysis of trace file of wireless networks
> To: [email protected]
>
>
> Hi,
>  I am new to ns2 and I have project in which i have to simulate wireless
> mobile network,so I need some help in analyzing the trace file of wireless
> simulation in ns2
>
> Actually In my project ,there is need of information like time at which the
> particular node will recieve the first packet from the mobile node and time
> at which it recieve the last packet from the mobile node.
>
> Also suggest any tool to analyse the trace file.
> I have seen one tool known as "trace file analyzer" but don't know how to
> use it and not get any info
> regarding it.
>
>
> with regards
> Ankit Kesharwani
> M.tech
> Indian Institute of Technology ,Kanpur
> India
>
>
> ------------------------------
>
> Message: 7
> Date: Wed, 24 Mar 2010 18:37:49 +0100
> From: Francesco Salpietro <[email protected]>
> Subject: Re: [ns] Is there any way to SHUTDOWN a MobileNode?
> To: [email protected]
> Message-ID: <[email protected]>
> Content-Type: text/plain; charset=us-ascii
>
> #include <mobilenode.h>
> #include <god.h>
> #include <phy.h>
> #include <wireless-phy.h>
> #include <energy-model.h>
>
>
>  em = <thisnode>->energy_model();
>    em->node_on() = false;
>
>    // notify phy
>    p  = (thisnode->ifhead()).lh_first;
>    if (p) {
>        ((WirelessPhy *)p)->node_off();
>    }
>
>
>
>
> Il giorno 24/mar/2010, alle ore 16.37, Sergio Luis O. B. Correia ha
> scritto:
>
> >
> > Hello,
> >
> > have you tried calling "reset" for the node you want to turn off?
> > something like
> >
> > # tell all nodes when the simulation ends
> > for { set i 0 } { $i < $opt(nn) } { incr i } {
> >        $ns_ at $opt(stop).0 "$node_($i) reset";
> > }
> >
> >
> > att,
> > sergio
> >
> > On Wed, Mar 24, 2010 at 9:43 AM, darkblue winnie
> > <[email protected]> wrote:
> >>
> >> Hi,
> >>
> >> I am currently implementing a protocol in wireless network. I use 802.11
> as
> >> MAC, AODV as the routing protocol, and also use the Energy_Model to
> track
> >> energy.
> >> Now I have finished the basic protocol and want to do a simulation.
> >>
> >> But I need to shutdown a MobileNode during the simulation, which means
> the
> >> node should be totally OFF or at least does not transmit any packet.
> >> I have search a lot and do not find a right answer....
> >>
> >> So, is there any way to shut down the mobile node either in the Otcl
> script
> >> or in the cpp code?
> >>
> >> Thank you in advance.
> >>
> >> Yi Gong
> >>
> >
> >
> >
> > --
> > Computer Networks and Security Laboratory (LARCES)
> > State University of Ceara (UECE/Brazil)
> >
>
>
>
>
> ------------------------------
>
> Message: 8
> Date: Wed, 24 Mar 2010 12:11:19 -0700 (PDT)
> From: john peter <[email protected]>
> Subject: [ns] isabelle haudecoeur
> To: "[email protected]" <[email protected]>,
>        "[email protected]" <[email protected]>,  "[email protected]"
>        <[email protected]>,       "[email protected]"
>        <[email protected]>
> Message-ID: <[email protected]>
> Content-Type: text/plain; charset=us-ascii
>
> http://www.altosdejoseignacio.com.uy/lndex.html
>
>
>
>
>
>
> ------------------------------
>
> Message: 9
> Date: Wed, 24 Mar 2010 12:44:17 -0700
> From: deepthi p <[email protected]>
> Subject: [ns] How are mac802.11 packets traced in cmu-trace.cc?
> To: [email protected]
> Message-ID:
>        <[email protected]>
> Content-Type: text/plain; charset=ISO-8859-1
>
> Hi all,
>
> I am working on the cmu-trace file to print the backoff values in the
> old/new trace files,
> but I am unable to correctly figure out the logical link from the mac
> 802.11
> packets traced into cmu-trace.cc code.
>
> Could anyone help me regarding this,
> Thanks in advance,
>
> --
> regards,
> deepthi
>
>
> ------------------------------
>
> _______________________________________________
> Ns-users mailing list
> [email protected]
> http://mailman.isi.edu/mailman/listinfo/ns-users
>
>
> End of Ns-users Digest, Vol 75, Issue 24
> ****************************************
>

Reply via email to