Repository : ssh://git@open-mesh.org/doc
On branches: backup-redmine/2018-08-24,backup-redmine/2019-09-14,master
commit 4e462da68a7af4a13fb0b1da218e5785197b554c Author: Sven Eckelmann sven@narfation.org Date: Sun Jun 17 11:12:07 2018 +0000
doc: batman-adv/Quick-start-guide: switch from deprecated iwconfig to iw
4e462da68a7af4a13fb0b1da218e5785197b554c batman-adv/Quick-start-guide.textile | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/batman-adv/Quick-start-guide.textile b/batman-adv/Quick-start-guide.textile index b85f612..d5e709f 100644 --- a/batman-adv/Quick-start-guide.textile +++ b/batman-adv/Quick-start-guide.textile @@ -37,9 +37,10 @@ h3. Simple mesh network On all nodes, install batman-adv, load the module and enter the following commands (as root):
<pre> -ip link set up dev eth0 -ip link set mtu 1532 dev wlan0 -iwconfig wlan0 mode ad-hoc essid my-mesh-network ap 02:12:34:56:78:9A channel 1 +iw dev wlan0 del +iw phy phy0 interface add wlan0 type ibss +ip link set up mtu 1532 dev wlan0 +iw dev wlan0 ibss join my-mesh-network 2412 HT20 fixed-freq 02:12:34:56:78:9A </pre>
<pre> @@ -64,8 +65,10 @@ If you have a couple of computers that you don't want to run batman-adv on but y On each mesh access point, install batman-adv first, load the module and enter the following commands:
<pre> -ip link set mtu 1532 dev wlan0 -iwconfig wlan0 mode ad-hoc essid my-mesh-network ap 02:12:34:56:78:9A channel 1 +iw dev wlan0 del +iw phy phy0 interface add wlan0 type ibss +ip link set up mtu 1532 dev wlan0 +iw dev wlan0 ibss join my-mesh-network 2412 HT20 fixed-freq 02:12:34:56:78:9A </pre>
<pre>