mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-01 08:27:59 +00:00
Disable default write access by not setting the write community string.
PR: 91404, 91406
This commit is contained in:
parent
1d6d1f6fa8
commit
5bc188e481
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=154186
@ -15,6 +15,7 @@ trapport := 162
|
||||
|
||||
# Change this!
|
||||
read := "public"
|
||||
# Uncomment line 42 that sets the community string to enable write access.
|
||||
write := "geheim"
|
||||
trap := "mytrap"
|
||||
|
||||
@ -25,8 +26,20 @@ trap := "mytrap"
|
||||
begemotSnmpdDebugDumpPdus = 2
|
||||
begemotSnmpdDebugSyslogPri = 7
|
||||
|
||||
#
|
||||
# Set the read and write communities.
|
||||
#
|
||||
# The default value of the community strings is NULL (note, that this is
|
||||
# different from the empty string). This disables both read and write access.
|
||||
# To enable read access only the read community string must be set. Setting
|
||||
# the write community string enables both read and write access with that
|
||||
# string.
|
||||
#
|
||||
# Be sure to understand the security implications of SNMPv2 - the community
|
||||
# strings are readable on the wire!
|
||||
#
|
||||
begemotSnmpdCommunityString.0.1 = $(read)
|
||||
begemotSnmpdCommunityString.0.2 = $(write)
|
||||
# begemotSnmpdCommunityString.0.2 = $(write)
|
||||
begemotSnmpdCommunityDisable = 1
|
||||
|
||||
# open standard SNMP ports
|
||||
|
Loading…
Reference in New Issue
Block a user