정답이 없는 node-config

|
\$ns_ node-config -addressType hierarchical \bs
                   -adhocRouting AODV \bs
                   -llType LL \bs
                   -macType Mac/802_11 \bs
                   -ifqType Queue/DropTail/PriQueue \bs
                   -ifqLen 50 \bs
                   -antType Antenna/OmniAntenna \bs
                   -propType Propagation/TwoRayGround \bs
                   -phyType Phy/WirelessPhy \bs
                   -topologyInstance \$topo \bs
                   -channel Channel/WirelessChannel \bs
                   -agentTrace ON \bs
                   -routerTrace ON \bs
                   -macTrace OFF \bs
                   -movementTrace OFF


   # DSDV DSR TORA AODV
   $ns node-config -adhocRouting DSDV \
                  -llType LL \
                  -macType Mac/802_11 \
                  -ifqType Queue/$qm \
                  -ifqLen $buf(wlan_complex) \
                  -propType "Propagation/TwoRayGround" \
                  -antType "Antenna/OmniAntenna" \
                  -phyType "Phy/WirelessPhy" \
                  -wiredRouting ON \
                  -channel [new "Channel/WirelessChannel"] \
                  -agentTrace ON \
                  -routerTrace OFF \
                  -topoInstance $topo \
                  -macTrace OFF \
                   -movementTrace OFF

$ns node-config -adhocRouting $val(rp) \
            -llType $val(ll) \
            -macType $val(mac) \
            -ifqType $val(ifq) \
            -ifqLen $val(ifqlen) \
            -antType $val(ant) \   
            -propType $val(prop) \
            -phyType $val(netif) \
            -channel $val(chan) \
            -topoInstance $topo \
            -agentTrace OFF \
            -routerTrace OFF \
            -macTrace ON \
            -movementTrace OFF
And