Guest User

Untitled

a guest
Jul 21st, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. To permit access to specific devices on, for example, the CCoIP wifi, apply a config such as this:
  2.  
  3. Interface d0.151
  4. bridge-group 151 input-address-list 751
  5. exit
  6. access-list 700 permit 001d.e07f.xxxx 0000.0000.0000
  7. bridge 1 protocol ieee
  8.  
  9.  
  10. This *should* permit access through the radio sub interface from the highlighted device but deny all other devices. Cisco ACLs implicitly deny all traffic so no deny statement should be needed.
  11.  
  12.  
  13.  
  14. --------------------------------------------------------
  15.  
  16.  
  17. To deny access to specific devices on, for example, the public wifi, apply a config such as this:
  18.  
  19. Interface d0.151
  20. bridge-group 151 input-address-list 751
  21. exit
  22. access-list 751 deny 0026.b0c1.xxxx 0000.0000.0000
  23. access-list 751 deny 001c.b32c.xxxx 0000.0000.0000
  24. access-list 751 permit 0000.0000.0000 ffff.ffff.ffff
  25. bridge 1 protocol ieee
  26.  
  27. This *should* deny access through the radio sub interface from those 2 highlighted devices but allow all other devices to communicate as normal.
Add Comment
Please, Sign In to add comment