Steven Galgano

Results 27 comments of Steven Galgano

You might want to take a look at using the `emane.events` Python module to build a custom controllable event distribution application for your needs. [Here](https://github.com/adjacentlink/emane-tutorial/blob/master/1/bridge_with10.py) is a bare bones example...

Altitude factors into both the [freespace](https://github.com/adjacentlink/emane/blob/master/src/libemane/freespacepropagationmodelalgorithm.h) and [2ray](https://github.com/adjacentlink/emane/blob/master/src/libemane/tworaypropagationmodelalgorithm.h) propagation model calculations. When using precomputed, it is up to the mechanism generating pathloss events.

The TDMA model does aggregation and fragmentation. In that model, a downstream packet generated by the radio model may contain a whole, part, or multiple whole and parts of one...

Your best option is to set [propagationmodel](https://github.com/adjacentlink/emane/wiki/Physical-Layer-Model#propagationmodel) to `precomputed` and send pathloss (computed any way you like) via events.

My guess is RLY1 is not receiving RLY2's arp response. You can try manually populating the arp cache on RLY1, so it does not arp for RLY2.

This is an lxc rpm spec issue. Download the lxc source rpm, modify the spec similar to below, rebuild, and update. ```diff --- lxc.spec.orig 2022-05-05 16:58:12.932812621 -0400 +++ lxc.spec.new 2022-05-05...

You can download source rpms with dnf: ``` $ dnf download --source lxc ``` The dependencies were a bit more difficult to find -- we rebuilt them from fedora src...

Yes. ``` $ sudo rpm -i lxc-libs-3.0.4-2.static_init.el8.x86_64.rpm lxc-3.0.4-2.static_init.el8.x86_64.rpm ``` Keep in mind the version of olsr used in the [emane-turtorial](https://github.com/adjacentlink/emane-tutorial) is no longer maintained, so mileage will vary.

There are other issues related to 32 bit support concerning log statements which include 64 bit integers. We have not built emane for 32 bit systems for a number of...

You can use pathloss events or locations events (when using [freespace or 2ray](https://github.com/adjacentlink/emane/wiki/Physical-Layer-Model#propagationmodel)) to change topology. You can use static routes or you can use a MANET routing protocol. The...