[ns] SIP HELP

2006-03-30 Thread Deeya Nursimloo

Hi there,

 I am working on ns2 for my project simulating MIP and SIP and I am still a
novice in the field. Can u plz help me with the following :

REGISTER sip:3 SIP/2.0 Cseq = 0
--- Classfier::no-slot{} default handler (tcl/lib/ns-lib.tcl) ---
_o32: no target for slot 0
_o32 type: Classifier/Port/Reserve
content dump:
classifier _o32
0 offset
0 shift
2147483647 mask
2 slots
slot 1: _o33 (Classifier/Addr/MIPDecapsulato r)
slot 2: _o149 (Agent/SIPRedirect)
-- Finished standard no-slot{} default handler --

Can u plz have a look at the error.

Thanking u very much,


[ns] help reg DSR implementation in ns-2.28

2006-03-30 Thread rakesh reddy

Hi,
   Can anyone help me out in implementation of DSR for
wireless network. Please suggest some tutorials
related to this.
Thanks in advance

with regards
K.Rakesh Reddy



__ 
Yahoo! India Matrimony: Find your partner now. Go to http://yahoo.shaadi.com



[ns] Pareto distribution problem in wireless scenario

2006-03-30 Thread michelenuti


Hi,
I've noted that in NS version 2.26, the Pareto distribution only works =
in wired scenarios, but not in wireless scenarios.

Does anybody knows why and how to solve the problem?

Thanks a lot,
Michele


[ns] Path Environment For Root User

2006-03-30 Thread hamid reza

Hi,
How can I set path environment in linux redhat 9?
and have sure from my true setting of path
environment?
I installed ns2.18ba for Root user.

best Regards
Hamid Reza

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 



[ns] help for slotted aloha simulation

2006-03-30 Thread rakesh reddy

Hi all,
   Has anyone done slotted aloha simulation for
wired  and wireless networks? Could someone plz help
me out in this regard. I need to give poisson arrival
as input. Looking forward for some help.
Thanks in advance

with regards
K.Rakesh Reddy



__ 
Yahoo! India Matrimony: Find your partner now. Go to http://yahoo.shaadi.com



[ns] error reading file cbr-3-test

2006-03-30 Thread Alexandra Cioroianu

Hello everybody!
 I am having a problem trying to run wireless1.tcl and i get this error message:
 couldn't read file ../mobility/scene/cbr-3-test: no such file or directory
 while executing
 source.orig ../mobility/scene/cbr-3-test
 (uplevel body line 1)
 invoked from within
 uplevel source.orig [list $fileName]
 invoked from within
 if [$instance_ is_http_url $fileName] {
 set buffer [$instance_ read_url $fileName]
 uplevel eval $buffer
 } else {
 uplevel source.orig [list $fileName]
 ...
 (procedure source line 8)
 invoked from within
 source $val(cp)
 (file wireless1.tcl line 121)
  
 What is the problem with cbr-3-test file?
 What changes do i need to make to the tcl file?
 If someone knows about this,please tell me.Thank you in advance.
 Regards, Alexandra
 


Alexandra Cioroianu


-
New Yahoo! Messenger with Voice. Call regular phones from your PC and save big.


[ns] Need Help in simulating Bi-MAC protocol

2006-03-30 Thread Nagender Annem

Hi,
Iam new to ns-2 and I dont know where to start for the simulations to be
done.
Actually I dont know where I can find the source code of MAC implementing
bidirectional-MAC.
I installed ns-2,26 modified version for bi-MAC.

Can any one help me, how to get to know the things,
Even I am trying to understand the standars MAC protocol as to know what is
happening in the code. But not able to understand the variables correctly.
Is there any tutorials where I can get some help.
Please help me as this is very important for me.

Thanks and Regards,
Nagender


[ns] routing outside the subnet.

2006-03-30 Thread sxroy1

under the dsdv.cc file there is a function which drops the packet if its 
destined for outside the given subnet, the function is as follows:
DSDV_Agent::diff_subnet(int dst) 
{
char* dstnet = Address::instance().get_subnetaddr(dst);
if (subnet_ != NULL) {
if (dstnet != NULL) {
if (strcmp(dstnet, subnet_) != 0) {
delete [] dstnet;
return 1;
}
delete [] dstnet;
}
}
//assert(dstnet == NULL);
return 0;
}
 can any one give me any idea abt how to avoid this and add the route in the 
table so that routing to other subnets could be possible ?

any help would be really appriciated. thanks
roy




[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.


[ns] making ns2 to write to an output file

2006-03-30 Thread nalinaksh gaur

Hi everybody,

I am trying to make ns2 to write some statistics to an output file.  I
am writing the following code in some c++ file inside the ns2
directory :

#include fstream
using namespace std;

ofstream a_file (example.txt);
a_fileThis text will now be inside of example.txt;
a_file.close();
...

Now when I 'make' ns2, I get the following error message:

 error: expected constructor, destructor, or type conversion before '' token
error: expected `,' or `;' before '' token
error: expected constructor, destructor, or type conversion before '.' token
error: expected `,' or `;' before '.' token

How can I fix this problem?

Thanks!