[ns] help needed

2007-01-04 Thread sandesh shenoy

Hello,
I am confused with the part
  Application/FTP instproc start
  [$self agent] send -1
   
  What does that -1 mean?How does this exactly work? Any ideas will be helpful.
   
  Thanks in advance

 Send free SMS to your Friends on Mobile from your Yahoo! Messenger. Download 
Now! http://messenger.yahoo.com/download.php


[ns] help needed

2007-02-25 Thread vicky a frnd

 im a new user of ns-2.. im doin my final yr project in ns-2...
can anyone pls temme how to perform video transmission using 802.11e WLANs
in NS2...   can anyone giv the ns2 source codes.for performin tis
task... i wud b more thankful to u.. pls send me the details


[ns] help needed

2009-04-21 Thread Nikheel Kumar

hello all,

friends i m an postgraduate student and want to simulate admission control
algorithm for IEEE 802.11e wireless technology please give suggestion for
this that how can i simulate this scenario. where should i have to make
changes either in .cc file or in tcl script. actually i want to use
"ns-aedcf" semi package but i don't know how to install it in ns-2.31.
please give suggestion as soon as possible.

thanks

nikhil


[ns] help needed

2009-04-29 Thread Nikheel Kumar

hello all,

i am working on ns-2.31. i make some changes in 802_11.cc files and save it
as my_802_11.cc now i want to use this file with 802_11.cc in my wireless
simulation for comparing it with the 802_11.cc file. how can i do this?

please help me

regards,


[ns] help needed

2009-04-29 Thread Nikheel Kumar

hello all,

i am working on ns-2.31. i make some changes in 802_11.cc file and save it
as my_802_11.cc and i want to use this both file (802_11.cc & my_802_11.cc)
in my wireless simulation for comparing with each other for knowing
throughput enhancement . how can i do this?

please help me

regards,


[ns] help needed

2009-05-12 Thread Nikheel Kumar

*hi friends,

following is the code for TCP connection that shares a noisy bottle link
with a UDP connection.*

set ns [new Simulator]
$ns color 1 Blue
$ns color 2 Red

#open the NAM trace file
set nf [open first_out.nam w]
$ns namtrace-all $nf

#open the trace file
set tf [open first_out.tr w]
set windowVsTime2 [open WindowVsTimeNReno w]
$ns trace-all $tf

#define a 'finish' procedure
proc finish {} {
global ns nf tf
$ns flush-trace
close $nf
close $tf
exec nam first_out.nam &
exit o
}

#creating four nodes
set n0 [$ns node]
set n1 [$ns node]
set n2 [$ns node]
set n3 [$ns node]

$ns at 0.1 "$n1 lable \"CBR\""
$ns at 1.0 "$n0 lable \"FTP\""

#create links between the nodes
$ns duplex-link $n0 $n2 2Mb 10ms DropTail
$ns duplex-link $n1 $n2 2Mb 10ms DropTail
$ns simplex-link $n2 $n3 0.07Mb 20ms DropTail
$ns simplex-link $n3 $n2 0.07Mb 20ms DropTail

#set queue size of link (n2-n3) to 10
$ns queue-limit $n2 $n3 10

#Monitor the queue for link (n2-n3) (for NAM)
$ns simplex-link-op $n2 $n3 queuePos 0.5

#set error model on link n3 to n2
set loss_module [new ErrorModel]
$loss_module set rate_ 0.2
$loss_module ranvar [new RandomVariable/Uniform]
$loss_module drop-target [new Agent/Null]
$ns lossmodel $loss_module $n2 $n3

#setup a tcp connection
set tcp [new Agent/TCP/Newreno]
$ns attach-agent $n0 $tcp
set sink [new Agent/TCPSink/DelAck]
$ns attach-agent $n3 $sink
$ns connect $tcp $sink
$tcp set fid_ 1

#set ftp over tcp connection
set ftp [new Application/FTP]
$ftp attach-agent $tcp
$ftp set type_ FTP

#setup a UDP connection
set udp [new Agent/UDP]
$ns attach-agent $n1 $udp
set null [new Agent/Null]
$ns attach-agent $n3 $null
$ns connect $udp $null
$udp set fid_ 2

#setup a CBR over UDP connection
set cbr [new Application/Traffic/CBR]
$cbr attach-agent $udp
$cbr set type_ CBR
$cbr set packet_size_ 1000
$cbr set rate_ 0.01mb
$cbr set random_ false

#schedule events for the CBR anf ftp agents
$ns at 0.1 "$cbr start"
$ns at 1.0 "$ftp start"
$ns at 624.0 "$ftp stop"
$ns at 624.5 "$cbr stop"

#printing the window size
proc plotWindow {tcpSource file} {
global ns
set time 0.01
set now [$ now]
set cwnd [$tcpSource set cwnd_]
puts $file "$now $cwnd"
$ns at [expr $now+$time] "plotWindow $tcpSource $file" }
$ns at 1.1 "plotWindow $tcp $windowVsTime2"

#sample the bottleneck queue every 0.1 sec. store the trace in qm.out
set qmon [$ns monitor-queue $n2 $n3 [open qm.out w] 0.1];
[$ns link $n2 $n3] queue-sample-timeout; # [$ns link $n2 $n3] start-tracing

#detach tcp and sink agent (not really necessary)
$ns at 624.5 "$ns detach-agent $n0 $tcp ; $ns detach-agent $n3 $sink"

$ns at 625.0 "finish"
$ns run

*during running the above tcl scrit it gives following error:
*
$ns first.tclp
ns: _o13 lable "CBR":
(_o13 cmd line 1)
invoked from within
"_o13 cmd lable CBR"
invoked from within
"catch "$self cmd $args" ret"
invoked from within
"if [catch "$self cmd $args" ret] {
set cls [$self info class]
global errorInfo
set savedInfo $errorInfo
error "error when calling class $cls: $args" $..."
(procedure "_o13" line2)
(SpliiObjest unknow line 2)
invoked from within
"_o13 lable "CBR""

*what is this is this error*


[ns] Help needed!!

2012-04-17 Thread manonmani maligachar

Hi all,

1.I have to use 802.16 in ns2.34. I followed the link from one of the site,
but is'nt working.
Please help me how to make 802.16 work.

2.I also have plotted a graph between to nodes which shows the lost (packet
dropped). Now how can i see packets dropped + packets sent = total packets.

3.I have simulated the VANET, but  have take RSU as one of the node, I feel
the RSU functionality should be different from the rest of the nodes. I
need some suggestions on this.

Regards
Manonmani


Re: [ns] help needed

2007-01-04 Thread Filippos Kolovos

-
The -1 parameter means that the application will send an
arbitrarily large file (the file size will be selected randomly).
Check the NS-2 Manual, page 99, section 10.5.2 "Starting the Agent"
for more details.

Regards,

-Fk

On 1/5/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
> -- Forwarded message --
> From: sandesh shenoy <[EMAIL PROTECTED]>
> To: nsusers 
> Date: Thu, 4 Jan 2007 07:11:38 +0000 (GMT)
> Subject: [ns] help needed
> Hello,
> I am confused with the part
>   Application/FTP instproc start
>   [$self agent] send -1
>
>   What does that -1 mean?How does this exactly work? Any ideas will be
> helpful.
>
>   Thanks in advance
>
> Send free SMS to your Friends on Mobile from your Yahoo! Messenger.
> Download Now! http://messenger.yahoo.com/download.php
>
>
>
>
>


-- 
Filippos N Kolovos

Software Systems Analyst & Engineer
M.Sc. (Eng.) in Data Communications

Automation & Networking Department
University of Macedonia Library
Egnatia 156, P.O.Box 1591
540 06 Thessaloniki, Greece

E-Mail: [EMAIL PROTECTED],
   [EMAIL PROTECTED]
--


Re: [ns] help needed

2007-02-27 Thread asma a

this site can help you

hpds.ee.ncku.edu.tw/~smallko/ns2/ns2.htm


Best wishes;

Asma







___ 
New Yahoo! Mail is the ultimate force in competitive emailing. Find out more at 
the Yahoo! Mail Championships. Plus: play games and win prizes. 
http://uk.rd.yahoo.com/evt=44106/*http://mail.yahoo.net/uk 


Re: [ns] help needed

2009-04-29 Thread anas


firstly, you will name your file as the same name of the original one, 
ofcours you will save the original with different name, and do make
take your statistics and then go back and rename yours and rename the 
original one to the original name
and do make and take your statistics and so on,

hop it will help you

A. Alroubaiey
--
From: "Nikheel Kumar" 
Sent: Wednesday, April 29, 2009 5:26 PM
To: 
Subject: [ns] help needed

>
> hello all,
>
> i am working on ns-2.31. i make some changes in 802_11.cc file and save it
> as my_802_11.cc and i want to use this both file (802_11.cc & 
> my_802_11.cc)
> in my wireless simulation for comparing with each other for knowing
> throughput enhancement . how can i do this?
>
> please help me
>
> regards,
> 



[ns] help needed immediately

2010-04-06 Thread nikitha v

hello everyone,
 I have few issues related to Snoop protocol implementation.
Need to submit the results within a couple of days. Can somebody who is
presently working in ns2 and well acquainted with drawing graphs extend
their help??..thanking you...waiting for a response

Nikitha


[ns] Help needed please

2014-01-15 Thread Uche Kingsley

Hi,

I'm new to ns2 and I really need help.

