home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / boot / i386 / rescue / etc / security / access.conf next >
Text File  |  2006-11-29  |  4KB  |  115 lines

  1. # Login access control table.
  2. # Comment line must start with "#", no space at front.
  3. # Order of lines is important.
  4. #
  5. # When someone logs in, the table is scanned for the first entry that
  6. # matches the (user, host) combination, or, in case of non-networked
  7. # logins, the first entry that matches the (user, tty) combination.  The
  8. # permissions field of that table entry determines whether the login will 
  9. # be accepted or refused.
  10. # Format of the login access control table is three fields separated by a
  11. # ":" character:
  12. #
  13. # [Note, if you supply a 'fieldsep=|' argument to the pam_access.so
  14. # module, you can change the field separation character to be
  15. # '|'. This is useful for configurations where you are trying to use
  16. # pam_access with X applications that provide PAM_TTY values that are
  17. # the display variable like "host:0".]
  18. #     permission : users : origins
  19. # The first field should be a "+" (access granted) or "-" (access denied)
  20. # character. 
  21. #
  22. # The second field should be a list of one or more login names, group
  23. # names, or ALL (always matches). A pattern of the form user@host is
  24. # matched when the login name matches the "user" part, and when the
  25. # "host" part matches the local machine name.
  26. #
  27. # The third field should be a list of one or more tty names (for
  28. # non-networked logins), host names, domain names (begin with "."), host
  29. # addresses, internet network numbers (end with "."), ALL (always
  30. # matches), NONE (matches no tty on non-networked logins) or
  31. # LOCAL (matches any string that does not contain a "." character).
  32. #
  33. # You can use @netgroupname in host or user patterns; this even works
  34. # for @usergroup@@hostgroup patterns.
  35. #
  36. # The EXCEPT operator makes it possible to write very compact rules.
  37. #
  38. # The group file is searched only when a name does not match that of the
  39. # logged-in user. Both the user's primary group is matched, as well as
  40. # groups in which users are explicitly listed.
  41. #
  42. # TTY NAMES: Must be in the form returned by ttyname(3) less the initial
  43. # "/dev" (e.g. tty1 or vc/1)
  44. #
  45. ##############################################################################
  46. # Disallow non-root logins on tty1
  47. #
  48. #-:ALL EXCEPT root:tty1
  49. # Disallow console logins to all but a few accounts.
  50. #
  51. #-:ALL EXCEPT wheel shutdown sync:LOCAL
  52. #
  53. # Disallow non-local logins to privileged accounts (group wheel).
  54. #
  55. #-:wheel:ALL EXCEPT LOCAL .win.tue.nl
  56. #
  57. # Some accounts are not allowed to login from anywhere:
  58. #
  59. #-:wsbscaro wsbsecr wsbspac wsbsym wscosor wstaiwde:ALL
  60. #
  61. # All other accounts are allowed to login from anywhere.
  62. #
  63. ##############################################################################
  64. # All lines from here up to the end are building a more complex example.
  65. ##############################################################################
  66. #
  67. # User "root" should be allowed to get access via cron .. tty5 tty6.
  68. #+ : root : cron crond :0 tty1 tty2 tty3 tty4 tty5 tty6
  69. #
  70. # User "root" should be allowed to get access from hosts with ip addresses.
  71. #+ : root : 192.168.200.1 192.168.200.4 192.168.200.9
  72. #+ : root : 127.0.0.1
  73. #
  74. # User "root" should get access from network 192.168.201.
  75. # This term will be evaluated by string matching.
  76. # comment: It might be better to use network/netmask instead.
  77. #          The same is 192.168.201.0/24 or 192.168.201.0/255.255.255.0
  78. #+ : root : 192.168.201.
  79. #
  80. # User "root" should be able to have access from domain.
  81. # Uses string matching also.
  82. #+ : root : .foo.bar.org
  83. #
  84. # User "root" should be denied to get access from all other sources. 
  85. #- : root : ALL
  86. #
  87. # User "foo" and members of netgroup "nis_group" should be
  88. # allowed to get access from all sources.
  89. # This will only work if netgroup service is available.
  90. #+ : @nis_group foo : ALL
  91. #
  92. # User "john" should get access from ipv4 net/mask
  93. #+ : john : 127.0.0.0/24
  94. #
  95. # User "john" should get access from ipv4 as ipv6 net/mask
  96. #+ : john : ::ffff:127.0.0.0/127
  97. #
  98. # User "john" should get access from ipv6 host address
  99. #+ : john : 2001:4ca0:0:101::1
  100. #
  101. # User "john" should get access from ipv6 host address (same as above)
  102. #+ : john : 2001:4ca0:0:101:0:0:0:1
  103. #
  104. # User "john" should get access from ipv6 net/mask
  105. #+ : john : 2001:4ca0:0:101::/64
  106. #
  107. # All other users should be denied to get access from all sources.
  108. #- : ALL : ALL 
  109.