[ns] "wrong node routing agent" error... I couldn't find anything helpful in the archive...

2006-01-08 Thread cenker demir
Hello all, I am using ns-allinone-2.28 on cygwin (win XP). I had to create a "clone" of AODV and change its some attributes with a new name according to my scenario. I named my protocol "aodv_au" and copied the aodv folder changing its name to aodv_au. Then I changed every "aodv" word in aodv*.c

[ns] wrong node routing agent... problem continues

2006-01-09 Thread Cenker Demir
Hello All, Related to my question about creating a clone routing protocol, and according to Mr.Estrella's suggestion I included the ns-lib.tcl to the beginning of my simulation script as below. I got the errors that I attached. I also run ns in tcl/lib, and wrote "source ns-lib.tcl" and I got

Re: [ns] wrong node routing agent... problem SOLVED

2006-01-11 Thread Cenker Demir
mebody else, someday... thank you for all the replies... regards Cenker Cenker Demir wrote: > > Hello All, > >Related to my question about creating a clone routing >protocol, and >according to Mr.Es

Re: [ns] Animating wireless transmissions in nam

2006-01-13 Thread Cenker Demir
Hi, I work with AODV on ns-allinone-2.28 on cygwin. When I run the simulation I can see the rreq, rrep, and data packet transmissions among nodes. regards Cenker Henrik Schumacher wrote: > >Hi Dhammika, > >i think nam does not support the visualization of packet flows for wireless >trace

Re: [ns] Animating wireless transmissions in nam

2006-01-16 Thread Cenker Demir
Hi >can you help me who you implemented AODV on >ns-allinone-2.29 if possible Iam tried to run it but I >am failed >Regraes > >--- Cenker Demir <[EMAIL PROTECTED]> wrote: > >> >> >> Hi, >> >> I work with AODV on ns-allinone-2.28

Re: [ns] xgrapgh in ns-2.29 and changing TCP congestion algoithm

2006-02-21 Thread Cenker Demir
Hello, As far as i know, when you write xgraph on your command prompt and give the name of the xgraph trace file, it should work, if you installed it correctly. Also when you write "man xgraph", you will get the manual page of xgraph, which you can find in the directory of xgraph under cygwin

Re: [ns] tk8.4.11 make failed!

2006-02-27 Thread Cenker Demir
Try a different version of tk, you might need to change some parameters with configure, or install (if it is an allinone-2.29) Emanuele Vecchio wrote: > >On Mon, 27 Feb 2006 20:36:44 -, Kevin.McGrath wrote >> Help ... please >[snip] >> For problems with Tcl/Tk see http://www.scriptics.co

Re: [ns] xgraph problem

2006-03-02 Thread Cenker Demir
Yes, it is an installation problem. Jing Li wrote: > >when using xgraph, it was like "couldn;t execute 'xgraph': no such file or >directory". Is it an installation problem? i got the xgraph-12.1 folder, but no >executable file. is it because of this? > > >

Re: [ns] path&run scripts

2006-03-02 Thread Cenker Demir
Hello, After the installation, you will see the lines explaining how to set the path variables. After setting these variables, as far as I remember, I copied the ns.exe from ns2.29 to /bin/ directory. try that, it should work. regards Cenker Alexandra Cioroianu wrote: > >Hello everybody!

[ns] changing header info after rqueue.deque in aodv

2006-04-13 Thread Cenker Demir
Dear ns users, I am using ns-allinone-2.28 for cygwin on XP-SP2. I am working on a new routing approach with an additional metric for AODV. My routing decision is based on another metric which I can get only after receiving a route reply. When a packet is put into queue in rt_resolve(.), I d

Re: [ns] installing ns-2.29 on fedora core 4

2006-04-13 Thread Cenker Demir
Hi, If any of the packages in an allinone distribution causes a problem, try to install it individually. Try to be careful with the configure and Makelife files, you "might" need to change them, too, after installing a package alone. Once I had to install ns-2.28 and ns-2.29 to rad hat 3.0 6

Re: [ns] AODV: what does rt_resolve function do?

2006-05-02 Thread Cenker Demir
Yes, any incoming packet causes the recv function called. Then, if it s a aodv packet, recvAODV function is called. If it is a data packet, then, rt_resolve is called in order to "resolve" a possible route... namely to see if the node has any routes to the destination... good luck, Cenker Gü

Re: [ns] AODV - Route Repair Issue

2006-05-08 Thread Cenker Demir
I think there is a senderr() function call in the handle__link_failure function. If it is decided that the route can not be repaired, and if the packet is freed than a route error is sent to the original node to prevent the intermediate nodes and the source node to use that route again. It mu