[ns] How to record and attach DSR IFQRatio

2006-04-06 Thread adryan haidar
Hi all ..., I'm newbie to ns2. I'm using DSR and want to record the ratio between current packet at IFQ and its length (in every mobile node) and attach it to their incoming RREP packet Header. How do i implement it in ns2's c++ code ? Thank you in advance, Adry __

[ns] directional NAV

2006-04-06 Thread pierpaolo cimirro
Hi all, can anyone help me to implement directional NAV with directional antennas? thank Pierpaolo

[ns] ODMRP on ns-2.28

2006-04-06 Thread Pooja Vyavahare
hi, I am trying to implement ODMRP (Monarch extension ns-2.1b8) on ns-2.28. My odmrp code is complied fine. but when i am using the tcl script which is there with the ns-2.1b8 for running the ODMRP on a particular scenerio the error in the file is as: *** no errormodel specified. UniAgent: n

Re: [ns] ODMRP on ns-2.28

2006-04-06 Thread Dhammika Pathirana
Hi Pooja, This is because add-interface has changed between 2.1b8 and 2.28. You can solve this issue by changing add-interface arguments in create-mcast-mobile-node in odmrp.tcl in odmrp directory. It does not pass inerrProc_, outerrProc_ and FECProc_ to add-interface. You can pass null values as

[ns] What this code means?

2006-04-06 Thread Luciana Esteves N. Hilario
Hi everybody! I`m doing some tests with an old version of ns-2 (ns-allinone-2.1b3), and I don`t understand a part of tcl code and I could`n find the meaning in ns manual. I think is because this ns version is old and the manual is referring of new version. The code is following: NetIf/Sh

[ns] What this code means?

2006-04-06 Thread Luciana Esteves N. Hilario
Hi everybody! I`m doing some tests with an old version of ns-2 (ns-allinone-2.1b3), and I don`t understand a part of tcl code and I could`n find the meaning in ns manual. I think is because this ns version is old and the manual is referring of new version. The code is following: NetIf/SharedMe

[ns] is there a limit on the rate_ variable of the CBR traffic source?+

2006-04-06 Thread Charulatha Kannan
Hi ns-users I am working in a scenario where congestion is detected in the network using packet drops. I use a queue monitor to check the packet drops in the link. I observe that when the rates are in the range of 10e6 in a link of bandwidth 2Mbps,there are enough packet

Re: [ns] What this code means?

2006-04-06 Thread Sasan Sahraei
Hi Luciana, SharedMedia interface with parameters: extracted from the header file: double freq_; // frequency double lambda_; // wavelength (m) double L_; // system loss factor double RXThresh_; // receive power threshold (W)

[ns] segmentation fault in TORA

2006-04-06 Thread Sasan Sahraei
Hi All, I am experiencing segmentation fault when using TORA. have anybody seen this before? I appreciate any advice. Thanks, Sasan

[ns] using shadow bitmap in nam

2006-04-06 Thread Kenji Ooishi
Hi all, In ns2, visiblity-based shadowing model is defined with bitmap, like set prop [new Propagation/ShadowingVis] $prop get-bitmap environment hoge.pnm Can I use the bitmap in nam simulation? I would like to use it as background of nam view window. thanks, -- kenji

[ns] Specify MAC & IP address for each node

2006-04-06 Thread David Gascón
Hello. I am getting problems while trying to specify a concrete MAC and IP addresses to each of the nodes which I have created. I would like to be able to write something like: $node_(0) set mac_source "0FA56..." $node_(0) set ip_source "155.210" $node_(1) set mac_source "076EF..." $node_(1

[ns] Where can provide QoS-MSR resource code?

2006-04-06 Thread 耿蓉
ns-users,您好! 致 礼! 耿蓉 [EMAIL PROTECTED]   2006-04-07

Re: [ns] ODMRP on ns-2.28

2006-04-06 Thread Dhammika Pathirana
Hi Pooja, I think you the problem is related to the number of arguments. You actually don't need the last to arguments. So your last argument should be $opt(fecproc) This should resolve your issue. Dhammika On 4/6/06, Pooja Vyavahare <[EMAIL PROTECTED]> wrote: > hi Dhammika, > > thanks for