无法在 ubuntu14.04 的 ns-2.35 上 运行 dymoum test_2n.tcl 文件

Can't run dymoum test_2n.tcl file on ns-2.35 in ubuntu14.04

申请成功后/home/uday/ns-allinone-2.35/ns-2.35/DYMO-03-all__ns235.patch

当我尝试 运行 以下 dymoum/ns/test/test_2n.tcl 代码时出现错误,我无法解决该错误。我尽了最大努力但失败了...请大家看看代码并帮我解决error.The 测试代码如下:

# ======================================================================
# Define options
# ======================================================================
set opt(chan)           Channel/WirelessChannel  ;# channel type
set opt(prop)           Propagation/TwoRayGround ;# radio-propagation model
set opt(netif)          Phy/WirelessPhy          ;# network interface type
set opt(mac)            Mac/802_11               ;# MAC type
set opt(ifq)            Queue/DropTail/PriQueue  ;# interface queue type
set opt(ll)             LL                       ;# link layer type
set opt(ant)            Antenna/OmniAntenna      ;# antenna model
set opt(ifqlen)         50                       ;# max packet in ifq
set opt(nn)             2                        ;# number of mobilenodes
set opt(adhocRouting)   DYMOUM                   ;# routing protocol

set opt(cp)             ""                       ;# connection pattern file
set opt(sc)             ""                       ;# node movement file. 

set opt(x)              400                      ;# x coordinate of topology
set opt(y)              600                      ;# y coordinate of topology
set opt(seed)           0.0                      ;# seed for random number gen.
set opt(stop)           40                       ;# time to stop simulation

set opt(cbr-start)      10.0
# ============================================================================

#
# check for random seed
#
if {$opt(seed) > 0} {
    puts "Seeding Random number generator with $opt(seed)\n"
    ns-random $opt(seed)
}

#
# create simulator instance
#
set ns_ [new Simulator]

#
# control DYMOUM behaviour from this script
#
Agent/DYMOUM set debug_ true
Agent/DYMOUM set no_path_acc_ true
Agent/DYMOUM set reissue_rreq_ false
Agent/DYMOUM set s_bit_ true
Agent/DYMOUM set hello_ival_ 1

#
# open traces
#
set tracefd  [open test_2n.tr w]
set namtrace [open test_2n.nam w]
$ns_ trace-all $tracefd
$ns_ namtrace-all-wireless $namtrace $opt(x) $opt(y)

#
# create topography object
#
set topo [new Topography]

#
# define topology
#
$topo load_flatgrid $opt(x) $opt(y)

#
# create God
#
create-god $opt(nn)

#
# configure mobile nodes
#
$ns_ node-config -adhocRouting $opt(adhocRouting) \
                 -llType $opt(ll) \
                 -macType $opt(mac) \
                 -ifqType $opt(ifq) \
                 -ifqLen $opt(ifqlen) \
                 -antType $opt(ant) \
                 -propType $opt(prop) \
                 -phyType $opt(netif) \
                 -channelType $opt(chan) \
                 -topoInstance $topo \
                 -wiredRouting OFF \
                 -agentTrace ON \
                 -routerTrace ON \
                 -macTrace OFF

for {set i 0} {$i < $opt(nn)} {incr i} {
    set node_($i) [$ns_ node]
}

#
# positions
#
$node_(0) set X_ 200.0
$node_(0) set Y_ 200.0
$node_(0) set Z_ 0.0

$node_(1) set X_ 300.0
$node_(1) set Y_ 200.0
$node_(1) set Z_ 0.0

#
# setup UDP connection
#
set udp [new Agent/UDP]
set null [new Agent/Null]
$ns_ attach-agent $node_(0) $udp
$ns_ attach-agent $node_(1) $null
$ns_ connect $udp $null
set cbr [new Application/Traffic/CBR]
$cbr set packetSize_ 512
$cbr set rate_ 20Kb
$cbr attach-agent $udp
$ns_ at $opt(cbr-start) "$cbr start"

#
# print (in the trace file) routing table and other
# internal data structures on a per-node basis
# TODO: implement this
#$ns_ at 15.0 "[$node_(0) agent 255] print_rtable"

