Hi all,
I am a new user of NS-2. Can one please help me to install LEACH
Protocol in NS-2. I tried it with the following commands:
 
Add DMIT_uAMPS to the DEFINE list               
Add -I./mit/rca -I./mit/uAMPS to the INCLUDE list Add the following just
prior to the line gaf/gaf.o \ mit/rca/energy.o mit/rca/rcagent.o \
mit/rca/rca-ll.o mit/rca/resource.o \ mac/mac-sensor-timers.o
mac/mac-sensor.o mit/uAMPS/bsagent.o \

 Step 5.2 : Add the environmental variables to /etc/profile export
RCA_LIBRARY=$NS_HOME/ns-2.27/mit/rca
export uAMPS_LIBRARY=$NS_HOME/ns-2.27/mit/uAMPS
Step 5.3: source /etc/profile and clean up previous build source
/etc/profile make clean

But when I gave command         make clean      it prompts:
make: *** No rule to make target 'clean'. Stop   


Please let me know the solutions. I am eagerly looking solution.
Thanks
GM

--------------------------------------------
G M Shafiullah
Master of Engineering (Research) Student
Centre for Railway Engineering (CRE)
Faculty of Sciences, Engineering and Health
Central Queensland University
Rockhampton, Qld 4702
AUSTRALIA

Phone: 61 7 4930 9313
Mobile:61 4 3208 5800
Email: [EMAIL PROTECTED],      [EMAIL PROTECTED], [EMAIL PROTECTED] 


-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Monday, July 02, 2007 10:00 AM
To: [email protected]
Subject: Ns-users Digest, Vol 43, Issue 1

Send Ns-users mailing list submissions to
        [email protected]

To subscribe or unsubscribe via the World Wide Web, visit
        http://mailman.isi.edu/mailman/listinfo/ns-users
or, via email, send a message with subject or body 'help' to
        [EMAIL PROTECTED]

You can reach the person managing the list at
        [EMAIL PROTECTED]

When replying, please edit your Subject line so it is more specific than
"Re: Contents of Ns-users digest..."


Today's Topics:

   1. Re: NIST - Bug?? (Venelin Petkov)
   2. ns-2 FAQ ([EMAIL PROTECTED])


----------------------------------------------------------------------

Message: 1
Date: Sun, 1 Jul 2007 15:34:07 +0100 (BST)
From: Venelin Petkov <[EMAIL PROTECTED]>
Subject: Re: [ns] NIST - Bug??
To: Junkeira <[EMAIL PROTECTED]>, [email protected]
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset=iso-8859-1

Hello Junkeira,

Thank you for your respond. I had tried the way you described below but
i again ran to the same error message:


$ ns wimax1.tcl
num_nodes is set 5
invalid command name "Mac/802_16/BS"
    while executing
"Mac/802_16/BS create _o19 "
    invoked from within
"catch "$className create $o $args" msg"
    invoked from within
"if [catch "$className create $o $args" msg] { if [string match
"__FAILED_SHADOW_OBJECT_" $msg] { delete $o return ""
}
global errorInfo
error "class $..."
    (procedure "new" line 3)
    invoked from within
"new $mactype"
    (procedure "_o14" line 10)
    (Node/MobileNode add-interface line 10)
    invoked from within
"$node add-interface $chan $propInstance_ $llType_ $macType_  $ifqType_
$ifqlen_ $phyType_ $antType_ $topoInstance_  $inerrProc_ $outerrProc_
$FECProc_"
    (procedure "_o3" line 70)
    (Simulator create-wireless-node line 70)
    invoked from within
"_o3 create-wireless-node"
    ("eval" body line 1)
    invoked from within
"eval $self create-wireless-node $args"
    (procedure "_o3" line 23)
    (Simulator node line 23)
    invoked from within
"$ns node"
    invoked from within
"set node_(0) [$ns node]"
    (file "wimax1.tcl" line 208)




