Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
lwc:hardware:ciscoaironet1130 [2021/02/12 10:51] – John Harrison | lwc:hardware:ciscoaironet1130 [2021/03/16 14:48] (current) – John Harrison | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ==== Notes from things I tried ==== | + | ===== General Information |
+ | * serial port is 9600 baud | ||
+ | * to turn something off, put a '' | ||
+ | * to see current configuration '' | ||
+ | * you can cut/past multiple commands/ | ||
+ | * see current virtual lans: '' | ||
+ | * fastethernet abbreviation is '' | ||
+ | * change hostname: '' | ||
+ | * '' | ||
+ | * set the channel only with physical Radio0 and not the " | ||
+ | * vlans appear to be intended to be used only with Cisco switchports and perhaps when they are in trunk mode | ||
+ | * it appears [[https:// | ||
+ | < | ||
+ | router(config)# | ||
+ | router(config-subif)# | ||
+ | router(config-subif)# | ||
+ | </ | ||
+ | * 8266 with Arduino Wi-Fi library seem happiest with '' | ||
+ | ==== Multiple SSIDs example ==== | ||
< | < | ||
- | configure terminal | + | config t |
- | dot11 ssid filiminAtHarrison | + | dot11 ssid LAB2 |
- | ap(config-ssid)# | + | authentication open |
- | ap(config-ssid)#mbssid guest-mode | + | authentication key-management wpa |
- | ap(config)# | + | ! authentication key-management wpa version |
- | ap(config-ssid)#authentication open | + | wpa-psk ascii testing123 |
- | ap(config-ssid)#authentication key-management wpa version 2 | + | vlan 2 |
- | ap(config-ssid)# | + | mbssid guest-mode |
- | + | exit | |
- | ----- | + | int dot11radio0 |
- | + | mbssid | |
- | ap(config)#int dot11radio0 | + | !channel 2412 |
- | ap(config-if)# | + | !channel 2437 |
- | ap(config-if)#encryption vlan 2 mode ciphers aes-ccm | + | channel 2462 |
- | ap(config-if)#encryption vlan 3 mode ciphers aes-ccm | + | encryption vlan 2 mode ciphers aes-ccm tkip |
- | filiminAtWIN mapped to vlan 1 | + | ! encryption vlan 2 mode ciphers aes-ccm |
- | filiminAtHarrison mapped to vlan 2 | + | ssid LAB2 |
+ | no shut | ||
+ | exit | ||
+ | interface dot11Radio 0.2 | ||
+ | encapsulation dot1Q 2 native | ||
+ | exit | ||
+ | int fa0.2 | ||
+ | encapsulation dot1Q 2 native | ||
+ | exit | ||
+ | exit | ||
+ | ! -------------------- | ||
+ | config t | ||
+ | dot11 ssid LAB3 | ||
+ | authentication open | ||
+ | authentication key-management wpa | ||
+ | ! authentication key-management wpa version 2 | ||
+ | wpa-psk ascii testing123 | ||
+ | vlan 3 | ||
+ | mbssid guest-mode | ||
+ | exit | ||
+ | int dot11radio0 | ||
+ | mbssid | ||
+ | ! encryption vlan 3 mode ciphers aes-ccm tkip | ||
+ | encryption vlan 3 mode ciphers aes-ccm | ||
+ | ssid LAB3 | ||
+ | no shut | ||
+ | exit | ||
+ | interface dot11Radio 0.3 | ||
+ | encapsulation dot1Q 3 | ||
+ | bridge-group 1 | ||
+ | exit | ||
+ | int fa0.3 | ||
+ | encapsulation dot1Q 3 | ||
+ | exit | ||
+ | exit | ||
+ | ! -------------------- | ||
+ | config | ||
+ | dot11 ssid LAB4 | ||
+ | authentication open | ||
+ | authentication key-management wpa | ||
+ | ! authentication key-management wpa version 2 | ||
+ | wpa-psk ascii testing123 | ||
+ | vlan 4 | ||
+ | mbssid guest-mode | ||
+ | exit | ||
+ | int dot11radio0 | ||
+ | mbssid | ||
+ | ! encryption vlan 4 mode ciphers aes-ccm | ||
+ | encryption | ||
+ | ssid LAB4 | ||
+ | no shut | ||
+ | exit | ||
+ | interface dot11Radio 0.4 | ||
+ | encapsulation dot1Q 4 | ||
+ | bridge-group | ||
+ | exit | ||
+ | int fa0.4 | ||
+ | encapsulation dot1Q 4 | ||
+ | exit | ||
+ | exit | ||
+ | copy run start | ||
</ | </ | ||
+ | |||
+ | note: see comment about vlans and switchports above. That configuration for the fastethernet **may** be required | ||
==== References ==== | ==== References ==== | ||
- | * https:// | + | * https:// |
- | * https:// | + | * https:// |
* https:// | * https:// | ||
* https:// | * https:// | ||
* https:// | * https:// | ||
* https:// | * https:// | ||
- | * | + |