What I want to achieve using the ns2 is to add tags to each packets with
different priorities (high or low). When the nodes forwards the packets to
the intermediate node, the intermediate node will have a kinda filter
algorithm which will filter the packets and forward the packets with high
priority to the sink. In this case, the data in the high priority packet
will not be lost. Also plotting the graph showing the packets dropped and
throughput achieved. The nodes would be arranged like n0,n1,n2 connected to
n3(intermediated node) and n3 connected to n4(sink). Main aim is to achieve
fairness and conserve energy as well,

Thanks


[ns] Help needed with DiffServ.

2006-04-25 Thread Anubhav Visen

Hi, 
 
I am trying to implement diffserv in a really complex topology. When I 
implement several queues on the same edge router to different core routers, I 
receive an error that says "The policy object doesn't exist, ERROR!!!" and 
"ERROR: No Policy Table entry found for Source 4-Destination 11." even though 
there is a polocy.
 
Please help.
 
Thanks,
Anubhav
_
Join the next generation of Hotmail and you could win the adventure of a 
lifetime
http://www.imagine-msn.com/minisites/sweepstakes/mail/register.aspx


[ns] Help needed on RSVP !

2006-06-10 Thread asma a

Hi ;;
   
  I try to RSVP implementation from Mr. Alexander Sayenko, but in the make step 
I get this error:
  g_test -I. -I/home/asma/ns-allinone-2.28/tclcl-1.16 
-I/home/asma/ns-allinone-2.2
  8/otcl-1.9 -I/home/asma/ns-allinone-2.28/include 
-I/home/asma/ns-allinone-2.28/i
  nclude -I/usr/include/pcap -I./tcp -I./sctp -I./common -I./link -I./queue 
-I./ad
  c -I./apps -I./mac -I./mobile -I./trace -I./routing -I./tools -I./classifier 
-I.
  /mcast -I./diffusion3/lib/main -I./diffusion3/lib -I./diffusion3/lib/nr 
-I./diff
  usion3/ns -I./diffusion3/filter_core -I./asim/ -I./qs -I./diffserv 
-I./mac/802_1
  1e -I./wpan -o rsvp/rsvp-link.o rsvp/rsvp-link.cc
  rsvp/rsvp-link.cc: In constructor `RSVPChecker::RSVPChecker()':
  rsvp/rsvp-link.cc:47: error: call of overloaded `bind(const char[5], nsaddr_t*
 )' is ambiguous
  /home/asma/ns-allinone-2.28/tclcl-1.16/tclcl.h:182: error: candidates are: 
void
   
 TclObject::bind(const char*, unsigned int*) 
  /home/asma/ns-allinone-2.28/tclcl-1.16/tclcl.h:183: error: 
void
   
 TclObject::bind(const char*, int*) 
  make: *** [rsvp/rsvp-link.o] Error 1
 
   

  I am using ns-allinone-2.28 on the Cygwin environment.
  any advice??!!
   
  Sincerely,
  Asma
  
 
   

>Hi  >  >I support the following implementation:  
>>http://www.cc.jyu.fi/~sayenko/src/ns-2.28-rsvp2.diff.gz. The patch also  
>>installs the test scripts in tcl/ex/rsvp  >  >Sincerely,  >Alexander Sayenko 
>(PhD)  >Assistant  >Telecommunication laboratory, MIT department  >University 
>of Jyvaskyla, Finland  >  >  >>  >>  >>  >> Hi all!  >>  >>   IS any of u ppl 
>working on RSVP using NS-2???  >>   If so, then do send me some example codes 
>or some links where I can get  some direction about where shd I start 4m??  >> 
> >>   Thanks in advance,  >>   Deepti.  >>  >>  >> 
>-  >>  Jiyo cricket on Yahoo! India cricket  
>>> Yahoo! Messenger Mobile Stay in touch with your buddies all the time.

 Send instant messages to your online friends http://uk.messenger.yahoo.com 


[ns] Help Needed : Memory Model

2009-03-27 Thread Udit Kumar

Hi Friends,

I need to make a memory model in c++ so that I can treat this memory model
as a Node and I can transfer (write/read) data from some another node to it,
Please help me to write down a memory model ( I am new to C++ ) . If someone
is having memory model in C++ so that I can take reference from it , Please
send me.

Thanks & Regards,
Udit Kumar


[ns] Help Needed With NOAH

2005-12-30 Thread Sabbir Ahmed

Hi

I am using ns-allinone-2.1b9a on RedHat 6.2. I have
installed NOAH (old version) routing protocol
successfully. I need help regarding manual routing
with NOAH. How do I add routes manually ? Can some one
help me with examples ? The example at page
 is
for the updated version of NOAH.

One more question .. some of my scripts is working
properly with NOAH but with some I am getting
segmentation fault (these are working fine with DSDV).
Is this because I haven't set the routes ? 

Finally where is the Dumb Agent in ns-allinone-2.1b9a
... Are those included in ns-allinone-2.1b9a or later
version (I am not using gcc3.2 version of
ns-allinone-2.1b9a) ?

Regards

Sabbir





__ 
Yahoo! DSL – Something to write home about. 
Just $16.99/mo. or less. 
dsl.yahoo.com 



[ns] help needed flow monitoring

2006-02-04 Thread Aditya Chavali

hi all

im trying to monitor traffic by flow. could some one help me with the
following?

1. how do i interpret the per flow trace file?
2. how do i make a study of the service time recieved by each flow? im using
a FIFO discipline

thanks

--
keep mailing
urs
@ditya


[ns] Help needed on RSVP !

2006-03-30 Thread Deepti C



Hi all!
   
  IS any of u ppl working on RSVP using NS-2???
  If so, then do send me some example codes or some links where I can get some 
direction about where shd I start 4m??
   
  Thanks in advance,
  Deepti.


-
 Jiyo cricket on Yahoo! India cricket
Yahoo! Messenger Mobile Stay in touch with your buddies all the time.


Re: [ns] Help needed on RSVP !

2006-06-12 Thread Alexander Sayenko

Hi

I have seen earlier this error message. It seems that you have an old OTcl
version, try to install a more recent one. If it does not work, contact me.

Sincerely,
Alexander Sayenko (PhD)
Assistant
Telecommunication laboratory, MIT department
University of Jyvaskyla, Finland


>
> Hi ;;
>
>   I try to RSVP implementation from Mr. Alexander Sayenko, but in the make
step I get this error:
>


g_test -I. -I/home/asma/ns-allinone-2.28/tclcl-1.16 -I/home/asma/ns-allinone
-2.2
>


8/otcl-1.9 -I/home/asma/ns-allinone-2.28/include -I/home/asma/ns-allinone-2.
28/i
>


nclude -I/usr/include/pcap -I./tcp -I./sctp -I./common -I./link -I./queue -I
./ad
>


c -I./apps -I./mac -I./mobile -I./trace -I./routing -I./tools -I./classifier
 -I.
>


/mcast -I./diffusion3/lib/main -I./diffusion3/lib -I./diffusion3/lib/nr -I./
diff
>


usion3/ns -I./diffusion3/filter_core -I./asim/ -I./qs -I./diffserv -I./mac/8
02_1
>   1e -I./wpan -o rsvp/rsvp-link.o rsvp/rsvp-link.cc
>   rsvp/rsvp-link.cc: In constructor `RSVPChecker::RSVPChecker()':
>   rsvp/rsvp-link.cc:47: error: call of overloaded `bind(const char[5],
nsaddr_t*
>  )' is ambiguous
>   /home/asma/ns-allinone-2.28/tclcl-1.16/tclcl.h:182: error: candidates
are: void
>
>  TclObject::bind(const char*, unsigned int*) 
>   /home/asma/ns-allinone-2.28/tclcl-1.16/tclcl.h:183: error:
void
>
>  TclObject::bind(const char*, int*) 
>   make: *** [rsvp/rsvp-link.o] Error 1
>
>
>
>   I am using ns-allinone-2.28 on the Cygwin environment.
>   any advice??!!
>
>   Sincerely,
>   Asma
>
>
>
>
> >Hi  >  >I support the following implementation:
>http://www.cc.jyu.fi/~sayenko/src/ns-2.28-rsvp2.diff.gz. The patch also
>installs the test scripts in tcl/ex/rsvp  >  >Sincerely,  >Alexander
Sayenko (PhD)  >Assistant  >Telecommunication laboratory, MIT department
>University of Jyvaskyla, Finland  >  >  >>  >>  >>  >> Hi all!  >>  >>   IS
any of u ppl working on RSVP using NS-2???  >>   If so, then do send me some
example codes or some links where I can get  some direction about where shd
I start 4m??  >>  >>   Thanks in advance,  >>   Deepti.  >>  >>
 >> -  >>  Jiyo cricket on Yahoo! India
cricket  >> Yahoo! Messenger Mobile Stay in touch with your buddies all the
time.
>
>  Send instant messages to your online friends
http://uk.messenger.yahoo.com
>
>
>
> -- 
> Internal Virus Database is out-of-date.
> Checked by AVG Free Edition.
> Version: 7.1.385 / Virus Database: 268.5.2/329 - Release Date: 02.05.2006
>
>



[ns] help needed in ns-2

2007-03-16 Thread manju iyer

hai all,

I have an error as following :

