All of lore.kernel.org
 help / color / mirror / Atom feed
From: bugzilla-daemon@kernel.org
To: backports@vger.kernel.org
Subject: [Bug 218599] create mesh network in backport213-5.15
Date: Thu, 14 Mar 2024 19:59:39 +0000	[thread overview]
Message-ID: <bug-218599-58281-DxwghRLaxa@https.bugzilla.kernel.org/> (raw)
In-Reply-To: <bug-218599-58281@https.bugzilla.kernel.org/>

https://bugzilla.kernel.org/show_bug.cgi?id=218599

--- Comment #1 from Mostafa (abdolahi68@uvic.ca) ---
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.

  reply	other threads:[~2024-03-14 19:59 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-03-14 19:22 [Bug 218599] New: create mesh network in backport213-5.15 bugzilla-daemon
2024-03-14 19:59 ` bugzilla-daemon [this message]
2024-03-15 10:01 ` [Bug 218599] " bugzilla-daemon

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bug-218599-58281-DxwghRLaxa@https.bugzilla.kernel.org/ \
    --to=bugzilla-daemon@kernel.org \
    --cc=backports@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.