Tag - wlan - liczba wpisów 2

Mikrotik WLAN config Kategoria: MikroTik | Tagi: mikrotik, wlan | Autor: Bartłomiej Gałęzia

Należy:

1. Dodać interfejs wlan1 do bridge1:

Bridge -> Ports -> [+] ->
-> Interface -> wlan1
-> Bridge -> bridge1
-> OK

2. Ustawić hasło do sieci

Wireless -> [zakładka] Security Profiles -> [przycisk] "+" ->
-> Name -> "WLAN pass" -> WPA PSK -> [uncheck] -> WPA2 Pre-Shared-Key -> "supertajnehaslo"
-> OK

3. Ustawić tryb pracy i nazwę sieci (SSID):

Wireless -> [zakładka] Interfaces -> wlan1 -> [zakładka] Wireless -> 
-> [przycisk] Advanced Mode
-> Mode -> ap bridge -> SSID -> "MikroWLAN" -> Security Profile -> "WLAN pass" -> OK

4. Włączyć interfejs wlan1:

Interfaces -> wlan1 -> [przycisk] enable

Raspberry Pi Static IP - LAN & WLAN Kategoria: Raspberry PI | Tagi: raspi, wlan | Autor: Bartłomiej Gałęzia

sudo vim /etc/dhcpcd.conf
interface eth0

static ip_address=192.168.1.101/24
static routers=192.168.1.1
static domain_name_servers=192.168.1.1

interface wlan0

static ip_address=192.168.0.201/24
static routers=192.168.1.1
static domain_name_servers=192.168.1.1
sudo vim /etc/wpa_supplicant/wpa_supplicant.conf
network={
ssid="NAZWA_SIECI"
psk="HASŁO"
}

źródło: https://botland.com.pl/content/71-jak-ustawic-statyczne-ip-w-raspberry-pi

albo (kiedyś działał sposób powyższy. w nowszej wersji systemu już nie)

sudo vim /etc/network/interfaces
auto eth0
iface eth0 inet static
address 192.168.0.2
netmask 255.255.0.0
gateway 192.168.0.1
dns-nameservers 8.8.8.8
reboot