invalid command name "Queue/ERED"
while executing
"Queue/ERED create _o16 "
invoked from within
"catch "$className create $o $args" msg"
invoked from within
"if [catch "$className create $o $args" msg] {
if [string match "__FAILED_SHADOW_OBJECT_" $msg] {
delete $o
return ""
}
global errorInfo
error "class $..."
(procedure "new" line 3)
invoked from within
"new Queue/$qtype"
("default" arm line 3)
invoked from within
"switch -exact $qtype {
ErrorModule {
if { [llength $args] > 0 } {
set q [eval new $qtype $args]
} else {
set q [new $qtype Fid]
}
}
intserv {
set qtyp..."
(procedure "_o3" line 14)
(Simulator simplex-link line 14)
invoked from within
"_o3 simplex-link _o10 _o13 2Mb 10ms ERED"
("eval" body line 1)
invoked from within
"eval $self simplex-link $n1 $n2 $bw $delay $type $args"
(procedure "_o3" line 8)
(Simulator duplex-link line 8)
invoked from within
"$ns duplex-link $node_(s1) $node_(r1) 2Mb 10ms ERED"
(file "tritqm.tcl" line 25)

I don't know how to correct this error ..
Please help



[ns] help needed urgently in TORA

2007-03-29 Thread Allaa Hilal

Dear all
I run a tcl file with TORA as the routing protocol, it doesnt terminate but
when i run the same file with AODV it terminates. I cant find the reason for
that Please help.

Best regards.
Allaa Hilal


[ns] help needed to rectify error......

2009-05-15 Thread Nikheel Kumar

*hi all,

friends this tcl script is very necessary for my thesis please replay ASAP.
i am using n-2.31 with cygwin Actually i want to simulate short session and
to measure the distribution of the transmission duration of the number of
ongoing connections and the throughput in TCP connections. for this i use
monitoring the number of session. it will be look like following scenario::
*


S(1)  
.   |
.   |
.   |
.
|---ND(1)
...D(NodeNb)
.   |
.   |
.   |
S(NodeNb)-

*for this tcl file is as follows:*

set ns [new Simulator]

#this file contain transfer time of different connection
set Out [open Out.ns w]

#next file will contain the number of connections
set Conn [open Conn.tr w]

#open the trace file
set tf [open out.tr w]
$ns trace-all $tf

#we define the 3 files that will be used to trace the queue size,
#the bandwidth and lasses at the bottleneck.
set qsize [open queuesize.tr w]
set qbw [open queuebw.tr w]
set qlost [open queuelost.tr w]

#defining the topology
set N [$ns node]
set D [$ns node]
$ns duplex-link $N $D 2Mb 1ms DropTail
$ns queue-limit $N $D 3000

#number of sources
set NodeNb 6

#number of flows per source node
set NumberFlows 530

#Nodes and links
for { set j 1 } {$j<=$NodeNb} {incr j} {
set S($j) [$ns node]
$ns duplex-link $S($j) $N 100Mb 1ms DropTail
$ns queue-limit $S($j) $N 1000
}

#TCP sources and destinations
for {set i 1} {$i<=$NodeNb} { incr i } {
for {set j 1} {$j<=$NumberFlows} { incr j } {
set tcpsrc ($i, $j) [new Agent/TCP/Newreno]
set tcp_snk ($i, $j) [new Agent/TCPSink]
$tcpsrc($i, $j) set window_ 2000
}
}

#connections
for {set i 1} {$i<=$NodeNb} { incr i } {
for {set j 1} {$j<=$NumberFlows} { incr j } {
$ns attach-agent $S($i) $tcpsrc($i, $j)
$ns attach-agent $D $tcp_snk($i, $j)
$ns connect $tcpsrc($i, $j) $tcp_snk($i, $j)
}
}

#ftp sources
for {set i 1} {$i<=$NodeNb} { incr i } {
for {set j 1} {$j<=$NumberFlows} { incr j } {
set ftp($i, $j) [$tcpsrc($i, $j) attach-source FTP]
}
}

#generator for the random size of files
set rng1 [new RNG]
$rng1 seed 0
set rng2 [new RNG]
$rng2 seed 0

#random interarrival time of tcp transfers at each source i
set RV [new RandomVariable/Exponential]
$RV set avg_ 0.045
$RV use-rng $rng1

#random size of files to transmit
set RV [new RandomVariable/Exponential]
$RVSize set avg_ 1
$RVSize set shape_ 1.5
$RVSize use-rng $rng2

#we nw define the begining times of transfers and the transfer sizes
#arrivals of sessions follow a poisson process
for {set i 1} {$i<=$NodeNb} { incr i } {
set t [$ns now]
for {set j 1} {$j<=$NumberFlows} { incr j } {

#set the begining time of next transfer from source i
set t [expr $t + [$RV value]]
set Conct($i, $j) $t

#set the size of next transfer from source i
set Size($i, $j) [expr [$RVSize value]]
$ns at $Conct($i, $j) "$ftp($i, $j) send $Size($i, $j)"

#update the number of flows
$ns at #Conct($i, $j) "countFlows $i 1"
}
}

#next is a recursive procedure that checks for each session whether
#it has ended. the procedure calls itself each 0.1 sec (this is set in
#the variable "time")
#if a connection has ended then we print in the file $Out
#* the connection identifiers r i and j
#* the start and end time of the connection,
#* the throughput of the session,
#* the size of the transfer in bytes
# and we further defines another begining  of transfer after a random times
proc Test {} {
global  Conct tcpsrc Size NodeNB NumberFlows ns RV ftp Out tcp_snk
RVSize
set time 0.1
for {set i 1} {$i<=$NodeNb} { incr i } {
for {set j 1} {$j<=$NumberFlows} { incr j } {

#we now check if the transfer is over
if {[$tcpsrc($i, $j) set ack_]==[$tcpsrc($i, $j) set maxseq_]} {
if {[$tcpsrc($i, $j) set ack_]>=0} {

#if the transfer is over, we print relevent information  in $Out
puts $Out "$i, $j\t$Conct($i, $j)\t[expr [$ns now]]\t\
[expr ($Size($i, $j))/(1000*([expr [$ns now ]] - $Conct($i,
$j)))]\t$Size($i, $j)"
countFlows $i 0
$tcpsrc($i, $j) reset
$tcp_snk($i, $j) reset
}
}
}
}
$ns at [expr [$ns now]+$time] "Test"
}
for {set j 1} {$j<=$NodeNb} { incr j } {
set Cnts($j) 0
}

# the following recursive procedure updates the number of connections as a
function of time.
# Each 0.2 it prints them in to $Conn. This is done by calling the procedure
with the "sign"
# parameter equal 3 (in which case the "ind" parameter does not play a
role). the procedure
# is also called by the Test procedure whenever a connec

[ns] help needed for AOMDV simulation

2010-09-14 Thread ankur goyal

Hi all,

I want to know that to run AOMDV in ns2.35 we just need to change the
routing protocol to AOMDV and rest all things will be same as like in AODV
or is there any other changes need to made in AODV tcl file to run the AOMDV
protocol.

Thanks,
Ankur


[ns] help needed to simulate MIH

2011-07-31 Thread Payaswini Nayak



Hi friends..
I am new to ns2. I want to simulate MIH and compare hand off latency using ns2. 
So plz send me TCl code or any useful link to study how to simulate MIH in ns2. 
I have already installed ns2.29 supporting MIH fron NIST website.  


[ns] Help Needed!!! Leach Segmentation Fault

2011-12-05 Thread Najma Ismat


Hi, i m working on the reliability of WSN and trying simulate leach tcl script 
generated by mannasim script generator tool on ns-2.29 but when i run the 
script i get the segmentation fault error. also the trace file contains no 
captured data.
i'll be grateful if anyone can help me in this regard.
Part of sh output:
Setting up mica 2 mote with Antenna/OmniAntenna and range = 100Setting 
disseminating type to programmedSetting disseminating interval: 20.0warning: no 
class variable RCALinkLayer::avoidReordering_see tcl-object.tcl in tclcl 
for info about this warning.* Node 1 = 1 created in (79.513404648524428, 
95.248294712625579, 0.0)NO CLUSTER HEADS HAS BEEN DEFINED! Assuming 20% of 
common nodes.warning: no class variable RCALinkLayer::avoidReordering_  see 
tcl-object.tcl in tclcl for info about this warning.* Node 2 = 2 created in 
(92.129573175743957, 88.770788763077363, 0.0)warning: no class variable 
RCALinkLayer::avoidReordering_  see tcl-object.tcl in tclcl for info about this 
warning.* Node 3 = 3 created in (72.376646647405181, 79.215351575620176, 
0.0)warning: no class variable RCALinkLayer::avoidReordering_  see 
tcl-object.tcl in tclcl for info about this warning.* Node 4 = 4 created in 
(63.633464120157747, 65.583406419299266, 0.0)warning: no class variable 
RCALinkLayer::avoidReorderi!
 ng_see tcl-object.tcl in tclcl for info about this warning.* Node 5 = 5 
created in (43.773140312998152, 93.589578985045463, 0.0)warning: no class 
variable RCALinkLayer::avoidReordering_  see tcl-object.tcl in tclcl for info 
about this warning.* Node 6 = 6 created in (6.9983314289703644, 
70.409574299310137, 0.0)warning: no class variable 
RCALinkLayer::avoidReordering_  see tcl-object.tcl in tclcl for info about this 
warning.* Node 7 = 7 created in (24.015341430909626, 41.479590507913187, 
0.0)warning: no class variable RCALinkLayer::avoidReordering_  see 
tcl-object.tcl in tclcl for info about this warning.* Node 8 = 8 created in 
(24.35720321925227, 39.953930275493271, 0.0)warning: no class variable 
RCALinkLayer::avoidReordering_   see tcl-object.tcl in tclcl for info about 
this warning.* Node 9 = 9 created in (92.600050332304122, 54.858986081024163, 
0.0)warning: no class variable RCALinkLayer::avoidReordering_  see 
tcl-object.tcl in tclcl for info about this warning.* Node 10 = 10!
  created in (58.475501862575996, 14.179648325862198, 0.0)warning: no c
