Advertisement
Guest User

Untitled

a guest
Apr 4th, 2019
274
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.13 KB | None | 0 0
  1. # This is a configuration file for Zabbix proxy daemon
  2. # To get more information about Zabbix, visit http://www.zabbix.com
  3.  
  4. ############ GENERAL PARAMETERS #################
  5.  
  6. ### Option: ProxyMode
  7. # Proxy operating mode.
  8. # 0 - proxy in the active mode
  9. # 1 - proxy in the passive mode
  10. #
  11. # Mandatory: no
  12. # Default:
  13. # ProxyMode=0
  14. ProxyMode=0
  15.  
  16. ### Option: Server
  17. # If ProxyMode is set to active mode:
  18. # IP address or DNS name of Zabbix server to get configuration data from and send data to.
  19. # If ProxyMode is set to passive mode:
  20. # List of comma delimited IP addresses, optionally in CIDR notation, or DNS names of Zabbix server.
  21. # Incoming connections will be accepted only from the addresses listed here.
  22. # If IPv6 support is enabled then '127.0.0.1', '::127.0.0.1', '::ffff:127.0.0.1' are treated equally
  23. # and '::/0' will allow any IPv4 or IPv6 address.
  24. # '0.0.0.0/0' can be used to allow any IPv4 address.
  25. # Example: Server=127.0.0.1,192.168.1.0/24,::1,2001:db8::/32,zabbix.example.com
  26. #
  27. # Mandatory: yes
  28. # Default:
  29. # Server=
  30.  
  31. Server=100.64.2.30
  32.  
  33. ### Option: ServerPort
  34. # Port of Zabbix trapper on Zabbix server.
  35. # For a proxy in the passive mode this parameter will be ignored.
  36. #
  37. # Mandatory: no
  38. # Range: 1024-32767
  39. # Default:
  40. # ServerPort=10051
  41.  
  42. ### Option: Hostname
  43. # Unique, case sensitive Proxy name. Make sure the Proxy name is known to the server!
  44. # Value is acquired from HostnameItem if undefined.
  45. #
  46. # Mandatory: no
  47. # Default:
  48. # Hostname=
  49.  
  50. Hostname=ITL-hz-esxi-dell08-zabbix-proxy
  51.  
  52. ### Option: HostnameItem
  53. # Item used for generating Hostname if it is undefined.
  54. # Ignored if Hostname is defined.
  55. #
  56. # Mandatory: no
  57. # Default:
  58. # HostnameItem=system.hostname
  59.  
  60. ### Option: ListenPort
  61. # Listen port for trapper.
  62. #
  63. # Mandatory: no
  64. # Range: 1024-32767
  65. # Default:
  66. # ListenPort=10051
  67.  
  68. ### Option: SourceIP
  69. # Source IP address for outgoing connections.
  70. #
  71. # Mandatory: no
  72. # Default:
  73. # SourceIP=
  74.  
  75. ### Option: LogType
  76. # Specifies where log messages are written to:
  77. # system - syslog
  78. # file - file specified with LogFile parameter
  79. # console - standard output
  80. #
  81. # Mandatory: no
  82. # Default:
  83. # LogType=file
  84.  
  85. ### Option: LogFile
  86. # Log file name for LogType 'file' parameter.
  87. #
  88. # Mandatory: yes, if LogType is set to file, otherwise no
  89. # Default:
  90. # LogFile=
  91.  
  92. LogFile=/var/log/zabbix/zabbix_proxy.log
  93.  
  94. ### Option: LogFileSize
  95. # Maximum size of log file in MB.
  96. # 0 - disable automatic log rotation.
  97. #
  98. # Mandatory: no
  99. # Range: 0-1024
  100. # Default:
  101. # LogFileSize=1
  102.  
  103. LogFileSize=7
  104.  
  105. ### Option: DebugLevel
  106. # Specifies debug level:
  107. # 0 - basic information about starting and stopping of Zabbix processes
  108. # 1 - critical information
  109. # 2 - error information
  110. # 3 - warnings
  111. # 4 - for debugging (produces lots of information)
  112. # 5 - extended debugging (produces even more information)
  113. #
  114. # Mandatory: no
  115. # Range: 0-5
  116. # Default:
  117. # DebugLevel=3
  118.  
  119. ### Option: EnableRemoteCommands
  120. # Whether remote commands from Zabbix server are allowed.
  121. # 0 - not allowed
  122. # 1 - allowed
  123. #
  124. # Mandatory: no
  125. # Default:
  126. # EnableRemoteCommands=0
  127.  
  128. ### Option: LogRemoteCommands
  129. # Enable logging of executed shell commands as warnings.
  130. # 0 - disabled
  131. # 1 - enabled
  132. #
  133. # Mandatory: no
  134. # Default:
  135. # LogRemoteCommands=0
  136.  
  137. ### Option: PidFile
  138. # Name of PID file.
  139. #
  140. # Mandatory: no
  141. # Default:
  142. # PidFile=/tmp/zabbix_proxy.pid
  143.  
  144. PidFile=/var/run/zabbix/zabbix_proxy.pid
  145.  
  146. ### Option: SocketDir
  147. # IPC socket directory.
  148. # Directory to store IPC sockets used by internal Zabbix services.
  149. #
  150. # Mandatory: no
  151. # Default:
  152. # SocketDir=/tmp
  153.  
  154. SocketDir=/var/run/zabbix
  155.  
  156. ### Option: DBHost
  157. # Database host name.
  158. # If set to localhost, socket is used for MySQL.
  159. # If set to empty string, socket is used for PostgreSQL.
  160. #
  161. # Mandatory: no
  162. # Default:
  163. # DBHost=localhost
  164.  
  165. ### Option: DBName
  166. # Database name.
  167. # For SQLite3 path to database file must be provided. DBUser and DBPassword are ignored.
  168. # Warning: do not attempt to use the same database Zabbix server is using.
  169. #
  170. # Mandatory: yes
  171. # Default:
  172. # DBName=
  173.  
  174. DBName=zabbix
  175.  
  176. ### Option: DBSchema
  177. # Schema name. Used for IBM DB2 and PostgreSQL.
  178. #
  179. # Mandatory: no
  180. # Default:
  181. # DBSchema=
  182. DBSchema=public
  183.  
  184. ### Option: DBUser
  185. # Database user. Ignored for SQLite.
  186. #
  187. # Default:
  188. # DBUser=
  189.  
  190. DBUser=***
  191.  
  192. ### Option: DBPassword
  193. # Database password. Ignored for SQLite.
  194. # Comment this line if no password is used.
  195. #
  196. # Mandatory: no
  197. # Default:
  198. # DBPassword=
  199. DBPassword=***
  200.  
  201. ### Option: DBSocket
  202. # Path to MySQL socket.
  203. #
  204. # Mandatory: no
  205. # Default:
  206. # DBSocket=
  207.  
  208. # Option: DBPort
  209. # Database port when not using local socket. Ignored for SQLite.
  210. #
  211. # Mandatory: no
  212. # Default:
  213. # DBPort=
  214. DBPort=5432
  215.  
  216. ######### PROXY SPECIFIC PARAMETERS #############
  217.  
  218. ### Option: ProxyLocalBuffer
  219. # Proxy will keep data locally for N hours, even if the data have already been synced with the server.
  220. # This parameter may be used if local data will be used by third party applications.
  221. #
  222. # Mandatory: no
  223. # Range: 0-720
  224. # Default:
  225. # ProxyLocalBuffer=0
  226.  
  227. ### Option: ProxyOfflineBuffer
  228. # Proxy will keep data for N hours in case if no connectivity with Zabbix Server.
  229. # Older data will be lost.
  230. #
  231. # Mandatory: no
  232. # Range: 1-720
  233. # Default:
  234. # ProxyOfflineBuffer=1
  235.  
  236. ### Option: HeartbeatFrequency
  237. # Frequency of heartbeat messages in seconds.
  238. # Used for monitoring availability of Proxy on server side.
  239. # 0 - heartbeat messages disabled.
  240. # For a proxy in the passive mode this parameter will be ignored.
  241. #
  242. # Mandatory: no
  243. # Range: 0-3600
  244. # Default:
  245. # HeartbeatFrequency=60
  246. HeartbeatFrequency=60
  247.  
  248. ### Option: ConfigFrequency
  249. # How often proxy retrieves configuration data from Zabbix Server in seconds.
  250. # For a proxy in the passive mode this parameter will be ignored.
  251. #
  252. # Mandatory: no
  253. # Range: 1-3600*24*7
  254. # Default:
  255. # ConfigFrequency=3600
  256.  
  257.  
  258. ### Option: DataSenderFrequency
  259. # Proxy will send collected data to the Server every N seconds.
  260. # For a proxy in the passive mode this parameter will be ignored.
  261. #
  262. # Mandatory: no
  263. # Range: 1-3600
  264. # Default:
  265. # DataSenderFrequency=1
  266. DataSenderFrequency=1
  267.  
  268. ############ ADVANCED PARAMETERS ################
  269.  
  270. ### Option: StartPollers
  271. # Number of pre-forked instances of pollers.
  272. #
  273. # Mandatory: no
  274. # Range: 0-1000
  275. # Default:
  276. # StartPollers=5
  277. StartPollers=10
  278.  
  279. ### Option: StartIPMIPollers
  280. # Number of pre-forked instances of IPMI pollers.
  281. # The IPMI manager process is automatically started when at least one IPMI poller is started.
  282. #
  283. # Mandatory: no
  284. # Range: 0-1000
  285. # Default:
  286. # StartIPMIPollers=0
  287.  
  288. ### Option: StartPreprocessors
  289. # Number of pre-forked instances of preprocessing workers.
  290. # The preprocessing manager process is automatically started when preprocessor worker is started.
  291. #
  292. # Mandatory: no
  293. # Range: 1-1000
  294. # Default:
  295. # StartPreprocessors=3
  296. StartPreprocessors=5
  297.  
  298. ### Option: StartPollersUnreachable
  299. # Number of pre-forked instances of pollers for unreachable hosts (including IPMI and Java).
  300. # At least one poller for unreachable hosts must be running if regular, IPMI or Java pollers
  301. # are started.
  302. #
  303. # Mandatory: no
  304. # Range: 0-1000
  305. # Default:
  306. # StartPollersUnreachable=1
  307. StartPollersUnreachable=5
  308.  
  309. ### Option: StartTrappers
  310. # Number of pre-forked instances of trappers.
  311. # Trappers accept incoming connections from Zabbix sender and active agents.
  312. #
  313. # Mandatory: no
  314. # Range: 0-1000
  315. # Default:
  316. # StartTrappers=5
  317. StartTrappers=5
  318.  
  319. ### Option: StartPingers
  320. # Number of pre-forked instances of ICMP pingers.
  321. #
  322. # Mandatory: no
  323. # Range: 0-1000
  324. # Default:
  325. # StartPingers=1
  326. StartPingers=5
  327.  
  328. ### Option: StartDiscoverers
  329. # Number of pre-forked instances of discoverers.
  330. #
  331. # Mandatory: no
  332. # Range: 0-250
  333. # Default:
  334. # StartDiscoverers=1
  335. StartDiscoverers=5
  336.  
  337. ### Option: StartHTTPPollers
  338. # Number of pre-forked instances of HTTP pollers.
  339. #
  340. # Mandatory: no
  341. # Range: 0-1000
  342. # Default:
  343. # StartHTTPPollers=1
  344. StartHTTPPollers=5
  345.  
  346. ### Option: JavaGateway
  347. # IP address (or hostname) of Zabbix Java gateway.
  348. # Only required if Java pollers are started.
  349. #
  350. # Mandatory: no
  351. # Default:
  352. # JavaGateway=
  353.  
  354. ### Option: JavaGatewayPort
  355. # Port that Zabbix Java gateway listens on.
  356. #
  357. # Mandatory: no
  358. # Range: 1024-32767
  359. # Default:
  360. # JavaGatewayPort=10052
  361.  
  362. ### Option: StartJavaPollers
  363. # Number of pre-forked instances of Java pollers.
  364. #
  365. # Mandatory: no
  366. # Range: 0-1000
  367. # Default:
  368. # StartJavaPollers=0
  369.  
  370. ### Option: StartVMwareCollectors
  371. # Number of pre-forked vmware collector instances.
  372. #
  373. # Mandatory: no
  374. # Range: 0-250
  375. # Default:
  376. # StartVMwareCollectors=0
  377.  
  378. ### Option: VMwareFrequency
  379. # How often Zabbix will connect to VMware service to obtain a new data.
  380. #
  381. # Mandatory: no
  382. # Range: 10-86400
  383. # Default:
  384. # VMwareFrequency=60
  385.  
  386. ### Option: VMwarePerfFrequency
  387. # How often Zabbix will connect to VMware service to obtain performance data.
  388. #
  389. # Mandatory: no
  390. # Range: 10-86400
  391. # Default:
  392. # VMwarePerfFrequency=60
  393.  
  394. ### Option: VMwareCacheSize
  395. # Size of VMware cache, in bytes.
  396. # Shared memory size for storing VMware data.
  397. # Only used if VMware collectors are started.
  398. #
  399. # Mandatory: no
  400. # Range: 256K-2G
  401. # Default:
  402. # VMwareCacheSize=8M
  403.  
  404. ### Option: VMwareTimeout
  405. # Specifies how many seconds vmware collector waits for response from VMware service.
  406. #
  407. # Mandatory: no
  408. # Range: 1-300
  409. # Default:
  410. # VMwareTimeout=10
  411.  
  412. ### Option: SNMPTrapperFile
  413. # Temporary file used for passing data from SNMP trap daemon to the proxy.
  414. # Must be the same as in zabbix_trap_receiver.pl or SNMPTT configuration file.
  415. #
  416. # Mandatory: no
  417. # Default:
  418. # SNMPTrapperFile=/tmp/zabbix_traps.tmp
  419.  
  420. SNMPTrapperFile=/var/log/snmptrap/snmptrap.log
  421.  
  422. ### Option: StartSNMPTrapper
  423. # If 1, SNMP trapper process is started.
  424. #
  425. # Mandatory: no
  426. # Range: 0-1
  427. # Default:
  428. # StartSNMPTrapper=0
  429.  
  430. ### Option: ListenIP
  431. # List of comma delimited IP addresses that the trapper should listen on.
  432. # Trapper will listen on all network interfaces if this parameter is missing.
  433. #
  434. # Mandatory: no
  435. # Default:
  436. # ListenIP=0.0.0.0
  437.  
  438. ### Option: HousekeepingFrequency
  439. # How often Zabbix will perform housekeeping procedure (in hours).
  440. # Housekeeping is removing outdated information from the database.
  441. # To prevent Housekeeper from being overloaded, no more than 4 times HousekeepingFrequency
  442. # hours of outdated information are deleted in one housekeeping cycle.
  443. # To lower load on proxy startup housekeeping is postponed for 30 minutes after proxy start.
  444. # With HousekeepingFrequency=0 the housekeeper can be only executed using the runtime control option.
  445. # In this case the period of outdated information deleted in one housekeeping cycle is 4 times the
  446. # period since the last housekeeping cycle, but not less than 4 hours and not greater than 4 days.
  447. #
  448. # Mandatory: no
  449. # Range: 0-24
  450. # Default:
  451. # HousekeepingFrequency=1
  452.  
  453. ### Option: CacheSize
  454. # Size of configuration cache, in bytes.
  455. # Shared memory size, for storing hosts and items data.
  456. #
  457. # Mandatory: no
  458. # Range: 128K-8G
  459. # Default:
  460. # CacheSize=8M
  461. CacheSize=128M
  462.  
  463. ### Option: StartDBSyncers
  464. # Number of pre-forked instances of DB Syncers.
  465. #
  466. # Mandatory: no
  467. # Range: 1-100
  468. # Default:
  469. # StartDBSyncers=4
  470. StartDBSyncers=5
  471.  
  472. ### Option: HistoryCacheSize
  473. # Size of history cache, in bytes.
  474. # Shared memory size for storing history data.
  475. #
  476. # Mandatory: no
  477. # Range: 128K-2G
  478. # Default:
  479. # HistoryCacheSize=16M
  480. HistoryCacheSize=128M
  481.  
  482. ### Option: HistoryIndexCacheSize
  483. # Size of history index cache, in bytes.
  484. # Shared memory size for indexing history cache.
  485. #
  486. # Mandatory: no
  487. # Range: 128K-2G
  488. # Default:
  489. # HistoryIndexCacheSize=4M
  490. HistoryIndexCacheSize=128M
  491.  
  492. ### Option: Timeout
  493. # Specifies how long we wait for agent, SNMP device or external check (in seconds).
  494. #
  495. # Mandatory: no
  496. # Range: 1-30
  497. # Default:
  498. # Timeout=3
  499. Timeout=30
  500.  
  501. ### Option: TrapperTimeout
  502. # Specifies how many seconds trapper may spend processing new data.
  503. #
  504. # Mandatory: no
  505. # Range: 1-300
  506. # Default:
  507. # TrapperTimeout=300
  508.  
  509. ### Option: UnreachablePeriod
  510. # After how many seconds of unreachability treat a host as unavailable.
  511. #
  512. # Mandatory: no
  513. # Range: 1-3600
  514. # Default:
  515. # UnreachablePeriod=45
  516. UnreachablePeriod=45
  517.  
  518. ### Option: UnavailableDelay
  519. # How often host is checked for availability during the unavailability period, in seconds.
  520. #
  521. # Mandatory: no
  522. # Range: 1-3600
  523. # Default:
  524. # UnavailableDelay=60
  525.  
  526. ### Option: UnreachableDelay
  527. # How often host is checked for availability during the unreachability period, in seconds.
  528. #
  529. # Mandatory: no
  530. # Range: 1-3600
  531. # Default:
  532. # UnreachableDelay=15
  533.  
  534. ### Option: ExternalScripts
  535. # Full path to location of external scripts.
  536. # Default depends on compilation options.
  537. # To see the default path run command "zabbix_proxy --help".
  538. #
  539. # Mandatory: no
  540. # Default:
  541. # ExternalScripts=${datadir}/zabbix/externalscripts
  542.  
  543. ExternalScripts=/usr/lib/zabbix/externalscripts
  544.  
  545. ### Option: FpingLocation
  546. # Location of fping.
  547. # Make sure that fping binary has root ownership and SUID flag set.
  548. #
  549. # Mandatory: no
  550. # Default:
  551. # FpingLocation=/usr/sbin/fping
  552.  
  553. ### Option: Fping6Location
  554. # Location of fping6.
  555. # Make sure that fping6 binary has root ownership and SUID flag set.
  556. # Make empty if your fping utility is capable to process IPv6 addresses.
  557. #
  558. # Mandatory: no
  559. # Default:
  560. # Fping6Location=/usr/sbin/fping6
  561.  
  562. ### Option: SSHKeyLocation
  563. # Location of public and private keys for SSH checks and actions.
  564. #
  565. # Mandatory: no
  566. # Default:
  567. # SSHKeyLocation=
  568.  
  569. ### Option: LogSlowQueries
  570. # How long a database query may take before being logged (in milliseconds).
  571. # Only works if DebugLevel set to 3 or 4.
  572. # 0 - don't log slow queries.
  573. #
  574. # Mandatory: no
  575. # Range: 1-3600000
  576. # Default:
  577. # LogSlowQueries=0
  578.  
  579. LogSlowQueries=3000
  580.  
  581. ### Option: TmpDir
  582. # Temporary directory.
  583. #
  584. # Mandatory: no
  585. # Default:
  586. # TmpDir=/tmp
  587.  
  588. ### Option: AllowRoot
  589. # Allow the proxy to run as 'root'. If disabled and the proxy is started by 'root', the proxy
  590. # will try to switch to the user specified by the User configuration option instead.
  591. # Has no effect if started under a regular user.
  592. # 0 - do not allow
  593. # 1 - allow
  594. #
  595. # Mandatory: no
  596. # Default:
  597. # AllowRoot=0
  598.  
  599. ### Option: User
  600. # Drop privileges to a specific, existing user on the system.
  601. # Only has effect if run as 'root' and AllowRoot is disabled.
  602. #
  603. # Mandatory: no
  604. # Default:
  605. # User=zabbix
  606.  
  607. ### Option: Include
  608. # You may include individual files or all files in a directory in the configuration file.
  609. # Installing Zabbix will create include directory in /usr/local/etc, unless modified during the compile time.
  610. #
  611. # Mandatory: no
  612. # Default:
  613. # Include=
  614.  
  615. # Include=/usr/local/etc/zabbix_proxy.general.conf
  616. # Include=/usr/local/etc/zabbix_proxy.conf.d/
  617. # Include=/usr/local/etc/zabbix_proxy.conf.d/*.conf
  618.  
  619. ### Option: SSLCertLocation
  620. # Location of SSL client certificates.
  621. # This parameter is used only in web monitoring.
  622. # Default depends on compilation options.
  623. # To see the default path run command "zabbix_proxy --help".
  624. #
  625. # Mandatory: no
  626. # Default:
  627. # SSLCertLocation=${datadir}/zabbix/ssl/certs
  628.  
  629. ### Option: SSLKeyLocation
  630. # Location of private keys for SSL client certificates.
  631. # This parameter is used only in web monitoring.
  632. # Default depends on compilation options.
  633. # To see the default path run command "zabbix_proxy --help".
  634. #
  635. # Mandatory: no
  636. # Default:
  637. # SSLKeyLocation=${datadir}/zabbix/ssl/keys
  638.  
  639. ### Option: SSLCALocation
  640. # Location of certificate authority (CA) files for SSL server certificate verification.
  641. # If not set, system-wide directory will be used.
  642. # This parameter is used only in web monitoring.
  643. #
  644. # Mandatory: no
  645. # Default:
  646. # SSLCALocation=
  647.  
  648. ####### LOADABLE MODULES #######
  649.  
  650. ### Option: LoadModulePath
  651. # Full path to location of proxy modules.
  652. # Default depends on compilation options.
  653. # To see the default path run command "zabbix_proxy --help".
  654. #
  655. # Mandatory: no
  656. # Default:
  657. # LoadModulePath=${libdir}/modules
  658.  
  659. ### Option: LoadModule
  660. # Module to load at proxy startup. Modules are used to extend functionality of the proxy.
  661. # Format: LoadModule=<module.so>
  662. # The modules must be located in directory specified by LoadModulePath.
  663. # It is allowed to include multiple LoadModule parameters.
  664. #
  665. # Mandatory: no
  666. # Default:
  667. # LoadModule=
  668.  
  669. ### Option: StatsAllowedIP
  670. # List of comma delimited IP addresses, optionally in CIDR notation, or DNS names of external Zabbix instances.
  671. # Stats request will be accepted only from the addresses listed here. If this parameter is not set no stats requests
  672. # will be accepted.
  673. # If IPv6 support is enabled then '127.0.0.1', '::127.0.0.1', '::ffff:127.0.0.1' are treated equally
  674. # and '::/0' will allow any IPv4 or IPv6 address.
  675. # '0.0.0.0/0' can be used to allow any IPv4 address.
  676. # Example: StatsAllowedIP=127.0.0.1,192.168.1.0/24,::1,2001:db8::/32,zabbix.example.com
  677. #
  678. # Mandatory: no
  679. # Default:
  680. # StatsAllowedIP=
  681. StatsAllowedIP=127.0.0.1
  682.  
  683. ####### TLS-RELATED PARAMETERS #######
  684.  
  685. ### Option: TLSConnect
  686. # How the proxy should connect to Zabbix server. Used for an active proxy, ignored on a passive proxy.
  687. # Only one value can be specified:
  688. # unencrypted - connect without encryption
  689. # psk - connect using TLS and a pre-shared key
  690. # cert - connect using TLS and a certificate
  691. #
  692. # Mandatory: yes, if TLS certificate or PSK parameters are defined (even for 'unencrypted' connection)
  693. # Default:
  694. # TLSConnect=unencrypted
  695.  
  696. ### Option: TLSAccept
  697. # What incoming connections to accept from Zabbix server. Used for a passive proxy, ignored on an active proxy.
  698. # Multiple values can be specified, separated by comma:
  699. # unencrypted - accept connections without encryption
  700. # psk - accept connections secured with TLS and a pre-shared key
  701. # cert - accept connections secured with TLS and a certificate
  702. #
  703. # Mandatory: yes, if TLS certificate or PSK parameters are defined (even for 'unencrypted' connection)
  704. # Default:
  705. # TLSAccept=unencrypted
  706.  
  707. ### Option: TLSCAFile
  708. # Full pathname of a file containing the top-level CA(s) certificates for
  709. # peer certificate verification.
  710. #
  711. # Mandatory: no
  712. # Default:
  713. # TLSCAFile=
  714.  
  715. ### Option: TLSCRLFile
  716. # Full pathname of a file containing revoked certificates.
  717. #
  718. # Mandatory: no
  719. # Default:
  720. # TLSCRLFile=
  721.  
  722. ### Option: TLSServerCertIssuer
  723. # Allowed server certificate issuer.
  724. #
  725. # Mandatory: no
  726. # Default:
  727. # TLSServerCertIssuer=
  728.  
  729. ### Option: TLSServerCertSubject
  730. # Allowed server certificate subject.
  731. #
  732. # Mandatory: no
  733. # Default:
  734. # TLSServerCertSubject=
  735.  
  736. ### Option: TLSCertFile
  737. # Full pathname of a file containing the proxy certificate or certificate chain.
  738. #
  739. # Mandatory: no
  740. # Default:
  741. # TLSCertFile=
  742.  
  743. ### Option: TLSKeyFile
  744. # Full pathname of a file containing the proxy private key.
  745. #
  746. # Mandatory: no
  747. # Default:
  748. # TLSKeyFile=
  749.  
  750. ### Option: TLSPSKIdentity
  751. # Unique, case sensitive string used to identify the pre-shared key.
  752. #
  753. # Mandatory: no
  754. # Default:
  755. # TLSPSKIdentity=
  756.  
  757. ### Option: TLSPSKFile
  758. # Full pathname of a file containing the pre-shared key.
  759. #
  760. # Mandatory: no
  761. # Default:
  762. # TLSPSKFile=
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement