[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [ns] expoo traffic in Mobile IP



I've tried to re-run your simulation on my linux box . I didn't get a core
dump .
however, it looks to me that application level traffic is not fully
supported
so far for wireless .

Kun-chan Lan

-----Original Message-----
From: masaru <[email protected]>
To: [email protected] <[email protected]>
Date: Tuesday, June 06, 2000 1:39 AM
Subject: [ns] expoo traffic in Mobile IP


>Hello ns users I'm masaru TASAKI.
>
>I'd like to simulate expoo (or exponential) traffic in mobile IP
>simulation,
>but my simulation core dumped in the beginning of the simulation.
>Anyone have idea to fix ploblem?
>My source code is wireless-mip-test.tcl with following parameters.
>
>set udp1 [new Agent/UDP]
>$ns attach-agent $W(0) $udp1
>set null1 [new Agent/Null]
>$ns attach-agent $MH $null1
>$ns connect $udp1 $null1
>
>set exp1 [new Application/Traffic/Exponential]
>$exp1 set packetSize_ 210
>$exp1 set burst_time_ 500ms
>$exp1 set idle_time_ 500ms
>$exp1 set rate_ 100k
>
>$exp1 attach-agent $udp1
>$ns at 10.0 "$exp1 start"
>$ns at 100.0 "$exp1 stop"
>
>