lass variable RCALinkLayer::avoidReordering_see tcl-object.tcl in tclcl for 
info about this warning.* Node 11 = 11 created in (7.6266574243207739, 
94.71701578922432, 0.0)warning: no class variable 
RCALinkLayer::avoidReordering_ see tcl-object.tcl in tclcl for info about this 
warning.* Node 12 = 12 created in (53.773134971863193, 13.624413317825837, 
0.0)warning: no class variable RCALinkLayer::avoidReordering_see 
tcl-object.tcl in tclcl for info about this warning.* Node 13 = 13 created in 
(82.76011752093217, 60.574610233574454, 0.0)warning: no class variable 
RCALinkLayer::avoidReordering_ see tcl-object.tcl in tclcl for info about this 
warning.* Node 14 = 14 created in (76.781852346277731, 60.826276131359059, 
0.0)warning: no class variable RCALinkLayer::avoidReordering_see 
tcl-object.tcl in tclcl for info about this warning.* Node 15 = 15 created in 
(58.171462527556095, 86.349565762257924, 0.0)warning: no class variable 
RCALinkLayer::avoidReordering_see tcl-object.tcl in!
  tclcl for info about this warning.* Node 16 = 16 created in 
(95.654317408639159, 98.611530241841223, 0.0)warning: no class variable 
RCALinkLayer::avoidReordering_see tcl-object.tcl in tclcl for info about 
this warning.* Node 17 = 17 created in (37.741978204688984, 34.731551462193742, 
0.0)warning: no class variable RCALinkLayer::avoidReordering_see 
tcl-object.tcl in tclcl for info about this warning.* Node 18 = 18 created in 
(79.286557426343933, 49.005219363144235, 0.0)warning: no class variable 
RCALinkLayer::avoidReordering_see tcl-object.tcl in tclcl for info 
about this warning.* Node 19 = 19 created in (79.005452282263647, 
58.994268001520197, 0.0)warning: no class variable 
RCALinkLayer::avoidReordering_see tcl-object.tcl in tclcl for info 
about this warning.* Node 20 = 20 created in (21.966236467457488, 
59.812565827654943, 0.0)warning: no class variable 
RCALinkLayer::avoidReordering_see tcl-object.tcl in tclcl for info 
about this warning.* Node 21 = 21 created in (5!
 8.109617725997055, 61.678861436284549, 0.0)warning: no class variable 
RCALinkLayer::avoidReordering_  see tcl-object.tcl in tclcl for info about this 
warning.* Node 22 = 22 created in (4.3537809068121858, 1.3019029522789189, 
0.0)warning: no class variable RCALinkLayer::avoidReordering_see 
tcl-object.tcl in tclcl for info about this warning.* Node 23 = 23 created in 
(59.527306193265737, 51.002181671095173, 0.0)warning: no class variable 
RCALinkLayer::avoidReordering_see tcl-object.tcl in tcl

[ns] Help needed in trace file

2006-02-18 Thread A Anupama

Hi
  When an entry will be made in a trace file (for control traffic)...
If we use AODV protocol, when an entry for REQUEST will be made either when
the RREQ packet is sheduled to send or when a RREQ is received by a node (or
agent) ?
  How can we know the path followed by a node while sending data packets
? and how can we know the optimum path ?


Regards
Anupama


Re: [ns] Help needed on RSVP !

2006-03-31 Thread Alexander Sayenko

Hi

I support the following implementation:
http://www.cc.jyu.fi/~sayenko/src/ns-2.28-rsvp2.diff.gz. The patch also
installs the test scripts in tcl/ex/rsvp

Sincerely,
Alexander Sayenko (PhD)
Assistant
Telecommunication laboratory, MIT department
University of Jyvaskyla, Finland


>
>
>
> Hi all!
>
>   IS any of u ppl working on RSVP using NS-2???
>   If so, then do send me some example codes or some links where I can get
some direction about where shd I start 4m??
>
>   Thanks in advance,
>   Deepti.
>
>
> -
>  Jiyo cricket on Yahoo! India cricket
> Yahoo! Messenger Mobile Stay in touch with your buddies all the time.



Re: [ns] Help needed on RSVP !

2006-03-31 Thread Gilles Bertrand

Hi Deepti,

you may find the following paper useful:
/RSVP/ns: An Implementation of RSVP for the Network Simulator ns-2/ - 
Marc Greis - http://www.sti.uniurb.it/acquaviva/didattica/rsvpns.pdf

The adaptations of this RSVP\ns to recent version of NS (<=2.26) are 
provided on R. Prior's web page:
http://www.ncc.up.pt/~rprior/ns/index-en.html

