~ubuntu-branches/ubuntu/natty/freeradius/natty-updates

« back to all changes in this revision

Viewing changes to raddb/snmp.conf

  • Committer: Bazaar Package Importer
  • Author(s): Josip Rodin
  • Date: 2009-11-23 03:57:37 UTC
  • mfrom: (1.2.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 28.
  • Revision ID: james.westby@ubuntu.com-20091123035737-zsgtzhfych8hir68
Tags: 2.1.7+dfsg-1
* Adopting the package, closes: #536623.
* New upstream version, closes: #513484.
  + Fixes the blooper in unlang evaluation logic, closes: #526175.
* Used quilt (and added README.source), and moved upstream file patching
  into debian/patches/. The source is no longer in collab-maint git
  (to make it simpler for me to finally get this out the door), but
  kept the .gitignore should we need that again.
* Dropped the dialup_admin/bin/backup_radacct patch (integrated upstream).
* Dropped the raddb/Makefile patch (problem no longer exists upstream).
* Dropped the lib/packet.c lib/radius.c main/listen.c patches (was from
  upstream 2.0.5 anyway).
* Dropped references to otp.conf, it no longer exists upstream.
  Keep removing the conffile statoverride in prerm.
* Dropped references to snmp.conf, it no longer exists upstream.
  Keep removing the conffile statoverride in prerm.
* Ship /etc/freeradius/modules/* in the freeradius package.
* Stop shipping sites-enabled symlinks in the package and instead create
  them only on initial install, thanks to Matej Vela, closes: #533396.
* Add export PATH="${PATH:+$PATH:}/usr/sbin:/sbin" to the init script
  at the request of John Morrissey, closes: #550143.
* Stop installing /var/run/freeradius in the package to silence Lintian.
  The init script already recreates it at will.
* Remove executable bit from example.pl to silence Lintian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# -*- text -*-
2
 
##
3
 
## snmp.conf -- snmp configuration directives
4
 
##
5
 
##      $Id: snmp.conf,v 1.4 2007/12/31 03:31:16 aland Exp $
6
 
 
7
 
#######################################################################
8
 
#
9
 
#  SNMP configuration
10
 
#
11
 
#  NOTE: This part is only working if your radiusd is compiled with SNMP
12
 
#  support.
13
 
#
14
 
#  smux_password: Password used for SMUX registration.
15
 
#
16
 
#  Specifies password used when connecting to the SNMP master agent.
17
 
#  This must match the password as configured on the agent. The OID
18
 
#  used to register the radius subagent is 1.3.6.1.4.1.11344.1.1.1.
19
 
#  A sample entry for the ucd-snmp deamon looks like this:
20
 
#
21
 
#  smuxpeer .1.3.6.1.4.1.11344.1.1.1 verysecret
22
 
#
23
 
#  A sample entry for AIX 4.3 is:
24
 
#
25
 
#  smux 1.3.6.1.4.1.11344.1.1.1 verysecret
26
 
#
27
 
#  The default password is an empty password.
28
 
#
29
 
#smux_password = verysecret
30
 
 
31
 
#
32
 
#  snmp_write_access:
33
 
#
34
 
#  Controls if write access to the radiusd via SNMP is enabled or not.
35
 
#  Set this value to yes, if you want to be able to reload radiusd from
36
 
#  your network management station.
37
 
#
38
 
#  For this to work, you also have to make sure that your master agent
39
 
#  is configured to allow SNMP set requests. For security reasons, this
40
 
#  setting defaults to no.
41
 
#
42
 
# allowed values: {no, yes}
43
 
#
44
 
#snmp_write_access = yes
45
 
 
46