LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 05-18-2011, 02:04 AM   #16
Shruti
LQ Newbie
 
Registered: May 2011
Posts: 14

Original Poster
Rep: Reputation: 0

Quote:
Originally Posted by knudfl View Post
#11-#12


Read all the posts in this thread : AODV is already present in ns-2.34 !

And please use : LQ Search >>> Keyword = ns-allinone
hello sir !
i want to make comparison using some performance metrics between aodv, dsr and dsdv "without wormhole" and "with wormhole".... How to do Sir ?? I will be very obliged to you...
 
Click here to see the post LQ members have rated as the most helpful post in this thread.
Old 05-23-2011, 09:15 AM   #17
TB0ne
LQ Guru
 
Registered: Jul 2003
Location: Birmingham, Alabama
Distribution: SuSE, RedHat, Slack,CentOS
Posts: 26,623

Rep: Reputation: 7964Reputation: 7964Reputation: 7964Reputation: 7964Reputation: 7964Reputation: 7964Reputation: 7964Reputation: 7964Reputation: 7964Reputation: 7964Reputation: 7964
Quote:
Originally Posted by mujtiba View Post
respected sir
i am mtech final year student i have implemented DOS & DDOS attack in wired network. now i need help in implementing it in wireless adhoc network.
plz mail me to <removed>
thanking in anticipation
No, we won't be mailing you anything, thanks. This is a community forum, not somewhere for you to come and get personalized, one-on-one free tech support. If you want answers, then participate and follow the forum rules...like the ones about posting the same question in multiple places, and hijacking someone elses threads, like you have SEVERAL TIMES SO FAR.

Last edited by colucix; 05-23-2011 at 02:11 PM.
 
2 members found this post helpful.
Old 05-31-2011, 01:42 AM   #18
Shruti
LQ Newbie
 
Registered: May 2011
Posts: 14

Original Poster
Rep: Reputation: 0
hello sir , when i run e2edelay.awk on aodv trace file.. some error is coming.....
awk: e2edelay.awk:91: (FILENAME=1_out.tr FNR=9713) fatal: division by zero attempted...

e2edelay.awk code is given below...

Code:
         
            if($4 == "RTR" && $1 == "s") {

          start_time[$6] = $2;

    } else if(($7 == "MAC") && ($1 == "r")) {

        end_time[$6] = $2;

    } else if($1 == "D" && $7 == "cbr") {

          end_time[$6] = -1;

    }

}


END {

    for(i=0; i<=seqno; i++) {
if(end_time[i] > 0) {

              delay[i] = end_time[i] - start_time[i];

                  count++;

        }

            else

            {

                  delay[i] = -1;

            }

    }
for(i=0; i<=seqno; i++) {

          if(delay[i] > 0) {

              n_to_n_delay = n_to_n_delay + delay[i];

        }

    }

   n_to_n_delay = n_to_n_delay/count;
Please help me regarding this???
 
Old 03-12-2012, 12:25 AM   #19
saranya6
LQ Newbie
 
Registered: Mar 2012
Posts: 2

Rep: Reputation: Disabled
xgraph

Parameter TitleFont: can't translate `helvetica-18' into a font (defaulting to `fixed')

When i close the xgraph it shows the above error i am using ubundo 11.10 can any one help
 
Old 03-12-2012, 01:09 AM   #20
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
# 19, @saranya6 : Welcome to LQ.
Quote:
Parameter TitleFont:
can't translate `helvetica-18' into a font
(defaulting to `fixed')
It's a message, not really an error.
Tells that "fixed font" is used instead of "helvetica-18 font".
No difference in the looks of Xgraph, when it's used on
a Linux OS that doesn't show the above message.

.

Last edited by knudfl; 03-12-2012 at 01:11 AM.
 
Old 03-12-2012, 05:30 AM   #21
saranya6
LQ Newbie
 
Registered: Mar 2012
Posts: 2

Rep: Reputation: Disabled
xgraph

APPLICATION ERROR
Parameter cant translate helvitica-10 to default.

This message occur every time i close the xgraph i have binded xgraph with tk framework.....any idea to aviod this message....


Also i have doubt with xgraph, bar graph is not working when i run it shows segmentation fault(core dumped) i tried both in fedora14 and ubundo 10.04

Last edited by saranya6; 03-12-2012 at 05:43 AM.
 
Old 03-12-2012, 08:05 AM   #22
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,511

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
# 21. 'ygraph' can be used for some xg plots.

Testing all files in xgraph-12.1/examples ..
Ubuntu 11.10: Xgraph: The message only. No 'Error text'. Ygraph fails.
Ubuntu 10.04: Xgraph : No errors. No messages. Ygraph : OK.
Fedora 14 : Xgraph: The "font message" only. No errors. Ygraph fails.

Ubuntu : The Ubuntu xgraph was used. ( sudo apt-get install xgraph ).

Difficult to say why you should have any errors.

.

Last edited by knudfl; 03-12-2012 at 08:52 AM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Kernel AODV and libipq mahbub_bd Linux - Networking 1 05-19-2011 04:24 AM
where to edit in AODV naren123.k Programming 2 04-11-2011 06:42 AM
AODV and DSR armelle Linux - Networking 0 03-27-2010 03:11 AM
problem in aodv shalinipuri10@gmail.com Linux - Newbie 1 04-27-2009 08:51 AM
AODV in eclipse tassadaque Programming 0 08-26-2008 03:21 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 10:02 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration