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

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