Renan,

I would suggest taking a look at the emane-tutorial[1]. Demonstration 3
introduces the 802.11abg model. It does not use core but will provide an
understanding of how emane works and what the necessary inputs are for
an emulation experiment.

Depending on the emulator physical layer 'propagationmodel'[2]
parameter, you will either need to inject mobility (location events) or
pathloss (pathloss events) into the running emulation in order to
experience loss due to RF effects.

This mailing list can help with emane specific questions. Use the
core-users[3] list for core related questions.

[1]: https://github.com/adjacentlink/emane-tutorial/wiki
[2]:
https://github.com/adjacentlink/emane/wiki/Physical-Layer-Model#propagation-model
[3]: https://publists.nrl.navy.mil/mailman/listinfo/core-users

-- 
Steven Galgano
Adjacent Link LLC
www.adjacentlink.com


On 11/18/18 2:14 AM, Renan Cabrera wrote:
> 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
> 
_______________________________________________
emane-users mailing list
emane-users@nrl.navy.mil
https://publists.nrl.navy.mil/mailman/listinfo/emane-users

Reply via email to