[ns] vanet networks on ns2

2012-04-23 Thread Fatma LOUATI
hi, I'm working on Vanet networks ans I'm about using NS2. but this one seems not support radio obstacle. I heard about NS2.1b9a but I'm not sure that it's suitable for my ubuntu 11.4 (problem with my gcc version) can any one suggest me what version I have to install? Ps I have ns2.34 right now An

Re: [ns] vanet networks on ns2

2012-04-23 Thread Rajendra Dhoni
hi i am working on blackhole attack in aodv and i have install ns2.34 when i execute blackhole tcl it is not properly work please solve this problem my tcl script is following # == # Default Script Options # =

Re: [ns] ns2.35 in ubuntu 12

2012-04-23 Thread abdusy syarif
Hi Leily, You could remove your ns-2 by "sudo apt-get remove ...". Then you could download ns-allinone-2.xx.tar.gz and follow the instruction from here : http://nsnam.isi.edu/nsnam/index.php/Downloading_and_installing_ns-2 BR, Abdusy SYARIF On 4/21/12, leily A.Bakhtiar wrote: > > Hi dear frie

[ns] bash file for ns2

2012-04-23 Thread mbasitrizvi
Hey guys...my question is more linux related and less ns2 related. Im using a ns2 script which has a bash file. i have a tcl file simulation1.tcl and then there is a bash file called... bash_script_for_simulation1 in the bash file i set parameters like: ... number_of_tcp_connections=1 numb

Re: [ns] bash file for ns2

2012-04-23 Thread Israel Herrera
2012/4/23 mbasitrizvi > > > Hey guys...my question is more linux related and less ns2 related. Im > using a > ns2 script which has a bash file. > > i have a tcl file simulation1.tcl > > and then there is a bash file called... bash_script_for_simulation1 > > in the bash file i set parameters

Re: [ns] bash file for ns2

2012-04-23 Thread Israel Herrera
Hello In order to pass your desired simulation values as function parameters from a bash script, you should do it this way: #!/bin/bash #stuff #call the simulator ./ns Source.tcl argx0 argx1 argx2 etc in the bash file and in the tcl file set var1 [lindex $argv 0] set var2 [lindex $argv