[ns] simulation of UMTS in NS2

2008-11-08 Thread esmat shoja

Hi to all Ns_users, 
Does any one simulate a UMTS network in NS2 ?
OR does any one is familiar with implimentation RTP/TFRC protocol for video 
streaming in UMTS with NS-2 ?
I need to have these items in my simulation :
Server 
GGSN
SGSN
NODE B
Mobile stations 
and after streaming video between server and Mobile nodes , I must 
show throuput , delay , jitter  in wireless link
how can I simulate such model and how can I implement TFRC protocol in Ns2 ?

Thanks in advance  regards


  


Re: [ns] simulation of UMTS in NS2

2008-11-08 Thread Mubashir Rehmani

Hi Esmat

You can find the UMTS extensions of NS-2 here :

http://net.infocom.uniroma1.it/reti_files/reti_downloads.htm

http://www.geocities.com/opahostil/

Regards
Mubashir Husain Rehmani
LIP6, UPMC, Paris, France

2008/11/8 esmat shoja [EMAIL PROTECTED]


 Hi to all Ns_users,
 Does any one simulate a UMTS network in NS2 ?
 OR does any one is familiar with implimentation RTP/TFRC protocol for video
 streaming in UMTS with NS-2 ?
 I need to have these items in my simulation :
 Server
 GGSN
 SGSN
 NODE B
 Mobile stations
 and after streaming video between server and Mobile nodes , I must
 show throuput , delay , jitter  in wireless link
 how can I simulate such model and how can I implement TFRC protocol in Ns2
 ?

 Thanks in advance  regards






-- 
Mubashir Husain Rehmani

Mobile :   00 33 (0)6 32 00 89 35


[ns] Debugging TraceVar variables in ns2

2008-11-08 Thread Abfalterer A.

Hi,

someone who can tell me how to see the current value of TracedVar
variables in ns2 using gdb? If I try to give out the value I get an
incomplete type error. I use ns-2.33 and gdb 6.8.

Here are the steps to reproduce the error:
**
 gdb ns# start gdb with ns
 b TcpAgent::opencwnd  # set break point
 run script.tcl# run script

Breakpoint 1, TcpAgent::opencwnd (this=0x9d10e90) at tcp/tcp.cc:1122
1122if (cwnd_  ssthresh_) {

 p cwnd_   # output value of cwnd_

$8 = incomplete type

 p (int)cwnd_  # does not work either!

$8 = incomplete type

**

Thanks for your help!

Armin