#
# source connection-pattern and node-movement scripts
#
if { $opt(cp) == "" } {
    puts "*** NOTE: no connection pattern specified."
    set opt(cp) "none"
} else {
    puts "Loading connection pattern..."
    source $opt(cp)
}
if { $opt(sc) == "" } {
    puts "*** NOTE: no scenario file specified."
    set opt(sc) "none"
} else {
    puts "Loading scenario file..."
    source $opt(sc)
    puts "Load complete..."
}

#
# define initial node position in nam
#
for {set i 0} {$i < $opt(nn)} {incr i} {
    $ns_ initial_node_pos $node_($i) 20
}     

#
# tell all nodes when the simulation ends
#
for {set i 0} {$i < $opt(nn) } {incr i} {
    $ns_ at $opt(stop).0 "$node_($i) reset";
}

$ns_ at $opt(stop).0002 "puts \"NS EXITING...\" ; $ns_ halt"
$ns_ at $opt(stop).0001 "stop"

proc stop {} {
    global ns_ tracefd namtrace
    $ns_ flush-trace
    close $tracefd
    close $namtrace
}

#
# begin simulation
#
puts "Starting Simulation..."

$ns_ run

显示错误: root@uday-HP-15-Notebook-PC:/home/uday/Downloads/ns-allinone-2.35/ns-2.35/dymoum/ns/test# ns test_2n.tcl

invalid command name "Agent/DYMOUM"
    while executing
    "Agent/DYMOUM set debug_ true"
    (file "test_2n.tcl" line 42)

参考。计算器 →

tar xvf ns-allinone-2.35_gcc5.tar.gz

https://drive.google.com/file/d/0B7S255p3kFXNVVlxR0ZNRGVORjQ/view?usp=sharing

cd ns-allinone-2.35/
patch -p0 < DYMO-03-all__ns235.patch
./install
cd ns-2.35/
cp ns ns235-dymo
sudo cp ns235-dymo /usr/local/bin/

------------ Simulation ------------
ns235-dymo test_2n.tcl
 num_nodes is set 2
warning: Please use -channel as shown in tcl/ex/wireless-mitf.tcl
INITIALIZE THE LIST xListHead
*** NOTE: no connection pattern specified.
*** NOTE: no scenario file specified.
Starting Simulation...
DYMOUM agent started in node 0
        no_path_acc=1
        reissue_rreq=0
        s_bit=1
        hello_ival=1

node 0: hello_send: sending HELLO
DYMOUM agent started in node 1
        no_path_acc=1
        reissue_rreq=0
        s_bit=1
        hello_ival=1

node 1: hello_send: sending HELLO
.
.
node 0: process_data: route to dst 1 updated
node 1: tap: route to src 0 updated
NS EXITING...

您的错误:您似乎使用了错误的 ns 副本,即没有 Dymoum 的 'ns' ...或者你有一个失败的构建。安全的方法:使用系统 PATH = /usr/local/bin/.

中存在的可执行文件 "ns-name"

Dymoum 模拟示例:Dymoum-examples.tar.gz https://drive.google.com/drive/folders/0B7S255p3kFXNSmRYb2lGcDRUdWs?usp=sharing


参考。评论 1.:OK Ubuntu 14.04-amd64 安装到 hard-disk。 test_2n.nam (89.5kB)、test_2n.tr (64kB) 和相同的 486 行文本输出的相同文件大小:https://www.dropbox.com/s/5v84a9ubnip3m1h/Dymo-test_2n.tcl.txt?dl=0


参考。评论 2 - 3. : 新补丁 Dymo-blackhole-idsAODV_ns235.patch https://drive.google.com/file/d/1S63-743G9Et86yXWhaYkpSR_3wOAsUHG/view?usp=sharing

新的可执行文件 ns235_Dymo-blackhole-idsAODV 已通过 Dymoum 模拟测试正常,blackholeaodv2005~2013-examples-05.17.tar.gz, idsAODV-examples-05.17.tar.gz https://drive.google.com/drive/folders/0B7S255p3kFXNSmRYb2lGcDRUdWs?usp=sharing