[ns] Ns-users Digest, Vol 66, Issue 6
Stephen Akandwanaho
sakandwanaho at ucu.ac.ug
Sat Jun 6 06:31:58 PDT 2009
Hullo everyone,
How can I copy the topology layout in nam to pdf or ps?
steve
> Send Ns-users mailing list submissions to
> ns-users at isi.edu
>
> 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
> ns-users-request at isi.edu
>
> You can reach the person managing the list at
> ns-users-owner at isi.edu
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Ns-users digest..."
>
>
> Today's Topics:
>
> 1. Stopping Re-Transmission Timer (LiViAn ZaH)
> 2. Re: how to modify tcp (Teerawat Issariyakul)
> 3. about the functinn of assert() (ma-haiyuan)
> 4. CBR traffic (Thavouth Khoun)
> 5. Re: How to use MDHO and FBSS ? (-Wael-)
> 6. help: how to use the file handover.sh (khobeib ayadi)
> 7. problem with wifi-wimax.tcl script (khobeib ayadi)
> 8. Hello averybody... (Nguyen Duy Tan)
> 9. TCP Feedback and TCP ELFN source code (abdi aziiz omer)
> 10. TCP CC and RSVP (abdulaziz osman)
> 11. Error in Code (umang singh)
> 12. Res: Error in Code (Helber Wagner)
> 13. plzzzzzzzzzzzzz hlppppppppppppp (Fatma Al-Rashed)
> 14. Re: plzzzzzzzzzzzzz hlppppppppppppp (Ricardo Schmidt)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Thu, 4 Jun 2009 19:10:07 -0700 (PDT)
> From: LiViAn ZaH <gladiator_uts at yahoo.com>
> Subject: [ns] Stopping Re-Transmission Timer
> To: NS-User <ns-users at ISI.EDU>
> Message-ID: <35308.36438.qm at web112618.mail.gq1.yahoo.com>
> Content-Type: text/plain; charset=iso-8859-1
>
> Hello
>
> I want to stop ....invoking retransmission timer? expiration function in
> ns2. Can anyone ........tell me which things triggers this function and
> how can I stop it
>
> Regards
> Livaian
>
>
>
>
>
> ------------------------------
>
> Message: 2
> Date: Fri, 05 Jun 2009 02:33:17 +0000
> From: "Teerawat Issariyakul" <teerawat at ece.ubc.ca>
> Subject: Re: [ns] how to modify tcp
> To: v_mandhare at yahoo.com, ns-users at ISI.EDU
> Message-ID: <hjmvJyhL.1244169197.7746440.teerawat at localhost>
> Content-Type: text/plain; charset=ISO-8859-1
>
>
> Dear Vaishali,
>
> NS2 has two versions of SACK: Agent/TCP/Sack1 and Agent/TCP/SackRH. Check
> out the details in files ~ns/tcp/tcp-sack1.* and tcp-sack-rh.*
>
> BR
> Teerawat
>
>
>
>
> On 6/4/2009, "vaishali mandhare" <v_mandhare at yahoo.com> wrote:
>
>>
>>hello all,
>>I want to increase performance of tcp in maodv but I cant do, instead? of
>> traditional tcp want to use reno or sack tcp. I was make changes but
>> getting same result. Bellow is my tcl script for tcp . If anyone has
>> idea?about it please inform me as early as possible.
>>?
>>
>>set tcp_(0) [new Agent/TCP/Reno]
>>$tcp_(0) set dst_addr_ 0xE000000
>>$tcp_(0) set window_ 32
>>$tcp_(0) set interval_ 1.0
>>$tcp_(0) set packetSize_ 256
>>$ns_ attach-agent $node_(0) $tcp_(0)
>>set ftp_(0) [new Application/FTP]
>>$ftp_(0) attach-agent $tcp_(0)
>>$ftp_(0) set type_ FTP
>>$ftp_(0) set maxpkts_ 1740
>>$ftp_(0) set dst_ 0xE000000
>>$ns_ at 30.0 "$ftp_(0) start"
>>
>>for {set i 40} {$i < 50} {incr i} {
>>?$ns_ at 0.0100000000 "$node_($i) aodv-join-group 0xE000000"
>>
>>wating for replay!
>>thanks!
>>vaishu!?
>>
>>
>> Own a website.Get an unlimited package.Pay next to nothing.*Go to
>> http://in.business.yahoo.com/
>>
>
>
>
> ------------------------------
>
> Message: 3
> Date: Fri, 5 Jun 2009 12:57:53 +0800 (CST)
> From: ma-haiyuan <ma-haiyuan at 163.com>
> Subject: [ns] about the functinn of assert()
> To: ns°ïÖú <ns-users at ISI.EDU>
> Message-ID:
> <29788089.266251244177873521.JavaMail.coremail at bj163app129.163.com>
> Content-Type: text/plain; charset=gbk
>
> hi to all!
>
>
>
>
>
> I'm making simulation on multicast. In some sources, there is a functi=
> on: assert(), such as in smcc.cc.
>
>
> void TfmccAgent::increase_rate() {
> double now =3D Scheduler::=
> instance().clock();
> double mult =3D (now - last_change_) / max_rtt=
> _;
> if (mult > 2) mult =3D 2;
>
> //printf("stmp =
> %f | %f -> ", now, rate_*8.0/1000.0);
> rate_ =3D MIN(expected_ra=
> te, rate_ + (fairsize_/max_rtt_)*mult);
> //printf("%f step %f (min =
> %f)\n", expected_rate*8.0/1000.0, rate_*8.0/1000.0,
> fairsize_/max_rtt_*8.0/=
> 1000.0);
>
>
> if (rate_ < fairsize_/max_rtt_)
> rate_ =3D fair=
> size_/max_rtt_;
>
>
> last_change_ =3D now;
>
>
> if (packetrate_ =3D=3D 0) {
> // check if rate incr=
> ease should impact send timer
> double next =3D size_/rate_; if (inter_packet >=3D 2 * next) {
> ass=
> ert(next > SMALLFLOAT);
> send_timer_.resched(next);<=
> BR> }
> }
> }
>
>
> My question is what's the function of this assert()? Where can I find =
> the defination, and when have i to use this function?
>
>
>
> ------------------------------
>
> Message: 4
> Date: Fri, 5 Jun 2009 00:50:45 -0700 (PDT)
> From: Thavouth Khoun <thavouth.nsuser at yahoo.com>
> Subject: [ns] CBR traffic
> To: nsusers <ns-users at ISI.EDU>
> Message-ID: <771546.91068.qm at web111612.mail.gq1.yahoo.com>
> Content-Type: text/plain; charset=us-ascii
>
> Hi ns-users,
>
> Anybody knows how to generate a cbr traffic every 20ms?
> I've been using "$cbr_0 set idle_time_ 20ms"
> and "$cbr_0 set burst_time_ 10ms" , but it send a cbr packet
> around every 25ms. Maybe I don't set burst_time correctly.
>
> Any ideas?
>
> Thanks,
>
> Thavouth K.
>
>
>
>
> ------------------------------
>
> Message: 5
> Date: Fri, 5 Jun 2009 01:09:58 -0700 (PDT)
> From: -Wael- <w_cherif at yahoo.fr>
> Subject: Re: [ns] How to use MDHO and FBSS ?
> To: ns-users at ISI.EDU
> Message-ID: <23884015.post at talk.nabble.com>
> Content-Type: text/plain; charset=UTF-8
>
>
> is there someone who know about the MDHO and FBSS on NS ??
>
>
> -Wael- wrote:
>>
>> Hi,
>>
>> I am working on handover in mobile Wimax. I am using NS-2.29 with NIST
>> add-on and I want to simulate the MDHO (Macro Diversity HandOver) and
>> the
>> FBSS (Fast BS Switching).
>> I noticed that I have to change the parameter ?mode? of the MOB_HO-IND,
>> but I don't know if there is any other changes to make.
>> Can you help me please?
>>
>> Thank you in advance.
>>
>> Regards,
>> Wael
>>
>
> --
> View this message in context:
> http://www.nabble.com/How-to-use-MDHO-and-FBSS---tp23739004p23884015.html
> Sent from the ns-users mailing list archive at Nabble.com.
>
>
>
>
> ------------------------------
>
> Message: 6
> Date: Fri, 5 Jun 2009 09:22:07 +0100
> From: khobeib ayadi <ayadi.kho at gmail.com>
> Subject: [ns] help: how to use the file handover.sh
> To: ns-users <ns-users at ISI.EDU>
> Message-ID:
> <e0299a30906050122l7f44ee43n48111b1c76ad8007 at mail.gmail.com>
> Content-Type: text/plain; charset=ISO-8859-1
>
> hi,
>
> have any one any idea how to use the file handover.sh to determine
> the packet loss of the handover.
>
> thnk you
>
>
> ------------------------------
>
> Message: 7
> Date: Fri, 5 Jun 2009 10:00:07 +0100
> From: khobeib ayadi <ayadi.kho at gmail.com>
> Subject: [ns] problem with wifi-wimax.tcl script
> To: ns-users <ns-users at ISI.EDU>
> Message-ID:
> <e0299a30906050200q60289203vc64a061878821cdb at mail.gmail.com>
> Content-Type: text/plain; charset=ISO-8859-1
>
> hi all,
>
> i'm studyin vertical handover so i installed the nist mobility package. i
> run the wifi-wimax.tcl script
> that implement a vertical handover between wifi and wimax. the siulation
> run
> but the problem is when
> the node is attached to the wlan network there is is no transmission
> between
> the AP and the node
> because the synchronisation faile as mentionned in the line above. so if
> someone can help me fix this
> i will be thankful.
>
> these are the line i get in the command prompt:
> At 16.147375959 Mac 1 rxsucc 178940.540381
> At 16.147690011 Mac 0 retx count (Retx recvACK) is 0.000000
> At 16.147690011 Mac 0 txerror 0.000000
> At 16.147690011 Mac 0 txsucc 177334.665953
> At 16.148632064 Mac 1, rxp 9.742476e-09 thresh 6.122770e-09
> weighted-thresh
> 7.347324e-09
> At 16.150076170 Mac 1, rxp 9.743307e-09 thresh 6.122770e-09
> weighted-thresh
> 7.347324e-09
> At 16.150076170 Mac 1 rxsucc 6045452.586999
> At 16.150390223 Mac 0 retx count (Retx recvACK) is 0.000000
> At 16.150390223 Mac 0 txerror 0.000000
> At 16.150390223 Mac 0 txsucc 6045452.607147
> At 16.150812276 Mac 1, rxp 9.745156e-09 thresh 6.122770e-09
> weighted-thresh
> 7.347324e-09
> At 16.152256381 Mac 1, rxp 9.745987e-09 thresh 6.122770e-09
> weighted-thresh
> 7.347324e-09
> At 16.152256381 Mac 1 rxsucc 7487347.430003
> At 16.152570434 Mac 0 retx count (Retx recvACK) is 0.000000
> At 16.152570434 Mac 0 txerror 0.000000
> At 16.152570434 Mac 0 txsucc 7487347.454966
> At 16.153432487 Mac 1, rxp 9.748378e-09 thresh 6.122770e-09
> weighted-thresh
> 7.347324e-09
> At 16.154876593 Mac 1, rxp 9.749210e-09 thresh 6.122770e-09
> weighted-thresh
> 7.347324e-09
> At 16.154876593 Mac 1 rxsucc 6230031.818730
> At 16.155190646 Mac 0 retx count (Retx recvACK) is 0.000000
> At 16.155190646 Mac 0 txerror 0.000000
> At 16.155190646 Mac 0 txsucc 6230031.839493
> At 16.155588072 Mac 0 sends a Beacon
> At 16.155638072 Mac 0 txsucc 21536518.048092
> At 16.156103 in Mac 3, synchronization failed
> At 16.156103 in Mac 3 Going to channel 3
> At 16.156150124 Mac 1, rxp 9.751525e-09 thresh 6.122770e-09
> weighted-thresh
> 7.347324e-09
> At 16.156150124 Mac 1 rxsucc 4854217.448529
> At 16.156150124 Mac 1 Recv Beacon from 0
> beacon interval=100ms
> At 16.176103 in Mac 3, synchronization failed
> At 16.176103 in Mac 3 Going to channel 4
> At 16.196103 in Mac 3, synchronization failed
> At 16.196103 in Mac 3 Going to channel 0
> At 16.216103 in Mac 3, synchronization failed
> At 16.216103 in Mac 3 Going to channel 1
> At 16.236103 in Mac 3, synchronization failed
> At 16.236103 in Mac 3 Going to channel 2
> At 16.245811853 Mac 1, rxp 9.863011e-09 thresh 6.122770e-09
> weighted-thresh
> 7.347324e-09
> At 16.247255958 Mac 1, rxp 9.863857e-09 thresh 6.122770e-09
> weighted-thresh
> 7.347324e-09
> At 16.247255958 Mac 1 rxsucc 179176.233127
> At 16.247570010 Mac 0 retx count (Retx recvACK) is 0.000000
> At 16.247570010 Mac 0 txerror 0.000000
> At 16.247570010 Mac 0 txsucc 177566.145854
> At 16.248532063 Mac 1, rxp 9.866417e-09 thresh 6.122770e-09
> weighted-thresh
> 7.347324e-09
> At 16.249976168 Mac 1, rxp 9.867264e-09 thresh 6.122770e-09
> weighted-thresh
> 7.347324e-09
> At 16.249976168 Mac 1 rxsucc 6001007.122663
> At 16.250290220 Mac 0 retx count (Retx recvACK) is 0.000000
> At 16.250290220 Mac 0 txerror 0.000000
> At 16.250290220 Mac 0 txsucc 6001007.142664
> At 16.251032273 Mac 1, rxp 9.869549e-09 thresh 6.122770e-09
> weighted-thresh
> 7.347324e-09
> At 16.252476378 Mac 1, rxp 9.870396e-09 thresh 6.122770e-09
> weighted-thresh
> 7.347324e-09
> At 16.252476378 Mac 1 rxsucc 6529051.468106
> At 16.252790430 Mac 0 retx count (Retx recvACK) is 0.000000
> At 16.252790430 Mac 0 txerror 0.000000
> At 16.252790430 Mac 0 txsucc 6529051.489872
> At 16.253672483 Mac 1, rxp 9.872858e-09 thresh 6.122770e-09
> weighted-thresh
> 7.347324e-09
> At 16.255116588 Mac 1, rxp 9.873706e-09 thresh 6.122770e-09
> weighted-thresh
> 7.347324e-09
> At 16.255116588 Mac 1 rxsucc 6182841.515631
> At 16.255430640 Mac 0 retx count (Retx recvACK) is 0.000000
> At 16.255430640 Mac 0 txerror 0.000000
> At 16.255430640 Mac 0 txsucc 6182841.536239
> At 16.255588072 Mac 0 sends a Beacon
> At 16.255638072 Mac 0 txsucc 46453906.701255
> At 16.256103 in Mac 3, synchronization failed
> At 16.256103 in Mac 3 Going to channel 3
> At 16.256150124 Mac 1, rxp 9.875765e-09 thresh 6.122770e-09
> weighted-thresh
> 7.347324e-09
> At 16.256150124 Mac 1 rxsucc 5981405.142458
> At 16.256150124 Mac 1 Recv Beacon from 0
> beacon interval=100ms
> At 16.276103 in Mac 3, synchronization failed
> At 16.276103 in Mac 3 Going to channel 4
> At 16.296103 in Mac 3, synchronization failed
> At 16.296103 in Mac 3 Going to channel 0
> At 16.316103 in Mac 3, synchronization failed
> At 16.316103 in Mac 3 Going to channel 1
> At 16.336103 in Mac 3, synchronization failed
> At 16.336103 in Mac 3 Going to channel 2
> At 16.345971852 Mac 1, rxp 9.989598e-09 thresh 6.122770e-09
> weighted-thresh
> 7.347324e-09
> At 16.347415957 Mac 1, rxp 9.990461e-09 thresh 6.122770e-09
> weighted-thresh
> 7.347324e-09
> At 16.347415957 Mac 1 rxsucc 178862.116915
> At 16.347730009 Mac 0 retx count (Retx recvACK) is 0.000000
> At 16.347730009 Mac 0 txerror 0.000000
> At 16.347730009 Mac 0 txsucc 177257.646032
> At 16.348232061 Mac 1, rxp 9.992483e-09 thresh 6.122770e-09
> weighted-thresh
> 7.347324e-09
> At 16.349676165 Mac 1, rxp 9.993346e-09 thresh 6.122770e-09
> weighted-thresh
> 7.347324e-09
> At 16.349676165 Mac 1 rxsucc 7222341.779155
> At 16.349990217 Mac 0 retx count (Retx recvACK) is 0.000000
> At 16.349990217 Mac 0 txerror 0.000000
> At 16.349990217 Mac 0 txsucc 7222341.803234
> At 16.350572270 Mac 1, rxp 9.995471e-09 thresh 6.122770e-09
> weighted-thresh
> 7.347324e-09
> At 16.352016374 Mac 1, rxp 9.996334e-09 thresh 6.122770e-09
> weighted-thresh
> 7.347324e-09
> At 16.352016374 Mac 1 rxsucc 6975446.227890
> At 16.352330426 Mac 0 retx count (Retx recvACK) is 0.000000
> At 16.352330426 Mac 0 txerror 0.000000
> At 16.352330426 Mac 0 txsucc 6975446.251144
> At 16.353032478 Mac 1, rxp 9.998614e-09 thresh 6.122770e-09
> weighted-thresh
> 7.347324e-09
> At 16.354476583 Mac 1, rxp 9.999478e-09 thresh 6.122770e-09
> weighted-thresh
> 7.347324e-09
> At 16.354476583 Mac 1 rxsucc 6635209.511443
> At 16.354790635 Mac 0 retx count (Retx recvACK) is 0.000000
> At 16.354790635 Mac 0 txerror 0.000000
> At 16.354790635 Mac 0 txsucc 6635209.533558
> At 16.355588072 Mac 0 sends a Beacon
> At 16.355638072 Mac 0 txsucc 11370760.247146
> At 16.356103 in Mac 3, synchronization failed
> At 16.356103 in Mac 3 Going to channel 3
> At 16.356150124 Mac 1, rxp 1.000239e-08 thresh 6.122770e-09
> weighted-thresh
> 7.347324e-09
> At 16.356150124 Mac 1 rxsucc 3693963.738307
> At 16.356150124 Mac 1 Recv Beacon from 0
> beacon interval=100ms
> .....
>
>
> ------------------------------
>
> Message: 8
> Date: Fri, 5 Jun 2009 02:49:40 -0700
> From: Nguyen Duy Tan <duytanhyvn at gmail.com>
> Subject: [ns] Hello averybody...
> To: ns-users at ISI.EDU
> Message-ID:
> <c1f54f130906050249h3c6031f3x3e7b911b4ae19d2d at mail.gmail.com>
> Content-Type: text/plain; charset=ISO-8859-1
>
> Hello averybody...
> I am new NS2
> I have difficult in installing and simulaion ZRP routing on Ad hoc Network
> NS2.33
>
> Can you help me to process it.
> Thank you verry much...
>
>
> ------------------------------
>
> Message: 9
> Date: Fri, 5 Jun 2009 14:25:48 +0300
> From: abdi aziiz omer <abdulaz26 at hotmail.com>
> Subject: [ns] TCP Feedback and TCP ELFN source code
> To: ns-2 Community <ns-users at ISI.EDU>
> Message-ID: <BLU123-W21C67BBF1A7833A9AA2ACFAE480 at phx.gbl>
> Content-Type: text/plain; charset="iso-8859-1"
>
>
> Hello to all of you. I am asking the respectful and as well the generous
> community of ns-2 to provide me the following help:
> 1- TCP Feedback source code
> 2- TCP ELFN source code
>
> My
> purpose being that I intend to study the performance of the above
> mentioned TCP variants , then to make necessary modifications and
> finally to simulate again in a hope of getting better performance.
>
> Many thanks to you all.
>
> Your quick response is appreciated.
>
> By Aziz.
> _________________________________________________________________
> Show them the way! Add maps and directions to your party invites.
> http://www.microsoft.com/windows/windowslive/products/events.aspx
>
> ------------------------------
>
> Message: 10
> Date: Fri, 5 Jun 2009 05:59:19 -0700 (PDT)
> From: abdulaziz osman <aziizka at yahoo.com>
> Subject: [ns] TCP CC and RSVP
> To: ns-users at ISI.EDU
> Message-ID: <724196.36668.qm at web65415.mail.ac4.yahoo.com>
> Content-Type: text/plain; charset=iso-8859-1
>
> A new TCP scheme called Congestion Coherence was proposed? and as well
> created by Chunlei et al.? (2007). The researchers published a paper
> entitled as a " A Unified TCP Enhancement for Wireless Mesh Networks ". In
> that paper one can find the proposed TCP scheme known as CC.
> ?
> According
> to the findings of Chunlei et al.? (2007)? the new TCP enhancement "CC"
> performs well when compared with Reno, Vegas, DDA and ECN.?
>
> Please help me locate a website that offers TCP CC source code or even
> patch.
>
> As well I need RSVP source code.
>
>
>
>
>
>
>
> **********************************************************
>
>
> Abdulaziz Omar M.Sc.IT
>
> Nothern University
> of Malaysia
>
> Universiti
> Utara Malaysia (UUM)
>
> College of Arts and Sciences,
>
> ? Universiti Utara Malaysia
>
> ? 06010 UUM
> Sintok??????????????????
> Phone: +60142276220
>
> ? M A L A Y S I A??????
>
> **********************************************************
>
>
>
>
>
>
> ------------------------------
>
> Message: 11
> Date: Fri, 5 Jun 2009 20:13:53 +0530
> From: umang singh <singh.umang at hotmail.com>
> Subject: [ns] Error in Code
> To: ns-users <ns-users at ISI.EDU>
> Message-ID: <BLU139-W32CCA850E92CE0735015F8EA480 at phx.gbl>
> Content-Type: text/plain; charset="iso-8859-1"
>
>
> Hi all,
> I am trying to execute AODV routing protocol .Please tell me.How to deal
> with these following Errors :
> ns Umangba.tcl
> num_nodes is set 6
> Creating Nodes....
> Can not open results/profile.prof
> can't read "chan": no such variable
> while executing
> "$node add-interface $chan $propInstance_ $llType_ $macType_ $ifqType_
> $ifqlen_ $phyType_ $antType_ $topoInstance_ $inerrProc_ $outerrProc_
> $FECProc_"
> (procedure "_o3" line 74)
> (Simulator create-wireless-node line 74)
> invoked from within
> "_o3 create-wireless-node"
> ("eval" body line 1)
> invoked from within
> "eval $self create-wireless-node $args"
> (procedure "_o3" line 23)
> (Simulator node line 23)
> invoked from within
> "$ns node"
> ("for" body line 2)
> invoked from within
> "for {set i 0} {$i < $val(nnaodv)} {incr i} {
> set node_($i) [$ns node]
> $node_($i) random-motion 0 ;
> }"
> (file "Umangba.tcl" line 73)
> regards,
> Umang
>
>
> _________________________________________________________________
> Missed any of the IPL matches ? Catch a recap of all the action on MSN
> Videos
> http://msnvideos.in/iplt20/msnvideoplayer.aspx
>
> ------------------------------
>
> Message: 12
> Date: Fri, 5 Jun 2009 09:01:02 -0700 (PDT)
> From: Helber Wagner <wagnerfbm at yahoo.com.br>
> Subject: [ns] Res: Error in Code
> To: ns-users at ISI.EDU
> Message-ID: <4158.6369.qm at web51403.mail.re2.yahoo.com>
> Content-Type: text/plain; charset=iso-8859-1
>
> Try $chan_ instead of $chan
>
> ___________________________________
> Helber Wagner da Silva
> MSc. Student in Applied Informatics
> University of Fortaleza - Cear? - Brazil
> URL: http://www.nr2.ufpr.br/~helber
>
>
>
>
>
> ________________________________
> De: umang singh <singh.umang at hotmail.com>
> Para: ns-users <ns-users at ISI.EDU>
> Enviadas: Sexta-feira, 5 de Junho de 2009 11:43:53
> Assunto: [ns] Error in Code
>
>
>
> Hi all,
> I am trying to execute AODV routing protocol .Please tell me.How to deal
> with these following Errors :
> ns Umangba.tcl
> num_nodes is set 6
> Creating Nodes....
> Can not open results/profile.prof
> can't read "chan": no such variable
> while executing
> "$node add-interface $chan $propInstance_ $llType_ $macType_ $ifqType_
> $ifqlen_ $phyType_ $antType_ $topoInstance_ $inerrProc_ $outerrProc_
> $FECProc_"
> (procedure "_o3" line 74)
> (Simulator create-wireless-node line 74)
> invoked from within
> "_o3 create-wireless-node"
> ("eval" body line 1)
> invoked from within
> "eval $self create-wireless-node $args"
> (procedure "_o3" line 23)
> (Simulator node line 23)
> invoked from within
> "$ns node"
> ("for" body line 2)
> invoked from within
> "for {set i 0} {$i < $val(nnaodv)} {incr i} {
> set node_($i) [$ns node]
> $node_($i) random-motion 0 ;
> }"
> (file "Umangba.tcl" line 73)
> regards,
> Umang
>
>
> _________________________________________________________________
> Missed any of the IPL matches ? Catch a recap of all the action on MSN
> Videos
> http://msnvideos.in/iplt20/msnvideoplayer.aspx
>
>
>
> Veja quais s?o os assuntos do momento no Yahoo! +Buscados
> http://br.maisbuscados.yahoo.com
>
> ------------------------------
>
> Message: 13
> Date: Fri, 5 Jun 2009 22:56:47 +0300
> From: Fatma Al-Rashed <fatmaalrashed at gmail.com>
> Subject: [ns] plzzzzzzzzzzzzz hlppppppppppppp
> To: ns-users at ISI.EDU
> Message-ID:
> <14bcb1ec0906051256o548f05a6u394517e1c8a69b at mail.gmail.com>
> Content-Type: text/plain; charset=ISO-8859-1
>
> Hello
>
>
>
> I have project in network and I need to simulate it using ns2 and Iam new
> to
>
> ns2. My project is about adhoc network and I have problem in determine
>
> number of links connected to mobile node ( connectivity of node).
>
> can somebody help me to calculate the number of links to a node in ns2.
>
>
>
> please if somebody know to get this number help me ASAP
>
>
>
> thanks in advance
>
>
> ------------------------------
>
> Message: 14
> Date: Fri, 5 Jun 2009 18:43:10 -0300
> From: Ricardo Schmidt <super.ismiti at gmail.com>
> Subject: Re: [ns] plzzzzzzzzzzzzz hlppppppppppppp
> To: Fatma Al-Rashed <fatmaalrashed at gmail.com>
> Cc: ns-users at ISI.EDU
> Message-ID:
> <db92277f0906051443h7d029f64waa6fe434d7165c27 at mail.gmail.com>
> Content-Type: text/plain; charset=ISO-8859-1
>
> Maybe getting the size of the routing table...
>
>
> On Fri, Jun 5, 2009 at 4:56 PM, Fatma Al-Rashed<fatmaalrashed at gmail.com>
> wrote:
>>
>> Hello
>>
>>
>>
>> I have project in network and I need to simulate it using ns2 and Iam
>> new to
>>
>> ns2. My project is about adhoc network and I have problem in determine
>>
>> number of links connected to mobile node ( connectivity of node).
>>
>> can somebody help me to calculate the number of links to a node in ns2.
>>
>>
>>
>> please if somebody know to get this number help me ASAP
>>
>>
>>
>> thanks in advance
>>
>
>
>
> --
> Ricardo de Oliveira Schmidt
>
> Networking and Telecommunications Research Group (GPRT)
> Informatics Center (CIn), Federal University of Pernambuco (UFPE), Brazil.
> super.ismiti at gmail.com / schmidt at gprt.ufpe.br
> http://cin.ufpe.br/~ros2
>
>
>
> ------------------------------
>
> _______________________________________________
> Ns-users mailing list
> Ns-users at isi.edu
> http://mailman.isi.edu/mailman/listinfo/ns-users
>
>
> End of Ns-users Digest, Vol 66, Issue 6
> ***************************************
>
--
Stephen M. Akandwanaho
University Computing Services
Uganda Christian University
http://www.stephenplanet.blogspot.com
Therefore I say to you, whatever things you ask when you pray,believe that
you receive them, and you will have them.(Mark 11.24)
For the scripture says,"Whoever believes in Him will not be put to
shame"(Romans10:11)
More information about the Ns-users
mailing list