| 73 |
|
# The internal Queue's can be monitored. This specifies |
| 74 |
|
# the interval, in seconds, at which their state should |
| 75 |
|
# be monitored. |
| 76 |
< |
Queue.MonitorInterval=15 |
| 76 |
> |
Queue.MonitorInterval=300 |
| 77 |
|
# The maximum size a Queue can be before items are |
| 78 |
|
# dropped when new ones arrive. |
| 79 |
|
Queue.SizeLimit=1000 |
| 114 |
|
#### Filter configuration |
| 115 |
|
############################################################ |
| 116 |
|
|
| 117 |
< |
# A Filter accepts data from hosts on both a TCP port |
| 118 |
< |
# and a UDP port. They are specified here. |
| 117 |
> |
# A Filter accepts data from hosts on a UDP port. It is |
| 118 |
> |
# specified here. |
| 119 |
|
Filter.UDPListenPort=4589 |
| 120 |
– |
Filter.TCPListenPort=4589 |
| 120 |
|
|
| 121 |
|
# Filters contain plugins for checking the data passing |
| 122 |
|
# through them. This plugins do the job of "filtering". |
| 124 |
|
# contained in. |
| 125 |
|
Filter.PluginsPackage=uk.org.iscream.cms.server.filter.plugins |
| 126 |
|
# And the names of the plugins to be loaded. |
| 127 |
< |
Filter.Plugins=TypeChecker;EnforceEssentialData;SourceChecker;KeyChecker |
| 127 |
> |
Filter.Plugins=TypeChecker;EnforceEssentialData;SourceChecker |
| 128 |
|
|
| 129 |
|
# The special filter known as the "Root Filter" needs |
| 130 |
|
# a name within the system. |
| 136 |
|
# filter - giving a tree structure. |
| 137 |
|
Filter.parentFilter=root |
| 138 |
|
|
| 139 |
< |
# A Filter can accept data through UDP, TCP, or from |
| 139 |
> |
# A Filter can accept data through UDP, or from |
| 140 |
|
# an upstream Filter (CORBA). These methods can be |
| 141 |
|
# individually turned of on a filter. The default |
| 142 |
|
# is to have them all on. |
| 143 |
|
# (comment or set to 0 to disable) |
| 145 |
– |
Filter.ActivateTCPReader=1 |
| 144 |
|
Filter.ActivateUDPReader=1 |
| 145 |
|
Filter.ActivateCORBAReader=1 |
| 146 |
|
|
| 147 |
|
# We can also specify Access Control Lists for the |
| 148 |
< |
# TCP and UDP inputs of the Filters. One might want |
| 149 |
< |
# something restrictive like this: |
| 148 |
> |
# UDP input of the Filters. One might want something |
| 149 |
> |
# restrictive like this: |
| 150 |
|
# |
| 153 |
– |
# Filter.TCPACL=DEFAULT:DENY;*.example.com:ALLOW |
| 151 |
|
# Filter.UDPACL=DEFAULT:DENY;*.example.com:ALLOW |
| 155 |
– |
Filter.TCPACL=DEFAULT:ALLOW |
| 152 |
|
Filter.UDPACL=DEFAULT:ALLOW |
| 153 |
|
|
| 154 |
|
# A Filter plugin called the SourceChecker verifies |
| 159 |
|
# Filter.SourceCheckerPluginACL=DEFAULT:DENY;*.example.com:ALLOW |
| 160 |
|
Filter.SourceCheckerPluginACL=DEFAULT:ALLOW |
| 161 |
|
|
| 166 |
– |
# Enforce that hosts use the key based authentication. |
| 167 |
– |
# (comment or set to 0 to disable) |
| 168 |
– |
Filter.EnforceHostAuth=1 |
| 162 |
|
|
| 170 |
– |
# Length of keys to use in authentication. |
| 171 |
– |
Filter.KeyLength=15 |
| 172 |
– |
|
| 173 |
– |
|
| 163 |
|
############################################################ |
| 164 |
|
#### Root filter interfaces configuration |
| 165 |
|
############################################################ |
| 210 |
|
# for all hosts to be 'filter1'. This can be a list. |
| 211 |
|
Host.filter=filter1; |
| 212 |
|
|
| 213 |
< |
# Hosts send data every UDPUpdateTime, in seconds, and then |
| 214 |
< |
# perform a heartbeat every TCPUpdateTime, in seconds. |
| 215 |
< |
Host.UDPUpdateTime=10 |
| 216 |
< |
Host.TCPUpdateTime=60 |
| 213 |
> |
# Hosts send data every UDPUpdateTime, in seconds. |
| 214 |
> |
Host.UDPUpdateTime=60 |
| 215 |
> |
|
| 216 |
> |
# How long a hosts config is valid for (a TTL effectively) |
| 217 |
> |
# after this time, in seconds, has passed a host should |
| 218 |
> |
# consider it's configuration invalid and check for a new |
| 219 |
> |
# configuration as soon as it can. |
| 220 |
> |
Host.ConfigTTL=3600 |
| 221 |
|
|
| 222 |
|
# We can run service checks on a host. The java package |
| 223 |
|
# which contains them is specified here. |