Hi.

I need to simulate a real file transmission throughout a core/emane
ieee80211 virtual network, so, where should I setup the noise, distance,
delay, bw parameters? And how I could get the loss, delay statistics for
such transmission?

I created the emane network this way:

    emane_network = session.create_emane_network(

        model=EmaneIeee80211abgModel,

        geo_reference=(47.57917, -122.13232, 2.00000)

    )

    emane_network.setposition(x=80, y=50)

    config = {"noisemode": "all",

        "noisemaxmessagepropagation": "200000",

        "noisemaxsegmentduration": "1000000",

        "noisemaxsegmentoffset": "300000",

        "noisemaxclampenable": "0",

        "distance": "1000",

        "noisebinsize": "20"}

    session.emane.set_model_config(emane_network.objid,
EmaneIeee80211abgModel.name, config)


And added the nodes this way:

    node = session.create_wireless_node()

    node.setposition(x=150, y=150)

    interface = prefixes.create_interface(node)

    session.services.add_services(node, "", ["SSH"])

    session.add_link(node.objid, emane_network.objid,
interface_one=interface)


These parameters don't produce any effect on ping between the nodes.

Is there another way to configure the Emane nodes?

I've installed: Ubuntu 18.04, Emane 1.2.2, Core 5.2

Thank you!
_______________________________________________
emane-users mailing list
emane-users@nrl.navy.mil
https://publists.nrl.navy.mil/mailman/listinfo/emane-users

Reply via email to