Do you have any idea how to fix this one? What is wrong with my values
&#1072;ssigning?


#===================================
#             Node              
#===================================
$ns node-config -adhocRouting $val(rp) \
                 -llType $opt(ll) \
                 -macType Mac/802_16/BS \ ; # THIS IS THE FAILING ROW
                 -ifqType $opt(ifq) \
                 -ifqLen $opt(ifqlen) \
                 -antType $opt(ant) \
                 -propType $opt(prop)    \
                 -phyType $opt(netif) \
                 -channel [new $opt(chan)] \
                 -topoInstance $topo \
                 -wiredRouting ON \
                 -agentTrace ON \
                 -routerTrace ON \
                 -macTrace ON  \
                 -movementTrace OFF

#0?Node
set node_(0) [$ns node]
$node_(0) set X_ 536
$node_(0) set Y_ 668
$node_(0) set Z_ 0.0
$ns initial_node_pos $node_(0) 20

$ns node-config -macType Mac/802_16/SS \
                -wiredRouting OFF \
                -macTrace ON                 .

#1?Node
set node_(1) [$ns node]
$node_(1) set X_ 676
$node_(1) set Y_ 680
$node_(1) set Z_ 0.0
$ns initial_node_pos $node_(1) 20


I am currently using NS version 2.29 and the wimax module is the
embedded in it. I download this copy from here:   
http://140.116.72.80/~smallko/ns2/ns-allinone-2.29_wimax.rar

I do not know whether this is from the version that i am using or
anything else that is why all help will be very appreciated.

I am looking forward to hearing from you.

Thank you in advance.

Best Regards,
Venelin Petkov



Junkeira <[EMAIL PROTECTED]> wrote: 

Hi,

I didnt see the message, it wasnt sent to my mail, so i'll answer just
now.
Why you dont config like in the example datarate.tcl, first  all the
options
for the configuration of the wireless node that will after be created,
and
then just change the different parameters for the MN or SS. If you can
run
that example without receiving an error message is because your sintax
is
not correct probably. But also probably you already solved that
problem:).
kindly, Tiago Junqueira

$ns node-config -adhocRouting $opt(adhocRouting) \
                 -llType $opt(ll) \
                 -macType Mac/802_16/BS \
                 -ifqType $opt(ifq) \
                 -ifqLen $opt(ifqlen) \
                 -antType $opt(ant) \
                 -propType $opt(prop)    \
                 -phyType $opt(netif) \
                 -channel [new $opt(chan)] \
                 -topoInstance $topo \
                 -wiredRouting ON \
                 -agentTrace ON \
                 -routerTrace ON \
                 -macTrace ON  \
                 -movementTrace OFF
#puts "Configuration of base station"

set bstation [$ns node 1.0.0]

$ns node-config -macType Mac/802_16/SS \
                -wiredRouting OFF \
                -macTrace ON      ;# Mobile nodes cannot do routing.

set wl_node [$ns node 1.0.1]  ;# create the node with given @.
-- 
View this message in context:
http://www.nabble.com/NIST---Bug---tf3849528.html#a11368605
Sent from the ns-users mailing list archive at Nabble.com.



       
---------------------------------
Yahoo! Mail now has unlimited storage, which means you can have spam
control and more space for those important e-mails.

------------------------------

Message: 2
Date: Sun, 1 Jul 2007 15:20:10 -0700
From: [EMAIL PROTECTED]
Subject: [ns] ns-2 FAQ
To: [email protected]
Message-ID:
        <[EMAIL PROTECTED]>

            The Network Simulator ns-2: Frequently Asked Questions

