How to Create Hotspot on Parrot OS

How to create hotspot on parrot os??

Using :

CPU: 11th Gen Intel i7-1165G7 (8) @ 4.700GHz
Kernel: 5.14.0-9parrot1-amd64
OS: Parrot OS 5.0 (LTS) x86_64
Host: HP ProBook 450 G8 Notebook PC
DE: Plasma 5.20.5

1 Like

Before we approach a solution, would you mention your system’s driver names?

How can I do that??
Please Guide…

From your terminal, show us the output after running this command: sudo lspci

0000:00:00.0 Host bridge: Intel Corporation 11th Gen Core Processor Host Bridge/DRAM Registers (rev 01)
0000:00:02.0 VGA compatible controller: Intel Corporation TigerLake GT2 [Iris Xe Graphics] (rev 01)
0000:00:04.0 Signal processing controller: Intel Corporation Device 9a03 (rev 01)
0000:00:0a.0 Signal processing controller: Intel Corporation Device 9a0d (rev 01)
0000:00:0d.0 USB controller: Intel Corporation Tiger Lake-LP Thunderbolt 4 USB Controller (rev 01)
0000:00:0e.0 RAID bus controller: Intel Corporation Volume Management Device NVMe RAID Controller
0000:00:14.0 USB controller: Intel Corporation Tiger Lake-LP USB 3.2 Gen 2x1 xHCI Host Controller (rev 20)
0000:00:14.2 RAM memory: Intel Corporation Tiger Lake-LP Shared SRAM (rev 20)
0000:00:14.3 Network controller: Intel Corporation Wi-Fi 6 AX201 (rev 20)
0000:00:15.0 Serial bus controller [0c80]: Intel Corporation Tiger Lake-LP Serial IO I2C Controller #0 (rev 20
)
0000:00:16.0 Communication controller: Intel Corporation Tiger Lake-LP Management Engine Interface (rev 20)
0000:00:1c.0 PCI bridge: Intel Corporation Tigerlake PCH-LP PCI Express Root Port #6 (rev 20)
0000:00:1c.7 PCI bridge: Intel Corporation Tiger Lake-LP PCI Express Root Port #8 (rev 20)
0000:00:1d.0 System peripheral: Intel Corporation Device 09ab
0000:00:1f.0 ISA bridge: Intel Corporation Tiger Lake-LP LPC Controller (rev 20)
0000:00:1f.3 Multimedia audio controller: Intel Corporation Tiger Lake-LP Smart Sound Technology Audio Control
ler (rev 20)
0000:00:1f.4 SMBus: Intel Corporation Tiger Lake-LP SMBus Controller (rev 20)
0000:00:1f.5 Serial bus controller [0c80]: Intel Corporation Tiger Lake-LP SPI Controller (rev 20)
0000:01:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS522A PCI Express Card Reader (rev 01)
0000:02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethern
et Controller (rev 15)
10000:e0:1d.0 PCI bridge: Intel Corporation Tiger Lake-LP PCI Express Root Port #9 (rev 20)
10000:e1:00.0 Non-Volatile memory controller: KIOXIA Corporation Device 0001

Try the following process gradually, hope this works:

  1. run ip link show
    It should show your WiFi Interface name (i.e. wlp6s0)
  2. run lw list
  3. run IFNAME=“Your_WiFi_Interface_Name_Here”
  4. CON_NAME=“myhotspot
  5. run nmcli con add type wifi ifname $IFNAME con-name $CON_NAME autoconnect yes ssid $CON_NAME
  6. run nmcli con modify $CON_NAME 802-11-wireless.mode ap 802-11-wireless.band bg ipv4.method shared
  7. run nmcli con modify $CON_NAME wifi-sec.key-mgmt wpa-psk
  8. run nmcli con modify $CON_NAME wifi-sec.psk "YourOwnStrongHotspotPass"
  9. run nmcli con up $CON_NAME
  10. Finally, this shows your detailed connection info: nmcli connection show $CON_NAME

This is one of several ways to setup hotspot .

1 Like

Thank You for help sir!

This topic was automatically closed 120 days after the last reply. New replies are no longer allowed.