Alessandro, > MDRs in the original script (the one who worked with CORE 4.3), I modified > the two files of CORE "nodes.py" and "vnode.py" to reach this goal. I > repeated these updates also in this version of CORE. > I'm attaching two files containing only the modified parts of these two > files. > > I hope this helps you to understand better my situation. Thank you very much.
Here is the manual chapter on Python scripting: http://pf.itd.nrl.navy.mil/core/core-html/scripting.html Since you want to use the "Execute Python script..." option to connect the GUI, your script is missing these lines at the end (as described in the manual): if __name__ == "__main__" or __name__ == "__builtin__": main() I was able to run your script from the command-line or GUI. The MDR nodes worked across EMANE as expected. Instead of changing nodes.py and vnode.py I cut and pasted your changes into your MyMdrNode class in your original script; attached is that version. -Jeff
myNetGUIwithEMANE_1.0.1.py
Description: myNetGUIwithEMANE_1.0.1.py
_______________________________________________ emane-users mailing list [email protected] http://pf.itd.nrl.navy.mil/mailman/listinfo/emane-users