Note:  This FAQ is now available at the project wiki:
http://nsnam.isi.edu/nsnam/index.php/Ns_Users_FAQ

   _The mailing is is now subscriber only---please see the FAQ entry on
   "How do I post to the mailing list? Why was my post rejected?" for
   details._

     * _Where do I get ns?_

       From the ns web site at http://www.isi.edu/nsnam/ns/ns.html and
       the download page http://www.isi.edu/nsnam/ns/ns-tests.html.

     * _What platforms does ns run on and what kind of hardware do I
       need?_

       Please see "where to start" on the building ns web page:
       http://www.isi.edu/nsnam/ns/ns-build.html#start.

     * _What should I do if I have trouble downloading/extracting ns?_

       This question is answered in detail at
       http://www.isi.edu/nsnam/ns/ns-problems.html#downloading.

     * _What should I do if I encounter problems building ns?_

       Check:
         1. the README that comes in the distribution (very brief),
         2. the "installation problems, bug fixes and help" web page
            http://www.isi.edu/nsnam/ns/ns-problems.html,
         3. the archives of the ns-users mailing list
            http://www.isi.edu/nsnam/ns/ns-lists.html,
         4. post a bug report (see below)
            http://www.isi.edu/cgi-bin/nsnam/reportbug.cgi.

     * _What do I do after I successfully build ns?_

          + Put the path to your ns executable into your PATH
environment
          + Put the path to your otcl into your LD_LIBRARY_PATH
            environment
          + Put the path to your tcl library into your TCL_LIBRARY
            environment

     * _Where can I find documentation for ns?_

       All documentation is linked from the main ns web page
       http://www.isi.edu/nsnam/ns/. Documentation includes a tutorial
       (originally from Marc Greis) and a reference manual (ns notes and
       documentation).

     * _Words, words, words... that documentation is nice, but where are
       some sample scripts I can start from?_

       Many sample scripts can be found in the ns distribution in
       ~ns-2/tcl/ex and ~ns-2/tcl/test.

     * _What protocols does ns support?_

       A lot! Almost all variants of TCP, several forms of multicast,
       wired networking, several ad hoc routing protocols and
propagation
       models (but not cellular phones), data diffusion, satellite, and
       other stuff. See the documentation (described above) for details,
       or download ns and look.

     * _How do I know that ns correctly implements these protocols?_

       Ns has validation tests that cover many protocols, see
       http://www.isi.edu/nsnam/ns/ns-tests.html. However, ultimately
       users are responsible for verifying that ns is accurate for their
       purposes---since we cannot foresee all the ways ns may be used,
we
       cannot test all cases with all inputs.

     * _Are there any contributed/additional protocols not in the main
       distribution?_

       Yes, please see the contributed code web page
       http://www.isi.edu/nsnam/ns/ns-contributed.html. The mailing list
       archives can also be helpful (see below).

     * _How should I get started doing something (like implementing a
new
       protocol or trying an experiment)?_

       We recommend that you look through the tutorial (see
       documentation, above), then start with an example program that is
       most similar to yours (in the tutorial, or in tcl/ex or tcl/test
       in the distribution), and then start changing things.

     * _What should I do to compile ns to reflect my changes if I've
       modified some .cc or .h files?_

       go to ns directory and run "make" or "make depend; make"

     * _How do I subscribe to the ns-users mailing list? How do I search
       old list archives? I can't take any more---how do I get off this
       list?_

       To subscribe or unsubscribe, see
       http://www.isi.edu/nsnam/ns/ns-lists.html. The list archive is at
       http://www.isi.edu/nsnam/ns/ns-lists.html.

     * _How do I post to the mailing list? Why was my post rejected?_

       As of June 2004 the ns-users lists allow posts from _subscriber
       only_. If you're not a subscriber, your posts to the list will be
       rejected. (This is unfortunately necessary to dispose efficiently
       of spam; manual filtering is too expensive.) We realize that the
       list is high traffic, so if you wish to post to the list without
       receiving messages on it, please subscribe and select the
_no-mail_
       option for your subscription.

       For details about the mailing list including mailing-list
