Wlan: Unterschied zwischen den Versionen

Aus LaborWiki
Wechseln zu: Navigation, Suche
KKeine Bearbeitungszusammenfassung
(Update auf den neusten Stand der Infrastruktur)
 
(15 dazwischenliegende Versionen von 2 Benutzern werden nicht angezeigt)
Zeile 1: Zeile 1:
'''Hardware:'''
== Wie verbinde ich mich? ==


* 2x [http://www.mikrotik-shop.de/product_info.php?info=p304_MikroTik-RouterBOARD-411-L3--1-x-LAN--1-x-miniPCI-.html RB411]
* SSID: l1
* CPU ar7130 300Mhz, 200 bogomips, aes: mips16
* Passwort: blafoo234211sicher
* RAM 32MiB
* Verschlüsselung: WPA2
* NAND 64MiB
* LAN 100-Tx RJ-45
* 2 x WLAN ar5416+ar5133 mini-pci abgn
* EIA232 (115200bit/s)
* 10-28V (Plus ist innen)
* poe non standart (4,5 +, 7,8 -)


'''Software:'''
== Hardware ==


* openwrt svn xxxx
* 4x MSM460 APs (abgn dual-band)
* ath9k treiber
* elf bauen -> tftp -> bootp/dhcp boot -> wget2nand dateinamen die benötigt werden finden sich im script


'''Config Beispiel:'''
* Verwaltung durch einen HP MSM720 Controller


/etc/config/wireless
== Client Config ==
config wifi-device  wlan0
        option type    mac80211
        option country  DE
        option channel  1
        option ieee80211d 1
        option hwmode_11n g
        option ht_capab [HT40+][SHORT-GI-40][DSSS_CCK-40]


wpa_supplicant


 
  network={
  config wifi-iface
ssid="l1"
        option device  wlan0
proto=WPA2
        option network lsec
key_mgmt=WPA-PSK
        option mode    ap
pairwise=CCMP
        option ssid     l1
group=CCMP
        option encryption psk2
psk="blafoo234211sicher"
        option key blafoo234711sicher
}
 
config wifi-iface
      option device wifi0
      option network lsec
      option ssid lsec
      option mode ap
      option encryption psk2
      option server 10.13.37.1
      option key foobar
 


[[Category:Admin]]
[[Category:Admin]]
[[Category:HowTo]]
[[Category:HowTo]]

Aktuelle Version vom 23. Februar 2018, 18:13 Uhr

Wie verbinde ich mich?[Bearbeiten | Quelltext bearbeiten]

  • SSID: l1
  • Passwort: blafoo234211sicher
  • Verschlüsselung: WPA2

Hardware[Bearbeiten | Quelltext bearbeiten]

  • 4x MSM460 APs (abgn dual-band)
  • Verwaltung durch einen HP MSM720 Controller

Client Config[Bearbeiten | Quelltext bearbeiten]

wpa_supplicant

network={
	ssid="l1"
	proto=WPA2
	key_mgmt=WPA-PSK
	pairwise=CCMP
	group=CCMP
	psk="blafoo234211sicher"
}