Alexander Sayenko seems to have updated this tool to the last versions 
of NS (2.27 and 2.28). I have not tested it for the moment 
(http://www.cc.jyu.fi/~sayenko/src/).

Mit freundlichen Grüßen, with kind regards, cordialement,

--
Gilles BERTRAND
Institut National des Télécommunications (GET)- Universität Stuttgart
--


Deepti C a écrit :

>
>Hi all!
>   
>  IS any of u ppl working on RSVP using NS-2???
>  If so, then do send me some example codes or some links where I can get some 
> direction about where shd I start 4m??
>   
>  Thanks in advance,
>  Deepti.
>
>   
>-
> Jiyo cricket on Yahoo! India cricket
>Yahoo! Messenger Mobile Stay in touch with your buddies all the time.
>
>  
>


[ns] Help needed for ns2HCCA patch

2006-04-16 Thread Ritwik Mitra

   Hello 

 I am working on a project on 802.11E schedulers. I am trying to implement 
ARROW and SETT-EDD schedulers with some minor modifications, using the ns2HCCA 
patch for NS-2.27.
 
 However, I am facing the following problems:
 
 1. Where (in the code) does a CAP start mechanism take place. There is a 
startCAP(void) function in mac-802_11e.cc file, but it is called twice. Once, 
when we specify start-hcca in the TCL  script and second time when we pass the 
TSPEC parameters in the TCL script.
 Is this function called only when the QAP starts a CAP?
 
 2. How does the patch ensure that the TXOP list that is created is being 
followed fully. Consider the offline TXOP list that is created. Suppose it 
contains the TXOP times for the stations 1,2,5,6. How does the patch ensure 
that first only station 1 will access the channel, and then stations 2, 5, 6 
... and so on. How is this being ensured?
 
 3. How do the stations get access to the channel i.e. how does the channel 
access switch mechanism take place. E.g. Suppose at time t station 1 is 
accessing the channel. After time t+t1 , i want station 2 to access the 
channel. How can i do that? 
  
 I would be really grateful if anyone could explain me the working of the patch 
w.r.t the questions mentioned above. Also, any suggestion as to how to go about 
implementing the ARROW scheduler would be welcome.
 
 Thanks in advance.

  Ritwik Mitra 
M.Sc. Computer Science 
Department of Computer Science, 
Delhi University 



  





-
Talk is cheap. Use Yahoo! Messenger to make PC-to-Phone calls.  Great rates 
starting at 1¢/min.


[ns] Help needed for "Application/Traffic/Trace"

2006-04-27 Thread piyush sharma

Hi ns-users,

I am trying to use the 'example-trace' file located in the ns-2.28/tcl/ex/
directory for generating traffic. I am using the following commands in my
tcl script, but the trace file generated after the simulation is blank.

Please help!
Thanks!

set tfile [new Tracefile]
$tfile filename example-trace
set t1 [new Application/Traffic/Trace]
$t1 attach-tracefile $tfile

I have put the file 'example-trace' in the directory from where  I am
running ns.


[ns] help needed to downgrade GCC version

2007-03-23 Thread Martin Dario Pereyra

  Hi all, I have a problem when installing old gcc version. I use
ns-allinone-2.27 with NRLSensorSim extension (2.27 is the most recent
version for this extension) in Fedora Core 6 with gcc 4.1. I have a patch
for this version of ns to work with gcc 4.1 but for the extensions added
doesn't work.
 So I want to install an alternate gcc compiler on my fedora (gcc 2.95) like
a solution. This two packages:

gcc-core-2.95.tar.gz
gcc-g++-2.95.tar.gz

i do gcc configure:

/home/mpereyra/gcc/gcc-2.95/configure \
--prefix=/opt/gcc295 \
--program-suffix=295 \
--enable-languages=c,c++ \
--enable-shared --enable-threads=posix --disable-cheking \
--with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions

and when i do 'make' this is the error:

/home/mpereyra/gcc/gcc-2.95/gcc/frame.c:55: extra brace group at end of
initializer
/home/mpereyra/gcc/gcc-2.95/gcc/frame.c:55: (near initialization for
`object_mutex.__data')
/home/mpereyra/gcc/gcc-2.95/gcc/frame.c:55: warning: excess elements in
struct initializer
/home/mpereyra/gcc/gcc-2.95/gcc/frame.c:55: warning: (near initialization
for `object_mutex.__data')
make[1]: *** [libgcc2.a ] Error 1
make[1]: se sale del directorio `/home/mpereyra/gcc/build/gcc'
make: *** [all-gcc] Error 2

("se sale del directorio" means 'leaving directory')

Another relevant information:

[EMAIL PROTECTED] build]# uname -a
Linux localhost.localdomain 2.6.18-1.2798.fc6 #1 SMP Mon Oct 16 14:37:32 EDT
2006 i686 i686 i386 GNU/Linux
[EMAIL PROTECTED] build]# rpm -q gcc
gcc-4.1.1-30

I Think that some paremeters of gcc configure are not ok. What do you think?


[ns] help needed for NAM and Xgraph

2009-04-05 Thread moinul islam

i am using cygwin-1.5.25 and ns-allinone-2.29.2 in windows vista .i am a novice 
ns user.can anybody plz help me regarding how to setup and run nam and xgraph 
plz.


  


Re: [ns] help needed to rectify error......

2009-05-16 Thread Nikheel Kumar

thanx for coopration i got the error

:)

On Sat, May 16, 2009 at 11:17 AM, Nikheel Kumar wrote:

> *hi all,
>
> friends this tcl script is very necessary for my thesis please replay ASAP.
> i am using n-2.31 with cygwin Actually i want to simulate short session and
> to measure the distribution of the transmission duration of the number of
> ongoing connections and the throughput in TCP connections. for this i use
> monitoring the number of session. it will be look like following scenario::
> *
>
>
> S(1)  
> .   |
> .   |
> .   |
> .
> |---ND(1)
> ...D(NodeNb)
> .   |
> .   |
> .   |
> S(NodeNb)-
>
> *for this tcl file is as follows:*
>
> set ns [new Simulator]
>
> #this file contain transfer time of different connection
> set Out [open Out.ns w]
>
> #next file will contain the number of connections
> set Conn [open Conn.tr w]
>
> #open the trace file
> set tf [open out.tr w]
> $ns trace-all $tf
>
> #we define the 3 files that will be used to trace the queue size,
> #the bandwidth and lasses at the bottleneck.
> set qsize [open queuesize.tr w]
> set qbw [open queuebw.tr w]
> set qlost [open queuelost.tr w]
>
> #defining the topology
> set N [$ns node]
> set D [$ns node]
> $ns duplex-link $N $D 2Mb 1ms DropTail
> $ns queue-limit $N $D 3000
>
> #number of sources
> set NodeNb 6
>
> #number of flows per source node
> set NumberFlows 530
>
> #Nodes and links
> for { set j 1 } {$j<=$NodeNb} {incr j} {
> set S($j) [$ns node]
> $ns duplex-link $S($j) $N 100Mb 1ms DropTail
> $ns queue-limit $S($j) $N 1000
> }
>
> #TCP sources and destinations
> for {set i 1} {$i<=$NodeNb} { incr i } {
> for {set j 1} {$j<=$NumberFlows} { incr j } {
> set tcpsrc ($i, $j) [new Agent/TCP/Newreno]
> set tcp_snk ($i, $j) [new Agent/TCPSink]
> $tcpsrc($i, $j) set window_ 2000
> }
> }
>
> #connections
> for {set i 1} {$i<=$NodeNb} { incr i } {
> for {set j 1} {$j<=$NumberFlows} { incr j } {
> $ns attach-agent $S($i) $tcpsrc($i, $j)
> $ns attach-agent $D $tcp_snk($i, $j)
> $ns connect $tcpsrc($i, $j) $tcp_snk($i, $j)
> }
> }
>
> #ftp sources
> for {set i 1} {$i<=$NodeNb} { incr i } {
> for {set j 1} {$j<=$NumberFlows} { incr j } {
> set ftp($i, $j) [$tcpsrc($i, $j) attach-source FTP]
> }
> }
>
> #generator for the random size of files
> set rng1 [new RNG]
> $rng1 seed 0
> set rng2 [new RNG]
> $rng2 seed 0
>
> #random interarrival time of tcp transfers at each source i
> set RV [new RandomVariable/Exponential]
> $RV set avg_ 0.045
> $RV use-rng $rng1
>
> #random size of files to transmit
> set RV [new RandomVariable/Exponential]
> $RVSize set avg_ 1
> $RVSize set shape_ 1.5
> $RVSize use-rng $rng2
>
> #we nw define the begining times of transfers and the transfer sizes
> #arrivals of sessions follow a poisson process
> for {set i 1} {$i<=$NodeNb} { incr i } {
> set t [$ns now]
> for {set j 1} {$j<=$NumberFlows} { incr j } {
>
> #set the begining time of next transfer from source i
> set t [expr $t + [$RV value]]
> set Conct($i, $j) $t
>
> #set the size of next transfer from source i
> set Size($i, $j) [expr [$RVSize value]]
> $ns at $Conct($i, $j) "$ftp($i, $j) send $Size($i, $j)"
>
> #update the number of flows
> $ns at #Conct($i, $j) "countFlows $i 1"
> }
> }
>
> #next is a recursive procedure that checks for each session whether
> #it has ended. the procedure calls itself each 0.1 sec (this is set in
> #the variable "time")
> #if a connection has ended then we print in the file $Out
> #* the connection identifiers r i and j
> #* the start and end time of the connection,
> #* the throughput of the session,
> #* the size of the transfer in bytes
> # and we further defines another begining  of transfer after a random times
>
> proc Test {} {
> global  Conct tcpsrc Size NodeNB NumberFlows ns RV ftp Out tcp_snk
> RVSize
> set time 0.1
> for {set i 1} {$i<=$NodeNb} { incr i } {
> for {set j 1} {$j<=$NumberFlows} { incr j } {
>
> #we now check if the transfer is over
> if {[$tcpsrc($i, $j) set ack_]==[$tcpsrc($i, $j) set maxseq_]}
> {
> if {[$tcpsrc($i, $j) set ack_]>=0} {
>
> #if the transfer is over, we print relevent information  in $Out
> puts $Out "$i, $j\t$Conct($i, $j)\t[expr [$ns now]]\t\
> [expr ($Size($i, $j))/(1000*([expr [$ns now ]] - $Conct($i,
> $j)))]\t$Size($i, $j)"
> countFlows $i 0
> $tcpsrc($i, $j) reset
> $tcp_snk($i, $j) reset
> }
> }
> }
> }
> $ns at [expr [$ns now]+$time] "Test"
> }
> for {set 

[ns] Help needed in simulating Q-Routing

2010-07-20 Thread ankur goyal

Hi,

I have to simulate Q-routing to see the performance of the network in low
and high load condition as mentioned in Justin boyne's paper. Can anyone
please help me to simulate this as NS2 is new to me. I have already read
many documents on Q-routing and NS manual, but i am still not able to code
Q-routing.

Please help me in simulation.

Thanks,
Ankur


[ns] help needed for creating wormole link

2010-09-24 Thread david samuel

its part of research ; i wan to create wormhole link in wireless network
please help me to do that. i have created nodes with different transmission 
ranges. but packets do not go through nodes with high transmission range;

help me create wormhole link

thanks 



  


Re: [ns] help needed to simulate MIH

2011-07-31 Thread Muhammad Shadi Hajar

There are some useful examples in hsntg subdirectory.
WBR

On Mon, Aug 1, 2011 at 8:35 AM, Payaswini Nayak wrote:

>
>
>
> Hi friends..
> I am new to ns2. I want to simulate MIH and compare hand off latency using
> ns2. So plz send me TCl code or any useful link to study how to simulate MIH
> in ns2. I have already installed ns2.29 supporting MIH fron NIST website.
>



-- 
Eng. Muhammad Shadi Hajar


Re: [ns] Help Needed regarding the BackOff

2012-12-24 Thread Sai Bhyravajosyula

On Monday, December 24, 2012, Sai Bhyravajosyula  wrote:
> Hi All
> I am modifying backoff Algorithm
> I have a simple network of 3 parallel flows . THe flow in the middle
scenario.
> I tried to increase the fairness by tweaking the backoff.
> Now i need to see whether the transmitter is backing off or not.
> I need to know is there any way to check whether node has been backed off
in transmission or not.
> Please help me
> Thanks
>
>
> --
> Bhyravajosyula Sai Vishnu Kiran
> MS in Computer Science
> mail-id:  sbhyr...@asu.edu
>

-- 
Bhyravajosyula Sai Vishnu Kiran
MS in Computer Science
mail-id:  sbhyr...@asu.edu


[ns] Help needed to solve the installation probelm

2007-03-21 Thread taraka praveen


Hi friends,

I am getting the following while installing ns-2.1b8a.

simulator.o(.text+0x735): In function
`Simulator::populate_hier_classifiers()':
: undefined reference to
`RouteLogic::elements_in_level(int*, int)'
collect2: ld returned 1 exit status
make: *** [ns] Error 1
Ns make failed!
See http://www.isi.edu/nsnam/ns/ns-problems.html for
problems


Please suggest me to overcome that problem.

Thanks in advance,
Taraka Goud



__
Yahoo! India Answers: Share what you know. Learn something new
http://in.answers.yahoo.com/



Re: [ns] help needed to downgrade GCC version

2007-03-24 Thread Mohammad Zubair Ahmad

This is a problem with the gcc version. I had a lot of problems recently
when I tried to install the NRL extensions with the ns 2.27 version.
Downgrading gcc is not actually an easy task (as I discovered). Google up
some gcc forums and follow steps provided there. I will look again for the
link I used and let you know if I find it.

Simple solution to the problem though -  Use fedora 2. The whole sensor net
extension and ns installation gets done without problems in 15 mins. Just a
quick hack to your problem .. :)

Zubair

On 3/23/07, Martin Dario Pereyra <[EMAIL PROTECTED]> wrote:
>
>
>   Hi all, I have a problem when installing old gcc version. I use
> ns-allinone-2.27 with NRLSensorSim extension (2.27 is the most recent
> version for this extension) in Fedora Core 6 with gcc 4.1. I have a patch
> for this version of ns to work with gcc 4.1 but for the extensions added
> doesn't work.
> So I want to install an alternate gcc compiler on my fedora (gcc 2.95)
> like
> a solution. This two packages:
>
> gcc-core-2.95.tar.gz
> gcc-g++-2.95.tar.gz
>
> i do gcc configure:
>
> /home/mpereyra/gcc/gcc-2.95/configure \
> --prefix=/opt/gcc295 \
> --program-suffix=295 \
> --enable-languages=c,c++ \
> --enable-shared --enable-threads=posix --disable-cheking \
> --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions
>
> and when i do 'make' this is the error:
>
> /home/mpereyra/gcc/gcc-2.95/gcc/frame.c:55: extra brace group at end of
> initializer
> /home/mpereyra/gcc/gcc-2.95/gcc/frame.c:55: (near initialization for
> `object_mutex.__data')
> /home/mpereyra/gcc/gcc-2.95/gcc/frame.c:55: warning: excess elements in
> struct initializer
> /home/mpereyra/gcc/gcc-2.95/gcc/frame.c:55: warning: (near initialization
> for `object_mutex.__data')
> make[1]: *** [libgcc2.a ] Error 1
> make[1]: se sale del directorio `/home/mpereyra/gcc/build/gcc'
> make: *** [all-gcc] Error 2
>
> ("se sale del directorio" means 'leaving directory')
>
> Another relevant information:
>
> [EMAIL PROTECTED] build]# uname -a
> Linux localhost.localdomain 2.6.18-1.2798.fc6 #1 SMP Mon Oct 16 14:37:32
> EDT
> 2006 i686 i686 i386 GNU/Linux
> [EMAIL PROTECTED] build]# rpm -q gcc
> gcc-4.1.1-30
>
> I Think that some paremeters of gcc configure are not ok. What do you
> think?
>



-- 
Mohammad Zubair Ahmad
PhD Student, Computer Engineering
University of Central Florida,
Orlando, FL 32826
Cell:(407)-435-9070


[ns] help needed to solve segmentation fault problem

2007-04-06 Thread abu shahriar

Hi all,

I am getting segmentation fault when I call send(p,0) to broadcast a packet
from my c++ code in ns. Can anyone please help me to find out why this
happe?


[ns] Help needed for xgraph and environment variables

2009-09-04 Thread BilalAKhan


Hi,

Can anyone tell me if I have registered the variables in environment
correctly!!! My xgraph is not working and giving me an error... I assume it
is not registered in the environment correctly.  I am uploading an
Installation Guide. Can anyone help me by looking at the installation guide
if I have registered the environment variables correctly???

http://www.nabble.com/file/p25304965/NS-2%2BInstallation%2BManual.doc
NS-2+Installation+Manual.doc 

Thanks in advance...

Regards,

Bilal A. Khan

-
Regards,

Bilal A. Khan
-- 
View this message in context: 
http://www.nabble.com/Help-needed-for-xgraph-and-environment-variables-tp25304965p25304965.html
Sent from the ns-users mailing list archive at Nabble.com.



[ns] Help needed ... trconvert not working with me

2009-09-05 Thread BilalAKhan


Hi,

I am using trconvert for converting my out.tr into a graphical output. When
I write ./trconvert out.tr on konsole, it kind of works according to me but
does not convert the file The error is given below:

Trying to recognize format of out.tr trace file...
1 lines have been processed to recognize trace format.
wired format has been detected
trace file will not be converted

Can anyone please help me with this??? xgraph is not working with me
either... What should I do???

Regards,

Bilal A. Khan


-
Regards,

Bilal A. Khan
-- 
View this message in context: 
http://www.nabble.com/Help-needed-...-trconvert-not-working-with-me-tp25305639p25305639.html
Sent from the ns-users mailing list archive at Nabble.com.



[ns] Help needed in gdb and Node file

2009-10-26 Thread amina bechtarzi

Dear all ,
I am using gdb to  deluging  my tcl and c++ code. I used a function
size_neighbord_list (),  in node.cc node.h code.
But after I remove it for my code  node.cc node.h. When doing some
simulation test a segmentation fault occur :

(gdb) continue
Continuing.
4 is setting code to 0

Program received signal SIGSEGV, Segmentation fault.
0x081218fb in Node::size_neighbord_list ()
(gdb) bt
#0  0x081218fb in Node::size_neighbord_list ()
#1  0x0821a014 in leachApp::decideClusterHead ()
#2  0x0821a52b in App::start ()
#3  0x0820b474 in CommonNodeApp::command ()
#4  0x082546c2 in TclClass::dispatch_cmd ()
#5  0x0825942c in OTclDispatch (cd=, in=0x8456490,
argc=3, argv=0xbfdbc58c) at otcl.c:434
#6  0x0826018e in TclInvokeStringCommand ()
#7  0x08261c82 in TclEvalObjvInternal ()
#8  0x0828bf01 in TclExecuteByteCode ()
#9  0x0829073c in TclCompEvalObj ()
#10 0x0828bda2 in TclExecuteByteCode ()
#11 0x0829073c in TclCompEvalObj ()
#12 0x082b8cde in TclObjInterpProc ()
#13 0x082b9122 in TclProcInterpProc ()
#14 0x082595b6 in OTclDispatch (cd=, in=0x8456490,
argc=2, argv=0xbfdbd16c) at otcl.c:477
#15 0x0826018e in TclInvokeStringCommand ()
#16 0x08261c82 in TclEvalObjvInternal ()
#17 0x08262245 in Tcl_EvalEx ()
#18 0x0826255c in Tcl_Eval ()
#19 0x082625f6 in Tcl_GlobalEval ()
#20 0x082571b9 in Tcl::eval ()
#21 0x0805494a in AtHandler::handle ()
#22 0x08054612 in Scheduler::dispatch ()
#23 0x0805485e in Scheduler::run ()
#24 0x08054b1d in Scheduler::command ()
#25 0x082546c2 in TclClass::dispatch_cmd ()
#26 0x0825942c in OTclDispatch (cd=, in=0x8456490,
argc=3, argv=0xbfdbe0c8) at otcl.c:434
#27 0x0826018e in TclInvokeStringCommand ()
---Type  to continue, or q  to quit---
#28 0x08261c82 in TclEvalObjvInternal ()
#29 0x0828bf01 in TclExecuteByteCode ()
#30 0x0829073c in TclCompEvalObj ()
#31 0x0828bda2 in TclExecuteByteCode ()
#32 0x0829073c in TclCompEvalObj ()
#33 0x082b8cde in TclObjInterpProc ()
#34 0x082b9122 in TclProcInterpProc ()
#35 0x082595b6 in OTclDispatch (cd=, in=0x8456490,
argc=2, argv=0xbfdbe39c) at otcl.c:477
#36 0x0826018e in TclInvokeStringCommand ()
#37 0x08261c82 in TclEvalObjvInternal ()
#38 0x0828bf01 in TclExecuteByteCode ()
#39 0x0829073c in TclCompEvalObj ()
#40 0x082b8cde in TclObjInterpProc ()
#41 0x082b9122 in TclProcInterpProc ()

