Raspberry Pi 4: Wi Fi Hotspot Bridged To Ethernet Network
jasonr
Wed Jan 29 2025 01:43:59 PM PST
This tutorial will guide you through configuring a Raspberry Pi 4 to act as a Wi-Fi hotspot that shares access to an Ethernet network. Devices connected to the hotspot will be able to access the Ethernet network and its resources.
Prerequisites
- A Raspberry Pi 4 with an operating system installed (e.g., Raspberry Pi OS).
- Ethernet cable connected to a network.
- Access to the Raspberry Pi’s GUI or terminal.
Step 1: Set Up the Hotspot
-
Open the Network Manager GUI:
- In the taskbar, click on the network icon.
- Open Network Connections.
-
Create a Wi-Fi Hotspot:
- Click Add, select Wi-Fi, and click Create.
- Configure the hotspot:
- SSID: Enter a name for the hotspot (e.g.,
RPI-Hotspot
).
- Mode: Select Hotspot.
- Security: Set to WPA2 Personal and provide a password.
-
Save the Configuration:
- Save the hotspot connection.
Step 2: Enable IPv4 Sharing
-
Edit the Hotspot Connection:
- In the Network Connections window, select the hotspot and click Edit.
- Go to the IPv4 Settings tab.
-
Set IPv4 Method:
- Change the method to Shared to other computers.
- Save the configuration.
-
Restart the Hotspot:
- Restart the connection to apply changes.
Step 3: Enable NAT (Optional, if Needed)
To ensure traffic is routed correctly, set up Network Address Translation (NAT):
-
Enable IP Forwarding:
- Run the following command to enable IP forwarding:
- Make the change persistent by adding it to
/etc/sysctl.conf
:
-
Set Up NAT with iptables:
- Add a NAT rule for forwarding traffic from Wi-Fi to Ethernet:
- Save the iptables configuration:
- Install
iptables-persistent
to restore rules on boot:
Step 4: Connect Devices to the Hotspot
-
Connect a Device:
- Use your phone, laptop, or other Wi-Fi-enabled device to connect to the hotspot.
- Enter the password you configured in Step 1.
-
Verify Connectivity:
- Check that the device gets an IP address from the Raspberry Pi.
- Test connectivity to devices on the Ethernet network by pinging their IP addresses or accessing services (e.g., SSH).
Optional (Hide the AP)
- sudo nmcli connection modify <SSID> 802-11-wireless.hidden yes
- sudo nmcli connection down <SSID> && sudo nmcli connection up <SSID>