[Bug 218599] create mesh network in backport213-5.15
[email protected] Thu, 14 Mar 2024 19:59:39 +0000
| Newsgroups | org.kernel.vger.backports |
|---|---|
| Message-ID | <[email protected]/> |
https://bugzilla.kernel.org/show_bug.cgi?id=218599 --- Comment #1 from Mostafa ([email protected]) --- This is my script to create mesh: #!/bin/bash # Bring down the interface sudo ip link set wlxe8de271f11cd down sleep 2 # Clear any existing IP addresses sudo ip addr flush dev wlxe8de271f11cd sleep 2 # Create the mesh interface sudo iw dev wlxe8de271f11cd interface add mesh1 type mp sleep 2 # Bring up the mesh interface sudo ip link set mesh1 up sleep 2 # Join the mesh network sudo iw dev mesh1 mesh join mymesh sleep 2 # Assign an IP address to the mesh interface sudo ip addr add 192.168.1.1/24 dev mesh1 -- You may reply to this email to add a comment. You are receiving this mail because: You are the assignee for the bug.