(gdb)


I can not understand why i still have this error !!!

Could any one give me any advice, pls ?  I really appreciate it.
Thank you


[ns] help needed in ad hoc n/w

2006-03-11 Thread Raja bvni

  
hi everyone

i am working with aodv as my routing protocol in ad hoc networks.
i want to know how to calculate the average path length from source node to 
destination node
will it be possible to calcualte  from trace file. if so pls give me the details
regards
raja


[ns] Help needed to calculate energy dissipation in wsns

2006-10-30 Thread Chitra Magar

Hi everyone,
I am using directed diffusion as routing protocol for my simulation. I want
calculate dissipated energy and delay in the wireless sensor networks. Can I
use awk for calculating energy dissipation. Thanks in advance for any
suggestion.


Chitra Magar
Shanghai,China


[ns] help needed to analyse directed diffusion trace format!!!

2007-02-26 Thread Chitra Magar

Hi all,
I am using directed diffusion for my simulation. Can anyone help me to
analyse directed diffusion trace format? Thanks in advance.

s 1.559003000 _2_ AGT  --- 7 diffusion 0 [0 0 0 0] --- [2:254 2:255 32
0]
s 1.559298000 _2_ MAC  --- 8 diffusion 52 [0  2 800] --- [2:255
-1:255 32 0]
can anyone explain what above trace format means?

Sincerely,
Chitra Magar
Shanghai, China


Re: [ns] help needed to solve segmentation fault problem

2007-04-06 Thread Timo Reimann

abu shahriar wrote:
> I am getting segmentation fault when I call send(p,0) to broadcast a
> packet
> from my c++ code in ns. Can anyone please help me to find out why this
> happe?

Install gdb or ddd, make sure you compiled ns with debugging symbols,
start your debugger and let the program crash. Check the backtrace to see
at which point it stopped working, set a breakpoint and start
investigating while you're stepping through the code from that point on.

If you've never worked with gdb/ddd before, it might look a little bit
difficult at first but it's an absolute necessity for any serious
programmer to master it. There are some excellent tutorials out there. As
a starter, I'd recommend these

http://heather.cs.ucdavis.edu/~matloff/UnixAndC/CLanguage/Debug.html
http://www.unknownroad.com/rtfm/gdbtut/gdbtoc.html

for gdb and this one

