2010/9/6 Alex <alejandr...@googlemail.com>:
> Hello everyone,
> I am simulating a mesh network with IEEE 802.11s. The implementation
> of HWMP in NS3, Is it possible to define more than one root? Is it
Yes, it is possible. But every non-root station remember a path to the
best (using airtime metric) root. To do this, you should call
hwmp->SetRoot (); (src/helper/dot11s-installer.cc, line 73). You also
need to modify helper a bit.
> possible to configure proactive and reactive modes at the same time?
Combining proactive and reactive nodes is done as follows:
1. Node try to send a data using reactive route.
2. If there is no reactive route, it try to send to root (if a proper
entry exists).
3. If there is still no route, it starts reactive lookup.
See HwmpProtocol::ForwardUnicast, in
src/devices/mesh/dot11s/hwmp-protocol.cc, line 318, if you want to
modify something.
--
Regards, Kirill Andreev
Wireless Software R&D Group,
IITP RAS
I am simulating a WMN. Using NS3 to implement HWMP.
I want to know the following:
set two nodes as root.
By default one routing table is used. Is it possible each non-root station can
mantain two routing table for two root and when non-root node have data to send,
it compare metric of two routing table if both know the destination.
if possible which file and which function i have to modify.
thanks
ash
Hi!2010/9/6 Alex <alejandr...@googlemail.com>:
> Hello everyone,
> I am simulating a mesh network with IEEE 802.11s. The implementation
> of HWMP in NS3, Is it possible to define more than one root? Is it
Yes, it is possible. But every non-root station remember a path to the
best (using airtime metric) root. To do this, you should call
hwmp->SetRoot (); (src/helper/dot11s-installer.cc, line 73). You also
need to modify helper a bit.
--
Regards, Kirill Andreev
Wireless Software R&D Group,
IITP RAS
--
You received this message because you are subscribed to the Google Groups "ns-3-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ns-3-users+...@googlegroups.com.
To post to this group, send email to ns-3-...@googlegroups.com.
Visit this group at http://groups.google.com/group/ns-3-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
Can anyone provide me hwmp code?
Thanks
Taz.