Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
cisco [2012/07/20 09:41] greebo |
cisco [2015/05/21 15:01] (current) zagi [Cisco config tips] |
||
|---|---|---|---|
| Line 269: | Line 269: | ||
| no autostate | no autostate | ||
| no keepalive | no keepalive | ||
| + | |||
| + | == Wireless == | ||
| + | dot11 ssid TEST1 | ||
| + | mbssid guest-mode | ||
| + | |||
| + | dot11 ssid TEST2 | ||
| + | mbssid guest-mode | ||
| + | |||
| + | Then you have to enable mbssid globally on your radio-interface: | ||
| + | |||
| + | interface Dot11Radio0 | ||
| + | mbssid | ||
| + | ssid TEST1 | ||
| + | ssid TEST2 | ||
| + | | ||
| + | interface Dot11Radio1 | ||
| + | mbssid | ||
| + | ssid TEST1 | ||
| + | ssid TEST2 | ||
| + | | ||
| + | ==== Cisco bash policer script ==== | ||
| + | |||
| + | <code bash> | ||
| + | #!/bin/bash | ||
| + | # tnt.aufbix.org | ||
| + | # | ||
| + | cir=$(($1*1024*1000)) | ||
| + | nburst=$(($cir*3/ | ||
| + | eburst=$(($nburst*2)) | ||
| + | echo " | ||
| + | echo "class class-default" | ||
| + | echo " | ||
| + | |||
| + | </ | ||
| + | |||