http://heather.cs.ucdavis.edu/~matloff/Debug/Debug.pdf [PDF slideshow]

for ddd.


Good luck!

--Timo



[ns] Help needed on Multiple interface support in 802.15.4

2010-03-29 Thread Lupe Krops

Dear all,

I'm trying to implement multiple interface support for 802.15.4 networks using 
Ramon's Calvo guide 
(http://personales.unican.es/aguerocr/files/ucMultiIfacesSupport.pdf). Their 
work concerns 802.11
networks, so I need to make the appropriate changes to include 802.15.4 
networks. In the document,
among other files, they have edited the recv method in the mac-802_11.cc file. 
I tried to change the
relevant mac 802.15.4 file, however unsuccessfully, as I cannot identify where 
the change should take
place. I will be thankful if someone can guide me on how to make the 
appropriate changes in order to
implement multiple interface support in 802.15.4 networks and also let me 
know if there is the need to 
change files other than the ones listed in the relevant guide.

Thank you in advance.

Best regards,
Lup.


  


[ns] help needed to find out ODMRP protocol patch

2010-07-10 Thread Waqas Siddiqui

Dear Friends,
 
Please help me to find out ODMRP protocol patch and its installation 
instructions.


Waqas Hassan Siddiqui
MS in Computer Science (Networks)
University West, Trollhattan, Sweden


  


[ns] Help needed for HCCA patch on NS-2.27

2006-04-14 Thread Ritwik Mitra

Hi!
 
 I downloaded and installed the HCCA patch for NS-2.27 from 
http://info.iet.unipi.it/~cng/ns2hcca/ 
 
 However, I am not able to find out how the stations get the access to the 
channel. Consider the offline TXOP list that is created. Suppose it contains 
the TXOP times for the stations 1,2,5,6. How does the patch ensure that first 
only station 1 will access the channel, and then stations 2, 5, 6 ... and so 
on. 
 
 If anybody can throw some light on this issue, I'll be really grateful.
 Thanks in advance
 
 

  Ritwik Mitra 
M.Sc. Computer Science 
Department of Computer Science, 
Delhi University 



  





-
Yahoo! Messenger with Voice. Make PC-to-Phone Calls to the US (and 30+ 
countries) for 2¢/min or less.


[ns] Help needed for sending audio data in NS2 (urgent)

2007-04-04 Thread kalpana kalpana

hi all, i want to simulate VOIP in NS2. can anyone please tell me how to use 
audio codecs and send audio data.. it's urgent.
thank u,


-
 Here’s a new way to find what you're looking for - Yahoo! Answers 


[ns] help needed to install dmac code in ns2-29

2007-04-19 Thread rajesh singarapu

sir,

im trying to install dmac code in ns-2.29.3

im getting fallowing errrors while making


queue/cbq.cc:112: error: ISO C++ forbids declaration of 'CBQueue' with no type
queue/cbq.cc:112: error: expected ';' before '*' token
queue/cbq.cc: In member function 'virtual int CBQueue::insert_class(CBQClass*)':
queue/cbq.cc:488: error: 'class CBQClass' has no member named 'cbq_'
queue/cbq.cc: In constructor 'CBQClass::CBQClass()':
queue/cbq.cc:805: error: class 'CBQClass' does not have any field named 'cbq_'
queue/cbq.cc: In member function 'virtual void CBQClass::recv(Packet*,
Handler*)':
queue/cbq.cc:850: error: 'cbq_' was not declared in this scope
queue/cbq.cc:856: error: 'cbq_' was not declared in this scope
queue/cbq.cc: In member function 'void CBQClass::update(Packet*, double)':
queue/cbq.cc:873: error: 'cbq_' was not declared in this scope
queue/cbq.cc: In member function 'int CBQClass::desc_with_demand()':
queue/cbq.cc:928: error: 'cbq_' was not declared in this scope
queue/cbq.cc: In member function 'void CBQClass::newallot(double)':
queue/cbq.cc:975: error: 'cbq_' was not declared in this scope
queue/cbq.cc: In member function 'virtual int CBQClass::command(int,
const char* const*)':
queue/cbq.cc:1002: error: 'cbq_' was not declared in this scope
make: *** [queue/cbq.o] Error 1


Ns make failed!



please help me




-- 
regards,

rajesh singarapu
mail: [EMAIL PROTECTED]
+91 9954249246


[ns] help needed in the implementation of power aware routing protocol......

2006-04-28 Thread samanasrikanth samana

Hi all
I am working on a power aware routing protocol. The present energy 
model in the NS2 is not power-awareDo anyone know how to implement the 
energy model which is power aware.?
 Any help is appreciated,
 Srikanth
 


-
 Jiyo cricket on Yahoo! India cricket
Yahoo! Messenger Mobile Stay in touch with your buddies all the time.


[ns] Help needed, Problem in installing NS-allinone-2.27 in linux

2006-03-11 Thread Nagender Annem

HI
when I try to install ns-allinone-2.27 in *linux*, I am getting the
following error,
I did had the patch file ns227-gcc34.patch

* Build OTcl-1.8

No .configure file found in current directory
Continuing with default options...
checking build system type... Invalid configuration
`x86_64-unknown-linux-gnu': machine `x86_64-unknown' not recognized
configure: error: /bin/sh ./config.sub x86_64-unknown-linux-gnu failed.
otcl-1.8 configuration failed! Exiting ...
Please check http://www.isi.edu/nsnam/ns/ns-problems.html
for common problems and bug fixes.


Please , Can any one help me out,I got stuck here for the past 5 days.

Thanks and Regards,
Nagender Reddy Annem


Re: [ns] Help needed, Problem in installing NS-allinone-2.27 in linux

2006-03-11 Thread Adrian Sai-wah Tam

Are you using x86_64 architecture (i.e. fairly new AMD cpu)?
Probably the source code is not supposed to be used on this arch.

Nagender Annem wrote:

>HI
>when I try to install ns-allinone-2.27 in *linux*, I am getting the
>following error,
>I did had the patch file ns227-gcc34.patch
>
>* Build OTcl-1.8
>
>No .configure file found in current directory
>Continuing with default options...
>checking build system type... Invalid configuration
>`x86_64-unknown-linux-gnu': machine `x86_64-unknown' not recognized
>configure: error: /bin/sh ./config.sub x86_64-unknown-linux-gnu failed.
>otcl-1.8 configuration failed! Exiting ...
>Please check http://www.isi.edu/nsnam/ns/ns-problems.html
>for common problems and bug fixes.
>
>
>Please , Can any one help me out,I got stuck here for the past 5 days.
>
>Thanks and Regards,
>Nagender Reddy Annem
>  
>



[ns] help needed in performance comparison of AODV, DSR and DSDV routing protocol

2010-08-31 Thread ankur goyal

Hi All,

I have written a tcl script and an awk script to evaluate the performance of
AODV, DSR and DSDV protocols in terms of average delay and total number of
packets received and dropped. But i am getting very absurd results when i
run my script to extract the data.

My results are as follow:

for DSR:

  Generated Packets = 46904 PACKETS
  Received Packets = 1227 PACKETS
  Total Dropped Packets = 12443
  e2e delay = 3.911883

for AODV:

  Generated Packets = 12362 PACKETS
  Received Packets = 3221 PACKETS
  Total Dropped Packets = 9105
  e2e delay = 0.007428

I believe that there is something wrong in my script which i am not able to
figure out.

So can anyone provide me a tcl script for AODV, DSR and DSDV protocols such
that all the required data are extracted from trace files in TCL scripts
only rather than using AWK script separately.

Eagerly waiting for a quick reply as i need it urgently.

Thanks & Regards,
Ankur


[ns] help needed to add a Mac framework in ns-2 for wsns

2014-12-22 Thread saira arif











hi

i am working to add a MAC framework in ns-2 with following properties

1) i need to make a cluster with two types of nodes( types in terms of 
priority, 1 is transmitter and other is transceiver) and a sink node 
2)on sink and source nodes i need to configure PNRG (pseudo random number 
generator strategy) and nodes need to share their seed value, node ID etc with 
sink so that sink can schedule transmission schedule for nodes. how to make it 
work on ns-2 ?


 i am attaching my paper please suggest how to start coding for it in ns-2.

Regards










  

Re: [ns] help needed in performance comparison of AODV, DSR and DSDV routing protocol

2010-09-01 Thread ankur goyal

Please help!!

On Wed, Sep 1, 2010 at 1:09 AM, ankur goyal  wrote:

> Hi All,
>
> I have written a tcl script and an awk script to evaluate the performance
> of AODV, DSR and DSDV protocols in terms of average delay and total number
> of packets received and dropped. But i am getting very absurd results when i
> run my script to extract the data.
>
> My results are as follow:
>
> for DSR:
>
>   Generated Packets = 46904 PACKETS
>   Received Packets = 1227 PACKETS
>   Total Dropped Packets = 12443
>   e2e delay = 3.911883
>
> for AODV:
>
>   Generated Packets = 12362 PACKETS
>   Received Packets = 3221 PACKETS
>   Total Dropped Packets = 9105
>   e2e delay = 0.007428
>
> I believe that there is something wrong in my script which i am not able to
> figure out.
>
> So can anyone provide me a tcl script for AODV, DSR and DSDV protocols such
> that all the required data are extracted from trace files in TCL scripts
> only rather than using AWK script separately.
>
> Eagerly waiting for a quick reply as i need it urgently.
>
> Thanks & Regards,
> Ankur
>


Re: [ns] help needed in performance comparison of AODV, DSR and DSDV routing protocol

