Mehrere Wifi-Verbindungen konfigurieren (Raspbian): Unterschied zwischen den Versionen

Aus Tutorials
Zur Navigation springen Zur Suche springen
Zeile 30: Zeile 30:
<pre>
<pre>
sudo vi /etc/dhcpcd.conf
sudo vi /etc/dhcpcd.conf
</pre>
<pre>
interface <Network>
arping <IP_Router1>
arping <IP_Router2>profile <IP_Router1>
static ip_address=<IP_Pi1>/24
static routers=<IP_Router1>
static domain_name_servers=<Name_Server1>profile <IP_Router2>
static ip_address=<IP_Pi2>/24
static routers=<IP_Router2>
static domain_name_servers=<Name_Server2>
</pre>
</pre>



Version vom 28. April 2023, 14:47 Uhr

Noch in Bearbeitung


/etc/wpa_supplicant/wpa_supplicant.conf

sudo vi /etc/wpa_supplicant/wpa_supplicant.conf
country=AT
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
ap_scan=1

update_config=1

network={
        ssid="SSID-ROUTER-1"
        psk="password1"
}

network={
        ssid="SSID-ROUTER-2"
        psk="password2"
}

/etc/dhcpcd.conf

sudo vi /etc/dhcpcd.conf
interface <Network> 
arping <IP_Router1> 
arping <IP_Router2>profile <IP_Router1>

static ip_address=<IP_Pi1>/24 
static routers=<IP_Router1>
static domain_name_servers=<Name_Server1>profile <IP_Router2>

static ip_address=<IP_Pi2>/24 
static routers=<IP_Router2>
static domain_name_servers=<Name_Server2>
interface wlan0
arping 10.0.0.1
arping 10.3.0.1

profile 10.0.0.1
static ip_address=10.0.0.180/24
static routers=10.0.0.1
static domain_name_servers=8.8.8.8 8.8.4.4

profile 10.3.0.1
static ip_address=10.3.0.180/24
static routers=10.3.0.1
static domain_name_servers=8.8.8.8 8.8.4.4

Links

https://medium.com/swlh/raspberry-pi-3-connect-to-multiple-wifis-set-multiple-static-ips-52f8a80d2ee1

https://wiki.ubuntuusers.de/WLAN/wpa_supplicant/#Roaming


Zurück zu Netzwerk Wireless