specific
       FAQ (for example, what if you're subscribed but still can't
post),
       please see http://www.isi.edu/nsnam/ns/ns-lists.html.

     * _Did my post appear on the mailing list? (Or, why didn't my post
       appear on the mailing list?)_

       See the http://www.isi.edu/nsnam/ns/ns-lists.html web page for
       help debugging mailing list problems.

     * _What if I have a question that's not answered here?_

       If you've checked the installation problems and bug fixes web
page
       (http://www.isi.edu/nsnam/ns/ns-problems.html) and there's no
       answer to your question, you may want to file a bug report or
post
       a question to the ns-user's mailing list.

       First, you should check the archive of the list at
       http://www.isi.edu/nsnam/ns/ns-lists.html. Your question may
       already be answered there.

       If not, you can post a bug report using the web form at
       http://www.isi.edu/cgi-bin/nsnam/reportbug.cgi.

       If your question is NOT about ns implementation bugs, you may
wish
       to post to the list. First you should subscribe. Subscription
       instructions are at http://www.isi.edu/nsnam/ns/ns-lists.html.

       _Please note that mail sent to the list is publicly distributed
       and archived. _If you have concerns about your message being made
       public (spam harvesting of your address), please consider that
       _before_ posting. We cannot remove messages from reciepient's
       mailboxes or the public archive after they're posted.

       When posting bug reports, please _always_ include information
       including at least (the bug report form includes spaces for
       these):
          + what version of ns you're using,
          + what operating system you're running on (not just Linux or
            Solaris, but RedHat version 7.0 or Solaris 2.4---send us the
            output of "uname -a"),
          + what specific behavior you see (if ns doesn't compile,
what's
            the specific error; if TCP does something strange, what
            exactly did it do [send a pointer to a packet trace]),
          + what behavior you expected to see (if ns doesn't compile
this
            is obvious, but if TCP does something strange, why is it
            strange, where is the TCP spec violated?),
          + pointers to your script detailed output files,
          + a statement that "yes, I've read the FAQ, ns-problems page,
            and manual and I couldn't find the answer there" (or a
            statement about why you didn't do that yet :-)

       Soo-Hyun Choi observed from posts to the list: _Sometimes, I see
       this list is filled with the questions with: 1) asked many times
       before 2) hardly understandable what this guy is asking 3) too
       easy to find an answer over a few clicks over the Internet 4)
       soliciting to do their homework in a simple way by asking in this
       list 5) easily seekable an answer by contributing a couple of
       hours of reading the ns-manual 6) etc, etc. _

       _As many of us in this list are doing an advanced degree, it
would
       be suggested to read the following article in order to raise a
       useful/meaningful question in a smart way.
       http://www.catb.org/~esr/faqs/smart-questions.html _

       This is _very_ good advice, since asking the Right Question is
       very likely to get a good/helpful answer, while asking a question
       poorly. For example, think about how you would answer these two
       questions: _"Ns doesn't work for me, it crashes. Help."_ as
       compared to _"I get a segmentation fault when running test script
       test-suite-webcache on Mandrake 10 Linux. The backtrace is on my
       web page at www.someu.edu/~someone. It looks like it passes in
the
       on-line test suites, but it fails for me. Am I doing something
       wrong?_

       A reminder about mailing list etiquette:
          + Please check the web pages and list archives before posting
            your question.
          + Please keep the body of your post to simple ASCII, not HTML.
          + Please do _not_ send large attachments (if what you have is
            bigger than a few kilobytes, put it on a web page and send a
            URL)
          + Before posting a question like "did people see my post" or
            "the list seems down", please check the archives (you can
            answer this question more accurately by checking yourself
            rather than asking).
          + Please don't post subscribe/unsubscribe requests directly to
            the list, use the lists' information page. (see the web page
            mentioned above for details).



------------------------------

_______________________________________________
Ns-users mailing list
[email protected]
http://mailman.isi.edu/mailman/listinfo/ns-users


End of Ns-users Digest, Vol 43, Issue 1
***************************************

Reply via email to