2011-04-12 Thread mikes1313


Hi I want to compare my AODV.tcl including DSDV and DSR the only change I
have to make is the set val (rp) from AODV->DSDV and then to DSR. 


THNAKS 
mike

...

Salahedin wrote:
> 
> Hi,
> 
> I am doing exactly the same and my results are similar to yours. I was
> thinking that I have some problems with the tcl or wak file but I am now
> starting changing some configuration like node speed to try to get better
> statistics. Anyway, can you send me the awk file you used as well as the
> traffic and movement specification so I would be able to see if we get the
> same results. My email is s_l_h_3[at]yahoo[dot]es
> 
> Thanks
> 
> Haripriya Nair wrote:
>> 
>> 
>> 
>> ankur goyal wrote:
>>> 
>>> 
>>> Hi All,
>>> 
>>> I have written a tcl script and an awk script to evaluate the
>>> performance of
>>> AODV, DSR and DSDV protocols in terms of average delay and total number
>>> of
>>> packets received and dropped. But i am getting very absurd results when
>>> i
>>> run my script to extract the data.
>>> 
>>> My results are as follow:
>>> 
>>> for DSR:
>>> 
>>>   Generated Packets = 46904 PACKETS
>>>   Received Packets = 1227 PACKETS
>>>   Total Dropped Packets = 12443
>>>   e2e delay = 3.911883
>>> 
>>> for AODV:
>>> 
>>>   Generated Packets = 12362 PACKETS
>>>   Received Packets = 3221 PACKETS
>>>   Total Dropped Packets = 9105
>>>   e2e delay = 0.007428
>>> 
>>> I believe that there is something wrong in my script which i am not able
>>> to
>>> figure out.
>>> 
>>> So can anyone provide me a tcl script for AODV, DSR and DSDV protocols
>>> such
>>> that all the required data are extracted from trace files in TCL scripts
>>> only rather than using AWK script separately.
>>> 
>>> Eagerly waiting for a quick reply as i need it urgently.
>>> 
>>> Thanks & Regards,
>>> Ankur
>>> 
>>> 
>> 
>> 
> 
> 

-- 
View this message in context: 
http://old.nabble.com/help-needed-in-performance-comparison-of-AODV%2C-DSR-and-DSDV-routing-protocol-tp29588901p31377944.html
Sent from the ns-users mailing list archive at Nabble.com.



Re: [ns] help needed in performance comparison of AODV, DSR and DSDV routing protocol

2011-04-16 Thread pradeep_ramesh


Hi Ankur
Iam pradeep doing masters in networking and doing my project on NS2 can you
please help with tcl script till now i generated UDP traffic and created
setdest but while executing i got an error in "creating god"
can you please send me your script so that it will be help full in my
project.

thanks
pradeep
(07501001287)
(pradeepsecx...@yahoo.com)

Iam very much thankful to you

Haripriya Nair wrote:
> 
> 
> 
> ankur goyal wrote:
>> 
>> 
>> Hi All,
>> 
>> I have written a tcl script and an awk script to evaluate the performance
>> of
>> AODV, DSR and DSDV protocols in terms of average delay and total number
>> of
>> packets received and dropped. But i am getting very absurd results when i
>> run my script to extract the data.
>> 
>> My results are as follow:
>> 
>> for DSR:
>> 
>>   Generated Packets = 46904 PACKETS
>>   Received Packets = 1227 PACKETS
>>   Total Dropped Packets = 12443
>>   e2e delay = 3.911883
>> 
>> for AODV:
>> 
>>   Generated Packets = 12362 PACKETS
>>   Received Packets = 3221 PACKETS
>>   Total Dropped Packets = 9105
>>   e2e delay = 0.007428
>> 
>> I believe that there is something wrong in my script which i am not able
>> to
>> figure out.
>> 
>> So can anyone provide me a tcl script for AODV, DSR and DSDV protocols
>> such
>> that all the required data are extracted from trace files in TCL scripts
>> only rather than using AWK script separately.
>> 
>> Eagerly waiting for a quick reply as i need it urgently.
>> 
>> Thanks & Regards,
>> Ankur
>> 
>> 
> 
> 

-- 
View this message in context: 
http://old.nabble.com/help-needed-in-performance-comparison-of-AODV%2C-DSR-and-DSDV-routing-protocol-tp29588901p31412927.html
Sent from the ns-users mailing list archive at Nabble.com.



Re: [ns] help needed in performance comparison of AODV, DSR and DSDV routing protocol

2012-02-27 Thread G.Manjusha


Hello Ankur,
I am doing my B.Tech final year project on “Performance comparison of AODV
and DSR using NS-2.34″.
Can you help me with the tcl script for this…?? 
this is my e-mail id- gudurr...@gmail.com

I’d be grateful to you if you can help me…!! 
Thanks in advance…. :) 


ankur goyal wrote:
> 
> 
> Hi All,
> 
> I have written a tcl script and an awk script to evaluate the performance
> of
> AODV, DSR and DSDV protocols in terms of average delay and total number of
> packets received and dropped. But i am getting very absurd results when i
> run my script to extract the data.
> 
> My results are as follow:
> 
> for DSR:
> 
>   Generated Packets = 46904 PACKETS
>   Received Packets = 1227 PACKETS
>   Total Dropped Packets = 12443
>   e2e delay = 3.911883
> 
> for AODV:
> 
>   Generated Packets = 12362 PACKETS
>   Received Packets = 3221 PACKETS
>   Total Dropped Packets = 9105
>   e2e delay = 0.007428
> 
> I believe that there is something wrong in my script which i am not able
> to
> figure out.
> 
> So can anyone provide me a tcl script for AODV, DSR and DSDV protocols
> such
> that all the required data are extracted from trace files in TCL scripts
> only rather than using AWK script separately.
> 
> Eagerly waiting for a quick reply as i need it urgently.
> 
> Thanks & Regards,
> Ankur
> 
> 

-- 
View this message in context: 
http://old.nabble.com/help-needed-in-performance-comparison-of-AODV%2C-DSR-and-DSDV-routing-protocol-tp29588901p33398994.html
Sent from the ns-users mailing list archive at Nabble.com.




[ns] help needed in installing sensorsim on fedora 8 with any version of ns2

2012-06-30 Thread Engineer ilyas

dear users,
 i despeately need some help nstalling sensorsim on fedora 8 with any
version of ns2.

i already have tried fedora 9 , 16, 14, 6 and 10 with almost every
version of ns2. but no success so far..

a help in this regard will be enormous for me...

thank you,, prayers

-- 
Engr ilyas
Electrical Engineering Department,
CECOS University of IT and Emerging Sciences,
Phase 6 Hayatabad Peshawar
Email: il...@cecos.edu.pk
Phone: ++92-91-5860291-3



Re: [ns] help needed in installing sensorsim on fedora 8 with any version of ns2

2012-07-01 Thread Engineer ilyas

thank you sir,
 i am currently using fedora 8 and i want to install 'SENSORSIM' using
any of the 2.29, 2.27 or 2.26.

prayers,
ilyas

On 7/1/12, zmezm 14  wrote:
> what ns-2 version you want to install ?
> am using ubuntu and you can install almost any version of ns-2
>
> --- On Sun, 7/1/12, Engineer ilyas  wrote:
>
> From: Engineer ilyas 
> Subject: [ns] help needed in installing sensorsim on fedora 8 with any
> version of ns2
> To: ns-users@ISI.EDU
> Date: Sunday, July 1, 2012, 12:25 PM
>
>
> dear users,
>  i despeately need some help nstalling sensorsim on fedora 8 with any
> version of ns2.
>
> i already have tried fedora 9 , 16, 14, 6 and 10 with almost every
> version of ns2. but no success so far..
>
> a help in this regard will be enormous for me...
>
> thank you,, prayers
>
> --
> Engr ilyas
> Electrical Engineering Department,
> CECOS University of IT and Emerging Sciences,
> Phase 6 Hayatabad Peshawar
> Email: il...@cecos.edu.pk
> Phone: ++92-91-5860291-3
>
>


-- 
Engr ilyas
Electrical Engineering Department,
CECOS University of IT and Emerging Sciences,
Phase 6 Hayatabad Peshawar
Email: il...@cecos.edu.pk
Phone: ++92-91-5860291-3



Re: [ns] help needed on how to estimate the position of the node using received signal strength

2010-09-21 Thread vamsi krishna

hi all,

   iam doing mtech project in that i want to estimate the postion of
the node using received signal strength in a zigbee based sensor networks.so
how to find out the received signal strength is it possible to estimate the
node position using signal strength in NS2 
 plz respond
   thank u in advance


Re: [ns] help needed on how to estimate the position of the node using received signal strength (vamsi krishna)

2010-09-23 Thread Ali Ghandour

Hi Vamsi,

This is known as localization problem. Check the following paper for details
how to implement RSS in ns2:

"NS2 SIMULATOR CAPABILITIES IN NODES LOCALIZATION IN WIRELESS NETWORKS"
by Patrik Morávek.

Regards,

Ali Ghandour


Re: [ns] help needed on how to estimate the position of the node using received signal strength (vamsi krishna)

2010-09-23 Thread givemore julius

hi  everyone

I want to run rbp_demo in
C:\cygwin\usr\local\ns-allinone-2.34\ns-2.34\tcl\ex but the below
error is being revealed
could not execute "raw2xg":no such file or
directory
what might be the proplem

regards
julius givemore

On 9/23/10, Ali Ghandour  wrote:
>
>