-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcisco_ap-conf-performance.ios
84 lines (62 loc) · 1.45 KB
/
cisco_ap-conf-performance.ios
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
!-----------------------------------------------------
! Cisco Aironet AIR-CAP3602I Setup Script
!-----------------------------------------------------
enable
configure terminal
! physical interface for wifi - 1 is for 5GHz
interface Dot11Radio 1
channel 36
ssid CMProject-5G
mbssid
rts threshold 200
no shutdown
exit
! physical interface for wifi - 0 is for 2.4GHz
interface Dot11Radio 0
channel 13
ssid CMProject
mbssid
rts threshold 200
no shutdown
exit
dot11 ssid CMProject
authentication open
vlan 1
mbssid guest-mode
exit
dot11 ssid CMProject-5G
authentication open
vlan 1
mbssid guest-mode
exit
! virtual wifi interface in vlan 1 for 2.4GHz
interface Dot11Radio 0.1
encapsulation dot1q 1
bridge-group 1
exit
! virtual wifi interface in vlan 1 for 5GHz
interface Dot11Radio 1.1
encapsulation dot1q 1
bridge-group 1
exit
! ethernet interface to allow for internet connection for vlan 1
interface GigabitEthernet 0.1
encapsulation dot1q 1
bridge-group 1
exit
! bvi = bridge virtual interface
! this interface is used to bridge wireless devices
interface bvi 1
ip address 10.0.0.100 255.255.255.0
no shutdown
exit
! setup dhcp
service dhcp
ip dhcp excluded-address 10.0.0.100 10.0.0.254
ip dhcp pool cmproject
network 10.0.0.0 255.255.255.0
default-router 10.0.0.100
exit
end
write
disable