[ns] How to use cmu-trace

2006-07-13 Thread Vijay Ghorpade
  Hi all, I my project i want to trace/count the no of pkts etc. I am working with wireless ad hoc network simulation.=0A In that i couldn't understand how to use the following instruction... set T [cmu-trace Send RTR $node] from this how i am going to know the RTR pkts sent by the

Re: [ns] help on random FTP connections

2006-07-13 Thread Filippos Kolovos
As far as the random behaviour is concerned there is a quite good Random number generator implemented in NS, that can also generate random numbers from various distributions. You can check the NS-2 manual in the chapter Mathematical Support for further information. -Fk On 7/13/06, [EMAIL

[ns] example sensor network application which actually has run on ns2

2006-07-13 Thread Srirupa Dasgupta
Please someone, Send me some sensor network application which have actually run on ns2.2X Srirupa

[ns] how can i get the CTS, RTS and packet range of 802.11 net

2006-07-13 Thread ns user
hi ns users; i want to know how can i get the CTS, RTS and packet range in 802.11 simulation ? i'm doing some analysis and it is primordial to know this informaion thanks in advance.

Re: [ns] how can i get the CTS, RTS and packet range of 802.11 net

2006-07-13 Thread Q.R.Iqbal
Hi there from my simulations and keeping it simple The default range for the packet delivery is 250m and that of Carrier sense Threshold is 550m, so from Node A ---B if the distance is less than or equal to 250 , then , the packet will be recieved successfully. If the distace is greater than

Re: [ns] Transmission and Interference Range

2006-07-13 Thread Ashish Sangwan
Hi , I didnot know about these three transmit power levels. Thanks Iqbal for that. I wanted to have Interference Range(Carrier Sense Range) to be twice the Communication Range. So I achieved by calculating CSThresh_ value by following formula Pt * Gt * Gr * (hr * hr * ht * ht) / {(Required

[ns] Simulating IP v4/IPv6 network with 2 nodes and a router

2006-07-13 Thread William . Ampeh
Hello, I am very new to ns, so any pointers will be very much appreciated. I have been assigned to come up with the following 2 simulations using ns: [IPv4 host] [IPv4 router]-[IPv4 host] [IPv4 host] [IPv4 router with header

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

[ns] Packet Loss Rates vs Data Rates

2006-07-13 Thread m w
Hi, I am trying to build a simple two node transmission set up in ns-2. I want to change the packet loss rates (say 0.1, 0.2, 0.3 ..0.9 etc.) and data rates (1, 2, 5.5, 11 Mbps etc.) and want to see the corresponding data rate throughput of the two node system. Later I want

Re: [ns] Transmission and Interference Range

2006-07-13 Thread Pedro Vale Estrela
Check this code that I'm using to set the power based on the circular distance in meters: Usage: set coverage [CellCoverage 1 1 $MAX_X $MAX_Y $OVERLAP] set power [SetPt $coverage] Phy/WirelessPhy set Pt_ $power $ns node-config -rxPower $power -txPower $power