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 18:17] – 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 '' |
- | configure terminal | + | * to see current configuration '' |
- | dot11 ssid filiminAtHarrison | + | * you can cut/past multiple commands/ |
- | ap(config-ssid)# | + | * see current virtual lans: '' |
- | ap(config-ssid)# | + | * fastethernet abbreviation is '' |
- | ap(config)# | + | * change hostname: '' |
- | ap(config-ssid)# | + | * '' |
- | ap(config-ssid)# | + | * set the channel only with physical Radio0 and not the " |
- | ap(config-ssid)#wpa-psk ascii testing123 | + | * 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)# | |
- | ap(config)# | + | router(config-subif)#ip helper-address address_of_server |
- | ap(config-if)#mbssid | + | router(config-subif)#end |
- | ap(config-if)# | + | |
- | ap(config-if)#encryption vlan 3 mode ciphers aes-ccm | + | |
- | filiminAtWIN mapped to vlan 1 | + | |
- | filiminAtHarrison mapped to vlan 2 | + | |
</ | </ | ||
+ | * 8266 with Arduino Wi-Fi library seem happiest with '' | ||
- | ==== References ==== | + | ==== Multiple SSIDs example |
- | * https:// | + | |
- | * https:// | + | |
- | * https:// | + | |
- | * https:// | + | |
- | * https:// | + | |
- | * https:// | + | |
- | + | ||
- | ==== Working Configuration | + | |
< | < | ||
config t | config t | ||
dot11 ssid LAB2 | dot11 ssid LAB2 | ||
authentication open | authentication open | ||
- | authentication key-management wpa version 2 | + | authentication key-management wpa |
+ | ! authentication key-management wpa version 2 | ||
wpa-psk ascii testing123 | wpa-psk ascii testing123 | ||
vlan 2 | vlan 2 | ||
Line 41: | Line 31: | ||
int dot11radio0 | int dot11radio0 | ||
mbssid | mbssid | ||
+ | !channel 2412 | ||
+ | !channel 2437 | ||
+ | channel 2462 | ||
encryption vlan 2 mode ciphers aes-ccm tkip | encryption vlan 2 mode ciphers aes-ccm tkip | ||
+ | ! encryption vlan 2 mode ciphers aes-ccm | ||
ssid LAB2 | ssid LAB2 | ||
no shut | no shut | ||
Line 51: | Line 45: | ||
encapsulation dot1Q 2 native | encapsulation dot1Q 2 native | ||
exit | 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 t | config t | ||
- | dot11 ssid LAB5 | + | dot11 ssid LAB4 |
authentication open | authentication open | ||
- | authentication key-management wpa version 2 | + | authentication key-management wpa |
+ | ! authentication key-management wpa version 2 | ||
wpa-psk ascii testing123 | wpa-psk ascii testing123 | ||
vlan 4 | vlan 4 | ||
Line 62: | Line 83: | ||
int dot11radio0 | int dot11radio0 | ||
mbssid | mbssid | ||
- | encryption vlan 4 mode ciphers aes-ccm tkip | + | ! encryption vlan 4 mode ciphers aes-ccm tkip |
- | ssid LAB5 | + | encryption vlan 4 mode ciphers aes-ccm |
+ | ssid LAB4 | ||
no shut | no shut | ||
exit | exit | ||
Line 73: | Line 95: | ||
encapsulation dot1Q 4 | encapsulation dot1Q 4 | ||
exit | exit | ||
+ | exit | ||
+ | copy run start | ||
</ | </ | ||
+ | |||
+ | note: see comment about vlans and switchports above. That configuration for the fastethernet **may** be required | ||
+ | |||
+ | ==== References ==== | ||
+ | * https:// | ||
+ | * https:// | ||
+ | * https:// | ||
+ | * https:// | ||
+ | * https:// | ||
+ | * https:// | ||
+ | |||
+ |