[ns] Request for an example of FEC

2008-09-08 Thread Dongseung Shin
Dear ns-users. I'd like to implement FEC at transport layer. I've searched internet to find an example of FEC either at data link layer or at transport layer, but failed. If anybody knows where the example is, please tell me. Thanks. ---

[ns] compute the Delay, jitter, throughtput for OLSR

2008-09-08 Thread rauchy
Hi All I simulate 100 nodes in 1000x1000m with OLSR (um-olsr) under ns2. Do you know how to compute the Delay, jitter, throughtput. I have some script used for AODV to extract this information from trace, but I dont know how i can put the CBR traffic in my simulation. I need just a CBR traffic? w

[ns] delay in emulation mode

2008-09-08 Thread Rodolfo Torrea
Hello, Does anybody knows how to measure the packet delay in emulation mode? I would like to print the delay values in a file. Thanks

Re: [ns] Example of Simple Timer

2008-09-08 Thread Scott Novich
Hi Mubashir! Many many thanks! I'll be heading in to try this out in a bit. I have two questions about this - - First, in MyTimer(AODV* ms) - so some sort of an agent class must be provided? (I saw this in the manual but did not understand why) I'm guessing it doesn't matter what agent, but do

[ns] multiple interfaces in ns2

2008-09-08 Thread Tatiana Polishchuk
Hello, I'm a new user of ns 2.33 I'm interested in constructing simulations for multihomed nodes, the hosts with multiple interfaces (both wired and wireless). In fact I just need one of the hosts to obtain 2 different IP addresses. NAM animation is also desirable. As far as I understand there is

[ns] multiple interfaces in ns2

2008-09-08 Thread Tatiana Polishchuk
Hello, I'm a new user of ns 2.33I'm interested in constructing simulations for multihomed nodes, the hosts with multiple interfaces (both wired and wireless). In fact I just need one of the hosts to obtain 2 different IP addresses. NAM animation is also desirable. As far as I understand there is

[ns] xgraph detail pls

2008-09-08 Thread ViN♄Dh . M
How to get the x-graph, can anyone give a basic idea about using xgraph in ns... Warm Regards, Vinodh M Add more friends to your messenger and enjoy! Go to http://in.messenger.yahoo.com/invite/

[ns] Example of Simple Timer

2008-09-08 Thread Mubashir Rehmani
Hi Scott Novich Here is the example of simple timer *Declare this timer in the header fil**e* class MyTimer : public TimerHandler { public: MyTimer(AODV* ms) : TimerHandler() {ms_=ms;}; protected: virtual void expire(Event* e); AODV* ms_; }; MyTimer MS_timer_; *Declare in the