Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 469296 - net-misc/netifrc: support for 802.11s mesh network configuration
Summary: net-misc/netifrc: support for 802.11s mesh network configuration
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Hosted Projects
Classification: Unclassified
Component: netifrc (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: netifrc Team
URL:
Whiteboard: netifrc:iw
Keywords:
Depends on: 261655
Blocks:
  Show dependency tree
 
Reported: 2013-05-10 10:24 UTC by Stefan Junker
Modified: 2020-06-02 21:54 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Stefan Junker 2013-05-10 10:24:30 UTC
Having enabled CONFIG_MAC80211_MESH=y in Kernel, using a compatible driver and having installed the 'iw'-Util allows configuring 802.11s mesh networks.

At the moment the following entries in /etc/conf.d/net do the trick for me:
...
preup() {
        if [[ ${IFACE} = "wlan0" ]]; then
                echo Setting mesh type on ${IFACE}
                ifconfig wlan0 down
                iw ${IFACE} set type mesh
                ifconfig ${IFACE} up
                iw ${IFACE} mesh join Meshwork
        fi
        return 0;
}

# wlan0
modules_wlan0="dhcp !wpa_supplicant"
config_wlan0="dhcp"
...


It would be nicer to have something like

modules_wlan0="dhcp mesh"
mesh_id_wlan0="Meshwork"
Comment 1 Robin Johnson archtester Gentoo Infrastructure gentoo-dev Security 2013-08-28 20:18:37 UTC
When we support the iw tool, this should be included.
Comment 2 Larry the Git Cow gentoo-dev 2020-06-02 21:54:11 UTC
The bug has been closed via the following commit(s):

https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=589d7374dc5c023304f6226cb458d5346bdd3a0b

commit 589d7374dc5c023304f6226cb458d5346bdd3a0b
Author:     Robin H. Johnson <robbat2@gentoo.org>
AuthorDate: 2020-06-02 21:51:00 +0000
Commit:     Robin H. Johnson <robbat2@gentoo.org>
CommitDate: 2020-06-02 21:53:50 +0000

    net/iw: implement 802.11s mesh
    
    Closes: https://bugs.gentoo.org/469296
    Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>

 doc/net.example.Linux.in |  7 ++++++-
 net/iw.sh                | 25 +++++++++++++++++++++++++
 2 files changed, 31 insertions(+), 1 deletion(-)