next up previous
Next: manager user Up: Configuration Previous: debug

access lists

Access control. Use Regular Expressions syntax. All connections in tacppd controlled via access lists. It used for control TCP and UDP connections, also it control per-user manager access.

! access list

access 1

 permit ^127.0.0

 permit ^192.168.0

 exit

access 2

 permit ^127.0.0

 deny ^192.168.2.3$

 permit ^192.168.2

 exit

access 3

 permit ^127.0.0

 permit ^192.168.0

 permit ^172.17.35

 exit

Access list checks from begin to end. If any rule permit something, than no more checks. If any rule deny, no more checking too. If no any match, than it mean deny.

access list - control access to listeners and for users "access 1 permit ^127.0.0" 1 - number of access list (1-32000) ^127.0.0 - regular expression you can use usual regular expressions, like: ^127.0.0.1$ and so on



2005-07-21