1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102
|
==============================
Receptor Configuration Options
==============================
^^^^^^^^^^^^^^^^
Control Services
^^^^^^^^^^^^^^^^
.. list-table:: Control Service (List item)
:header-rows: 1
:widths: auto
* - Parameter
- Description
- Default value
- Type
* - ``filename``
- Specifies the filename of a local Unix socket to bind to the service.
- No default value.
- string
* - ``permissions``
- Socket file permissions
- 0600
- int
* - ``service``
- Receptor service name to listen on
- control
- string
* - ``tls``
- Name of TLS server config for the Receptor listener
- No default value.
- string
* - ``tcplisten``
- Local TCP port or host:port to bind to the control service
- No default value.
- string
* - ``tcptls``
- Name of TLS server config for the TCP listener
- No default value.
- string
.. code-block:: yaml
control-services:
- service: foo
filename: /tmp/foo.sock
^^^^^^^^^
Log level
^^^^^^^^^
.. list-table:: Log Level
:header-rows: 1
:widths: auto
* - Parameter
- Description
- Default value
- Type
* - ``level``
- Log level: Error, Warning, Info or Debug
- Error
- string
Add payload tracing using `RECEPTOR_PAYLOAD_TRACE_LEVEL=int` envorment variable and using log level debug.
.. list-table:: RECEPTOR_PAYLOAD_TRACE_LEVEL options
:header-rows: 1
:widths: auto
* - Tracing level
- Description
* - 0
- No payload tracing log
* - 1
- Log connection type
* - 2
- Log connection type and work unit id
* - 3
- Log connection type, work unit id and payload
**Warning: Payload Tracing May Expose Sensitive Data**
Please be aware that using payload tracing can potentially reveal sensitive information. This includes, but is not limited to, personal data, authentication tokens, and system configurations. Ensure that you only use tracing tools in a secure environment and avoid sharing trace output with unauthorized users. Always follow your organization's data protection policies when handling sensitive information. Proceed with caution!
.. code-block:: yaml
log-level:
level: debug
^^^^
Qlog
^^^^
.. list-table:: Qlog
:header-rows: 1
:widths: auto
* - Variable
- Description
- Type
* - QLOGDIR
- environment variable to the directory path where logs will be stored
- string
Qlogs allows greater visibility in the Receptors mesh network. Set the QLOGDIR environment variable to the directory path where logs will be stored. Creating a new directory may help organize qlogs.
Once logs are created they can be viewed using (qvis)[https://github.com/quiclog/qvis]
-----------------
Run qvis locally:
-----------------
- Git clone qvis repo
- ``cd visualizations``
- ``run npm install``
- ``npm run serve``
- Qvis is now served on port 8080
- Upload qlogs to qvis and navigate to Sequence
^^^^
Node
^^^^
.. list-table:: Node
:header-rows: 1
:widths: auto
* - Parameter
- Description
- Default value
- Type
* - ``id``
- Node ID can only contain a-z, A-Z, 0-9 or special characters . - _ @ :
- local hostname
- string
* - ``datadir``
- Directory in which to store node data
- /tmp/receptor
- string
* - ``firewallrules``
- Firewall Rules. See :ref:`firewall_rules` for syntax
- No default value.
- JSON
* - ``maxidleconnectiontimeout``
- Max duration with no traffic before a backend connection is timed out and refreshed
- No default value.
- string
.. code-block:: yaml
node:
id: foo
------------------------------------------
Configure resources used by other commands
------------------------------------------
^^^^^^^^^^^
TLS Clients
^^^^^^^^^^^
.. list-table:: TLS Client (List item)
:header-rows: 1
:widths: auto
* - Parameter
- Description
- Default value
- Type
* - ``cert``
- Client certificate filename (required)
- No default value.
- string
* - ``insecureskipverify``
- Accept any server cert
- false
- bool
* - ``key``
- Client private key filename (required)
- No default value.
- string
* - ``mintls13``
- Set minimum TLS version to 1.3. Otherwise the minimum is 1.2
- false
- bool
* - ``name``
- Name of this TLS client configuration (required)
- No default value.
- string
* - ``pinnedservercert``
- Pinned fingerprint of required server certificate
- No default value.
- list of string
* - ``rootcas``
- Root CA bundle to use instead of system trust
- No default value.
- string
* - ``skipreceptornamescheck``
- if true, skip verifying ReceptorNames OIDs in certificate at startup
- No default value.
- bool
.. code-block:: yaml
tls-clients:
- name: tlsclient
cert: /tmp/certs/foo.crt
key: /tmp/certs/key.crt
^^^^^^^^^^^
TLS Servers
^^^^^^^^^^^
.. list-table:: TLS Server (List item)
:header-rows: 1
:widths: auto
* - Parameter
- Description
- Default value
- Type
* - ``cert``
- Server certificate filename (required)
- No default value.
- string
* - ``clientcas``
- Filename of CA bundle to verify client certs with
- No default value.
- string
* - ``key``
- Server private key filename (required)
- No default value.
- string
* - ``mintls13``
- Set minimum TLS version to 1.3. Otherwise the minimum is 1.2
- false
- bool
* - ``name``
- Name of this TLS server configuration (required)
- No default value.
- string
* - ``pinnedclientcert``
- Pinned fingerprint of required client certificate
- No default value.
- list of string
* - ``requireclientcert``
- Require client certificates
- false
- bool
* - ``skipreceptornamescheck``
- Skip verifying ReceptorNames OIDs in certificate at startup
- false
- bool
.. code-block:: yaml
tls-servers:
- name: tlsserver
cert: /tmp/certs/foo.crt
key: /tmp/certs/key.crt
----------------------------------------------------------------------
Options to configure back-ends, which connect Receptor nodes together
----------------------------------------------------------------------
^^^^^^^^^^^^^
TCP listeners
^^^^^^^^^^^^^
.. list-table:: TCP Listener (List item)
:header-rows: 1
:widths: auto
* - Parameter
- Description
- Default value
- Type
* - ``allowedpeers``
- Peer node IDs to allow via this connection
- No default value.
- list of string
* - ``bindaddr``
- Local address to bind to
- 0.0.0.0
- string
* - ``cost``
- Connection cost (weight)
- 1.0
- float64
* - ``nodecost``
- Per-node costs
- No default value.
- float64
* - ``port``
- Local TCP port to listen on (required)
- No default value.
- int
* - ``tls``
- Name of TLS server config
- No default value.
- string
.. code-block:: yaml
tcp-listeners:
- port: 2223
^^^^^^^^^
TCP Peers
^^^^^^^^^
.. list-table:: TCP Peer
:header-rows: 1
:widths: auto
* - Parameter
- Description
- Default value
- Type
* - ``address``
- Remote address (Host:Port) to connect to (required)
- No default value.
- string
* - ``allowedpeers``
- Peer node IDs to allow via this connection
- No default value.
- list of string
* - ``cost``
- Connection cost (weight)
- 1.0
- float64
* - ``redial``
- Keep redialing on lost connection
- true
- bool
* - ``tls``
- Name of TLS client configuration
- No default value.
- string
.. code-block:: yaml
tcp-peers:
- address: localhost:2223
^^^^^^^^^^^^^
UDP Listeners
^^^^^^^^^^^^^
.. list-table:: UDP Listener (List item)
:header-rows: 1
:widths: auto
* - Parameter
- Description
- Default value
- Type
* - ``allowedpeers``
- Peer node IDs to allow via this connection
- No default value.
- list of string
* - ``bindaddr``
- Local address to bind to
- 0.0.0.0
- string
* - ``cost``
- Connection cost (weight)
- 1.0
- float64
* - ``nodecost``
- Per-node costs
- No default value.
- float64
* - ``port``
- Local UDP port to listen on (required)
- No default value.
- int
.. code-block:: yaml
udp-listeners:
- port: 2223
^^^^^^^^^
UDP Peers
^^^^^^^^^
.. list-table:: UDP Peer (List item)
:header-rows: 1
:widths: auto
* - Parameter
- Description
- Default value
* - ``address=<string>``
- Host:Port to connect to (required)
- No default value.
* - ``allowedpeers=<[]string (may be repeated)>``
- Peer node IDs to allow via this connection
- No default value.
* - ``cost=<float64>``
- Connection cost (weight)
- 1.0
* - ``redial=<bool>``
- Keep redialing on lost connection
- true
.. code-block:: yaml
udp-peers:
- address: localhost:2223
^^^^^^^^^^^^^^^^^^^
Websocket Listeners
^^^^^^^^^^^^^^^^^^^
.. list-table:: Websocket Listener
:header-rows: 1
:widths: auto
* - Parameter
- Description
- Default value
- Type
* - ``allowedpeers``
- Peer node IDs to allow via this connection
- No default value.
- list of string
* - ``bindaddr``
- Local address to bind to
- 0.0.0.0
- string
* - ``cost``
- Connection cost (weight)
- 1.0
- float64
* - ``nodecost``
- Per-node costs
- No default value.
- float64
* - ``path``
- URI path to the websocket server
- \/
- string
* - ``port``
- Local TCP port to run http server on (required)
- No default value.
- int
* - ``tls``
- Name of TLS server configuration
- No default value.
- string
.. code-block:: yaml
ws-listeners:
- port: 27198
^^^^^^^^^^^^^^^
Websocket Peers
^^^^^^^^^^^^^^^
.. list-table:: Websocket Peer (List item)
:header-rows: 1
:widths: auto
* - Parameter
- Description
- Default value
- Type
* - ``address``
- URL to connect to (required)
- No default value.
- string
* - ``allowedpeers``
- Peer node IDs to allow via this connection
- No default value.
- list of string
* - ``cost``
- Connection cost (weight)
- 1.0
- float64
* - ``extraheader``
- Sends extra HTTP header on initial connection
- No default value.
- string
* - ``redial``
- Keep redialing on lost connection
- true
- bool
* - ``tls``
- Name of TLS client config
- No default value.
- string
.. code-block:: yaml
ws-peers:
- address: ws://localhost:27198
-------------------------------------------------------
Configure services that run on top of the Receptor mesh
-------------------------------------------------------
^^^^^^^^^^
IP Routers
^^^^^^^^^^
.. list-table:: IP Router (List item)
:header-rows: 1
:widths: auto
* - Parameter
- Description
- Default value
- Type
* - ``interface``
- Name of the local tun interface
- No default value.
- string
* - ``localnet``
- Local /30 CIDR address (required)
- No default value.
- string
* - ``networkname``
- Name of this network and service. (required)
- No default value.
- string
* - ``routes``
- Comma separated list of CIDR subnets to advertise
- No default value.
- string
.. code-block:: yaml
ip-routers:
- networkname: hello
localnet: abc
^^^^^^^^^^^
TCP Clients
^^^^^^^^^^^
.. list-table:: TCP Client (List item)
:header-rows: 1
:widths: auto
* - Parameter
- Description
- Default value
* - ``address``
- Address for outbound TCP connection (required)
- No default value.
* - ``service``
- Receptor service name to bind to (required)
- No default value.
* - ``tlsserver``
- Name of TLS server config for the Receptor service
- No default value.
* - ``tlsclient``
- Name of TLS client config for the TCP connection
- No default value.
.. code-block:: yaml
tcp-clients:
- address: localhost:2223
service: foo
^^^^^^^^^^^
TCP Servers
^^^^^^^^^^^
.. list-table:: TCP Server (List item)
:header-rows: 1
:widths: auto
* - Parameter
- Description
- Default value
- Type
* - ``bindaddr``
- Address to bind TCP listener to
- 0.0.0.0
- string
* - ``port``
- Local TCP port to bind to (required)
- No default value.
- int
* - ``remotenode``
- Receptor node to connect to (required)
- No default value.
- string
* - ``remoteservice``
- Receptor service name to connect to (required)
- No default value.
- string
* - ``tlsserver``
- Name of TLS server config for the TCP listener
- No default value.
- string
* - ``tlsclient``
- Name of TLS client config for the Receptor connection
- No default value.
- string
.. code-block:: yaml
tcp-servers:
- port: 2223
remotenode: foo
remoteservice: foo
^^^^^^^^^^^
UDP Clients
^^^^^^^^^^^
.. list-table:: UDP Client (List item)
:header-rows: 1
:widths: auto
* - Parameter
- Description
- Default value
- Type
* - ``address``
- Address for outbound UDP connection (required)
- No default value.
- string
* - ``service``
- Receptor service name to bind to (required)
- No default value.
- string
.. code-block:: yaml
udp-clients:
- address: localhost:2223
service: foo
^^^^^^^^^^^
UDP Servers
^^^^^^^^^^^
.. list-table:: UDP Server (List item)
:header-rows: 1
:widths: auto
* - Parameter
- Description
- Default value
- Type
* - ``bindaddr``
- Address to bind UDP listener to
- 0.0.0.0
- string
* - ``port``
- Local UDP port to bind to (required)
- No default value.
- int
* - ``remotenode``
- Receptor node to connect to (required)
- No default value.
- string
* - ``remoteservice``
- Receptor service name to connect to (required)
- No default value.
- string
.. code-block:: yaml
udp-servers:
- address: 2223
remotenode: foo
remoteservice: foo
^^^^^^^^^^^^^^^^^^^
Unix Socket Clients
^^^^^^^^^^^^^^^^^^^
.. list-table:: Unix Socket Client (List item)
:header-rows: 1
:widths: auto
* - Parameter
- Description
- Default value
- Type
* - ``filename``
- Socket filename, which must already exist (required)
- No default value.
- string
* - ``service``
- Receptor service name to bind to (required)
- No default value.
- string
* - ``tls``
- Name of TLS server config for the Receptor connection
- No default value.
- string
.. code-block:: yaml
unix-socket-clients:
- filename: /tmp/foo.sock
service: foo
^^^^^^^^^^^^^^^^^^^
Unix Socket Servers
^^^^^^^^^^^^^^^^^^^
.. list-table:: Unix Socket Server (List item)
:header-rows: 1
:widths: auto
* - Parameter
- Description
- Default value
- Type
* - ``filename``
- Socket filename, which will be overwritten (required)
- No default value.
- string
* - ``permissions``
- Socket file permissions
- 0600
- int
* - ``remotenode``
- Receptor node to connect to (required)
- No default value.
- string
* - ``remoteservice``
- Receptor service name to connect to (required)
- No default value.
- string
* - ``tls``
- Name of TLS client config for the Receptor connection
- No default value.
- string
.. code-block:: yaml
unix-socket-servers:
- filename: /tmp/foo.sock
remotenode: foo
remoteservice: foo
--------------------------------------------
Configure workers that process units of work
--------------------------------------------
^^^^^^^^^^^^^
Work Commands
^^^^^^^^^^^^^
.. list-table:: Work Command (List item)
:header-rows: 1
:widths: auto
* - Parameter
- Description
- Default value
- Type
* - ``allowruntimeparams``
- Allow users to add more parameters
- false
- bool
* - ``command``
- Command to run to process units of work (required)
- No default value.
- string
* - ``params``
- Command-line parameters
- No default value.
- string
* - ``verifysignature``
- Verify a signed work submission
- false
- bool
* - ``worktype``
- Name for this worker type (required)
- No default value.
- string
.. code-block:: yaml
work-commands:
- command: cat
worktype: cat
^^^^^^^^^^^^^^^
Work Kubernetes
^^^^^^^^^^^^^^^
.. list-table:: Work Kubernetes
:header-rows: 1
:widths: auto
* - Parameter
- Description
- Default value
- Type
* - ``allowruntimeauth``
- Allow passing API parameters at runtime
- false
- bool
* - ``allowruntimecommand``
- Allow specifying image & command at runtime
- false
- bool
* - ``allowruntimeparams``
- Allow adding command parameters at runtime
- false
- bool
* - ``allowruntimepod``
- Allow passing Pod at runtime
- false
- bool
* - ``authmethod``
- One of: kubeconfig, incluster
- incluster
- string
* - ``command``
- Command to run in the container (overrides entrypoint)
- No default value.
- string
* - ``deletepodonrestart``
- On restart, delete the pod if in pending state
- true
- bool
* - ``image``
- Container image to use for the worker pod
- No default value.
- string
* - ``kubeconfig``
- Kubeconfig filename (for authmethod=kubeconfig)
- No default value.
- string
* - ``namespace``
- Kubernetes namespace to create pods in
- No default value.
- string
* - ``params``
- Command-line parameters to pass to the entrypoint
- No default value.
- string
* - ``pod``
- Pod definition filename, in json or yaml format
- No default value.
- string
* - ``streammethod``
- Method for connecting to worker pods: logger or tcp
- logger
- string
* - ``verifysignature``
- Verify a signed work submission
- false
- bool
* - ``worktype``
- Name for this worker type (required)
- No default value.
- string
.. code-block:: yaml
work-kubernetes:
- worktype: cat
^^^^^^^^^^^
Work Python
^^^^^^^^^^^
.. list-table:: Work Python [DEPRECATION WARNING] This option is not currently being used. This feature will be removed from receptor in a future release
:header-rows: 1
:widths: auto
* - Parameter
- Description
- Default value
* - ``config=<JSON dict with string keys>``
- Plugin-specific configuration
- No default value.
* - ``function=<string>``
- Receptor-exported function to call (required)
- No default value.
* - ``plugin=<string>``
- Python module name of the worker plugin (required)
- No default value.
* - ``worktype=<string>``
- Name for this worker type (required)
- No default value.
^^^^^^^^^^^^
Work Signing
^^^^^^^^^^^^
.. list-table:: Work Signing
:header-rows: 1
:widths: auto
* - Parameter
- Description
- Default value
- Type
* - ``privatekey``
- Private key to sign work submissions
- No default value.
- string
* - ``tokenexpiration``
- Expiration of the signed json web token, e.g. 3h or 3h30m
- No default value.
- string
.. code-block:: yaml
work-signing:
privatekey: /tmp/signworkprivate.pem
tokenexpiration: 30m
^^^^^^^^^^^^^^^^^
Work Verification
^^^^^^^^^^^^^^^^^
.. list-table:: Work Verification
:header-rows: 1
:widths: auto
* - Parameter
- Description
- Default value
- Type
* - ``publickey``
- Public key to verify signed work submissions
- No default value.
- string
.. code-block:: yaml
work-verification:
publickey: /tmp/signworkpublic.pem
-----------------------------------------------------
Generate certificates and run a certificate authority
-----------------------------------------------------
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Certificate Authority Initialization
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.. list-table:: Certificate Authority Initialization
:header-rows: 1
:widths: auto
* - Parameter
- Description
- Default value
- Type
* - ``bits``
- Bit length of the encryption keys of the certificate (required)
- No default value.
- int
* - ``commonname``
- Common name to assign to the certificate (required)
- No default value.
- string
* - ``notafter``
- Expiration (NotAfter) date/time, in RFC3339 format
- No default value.
- string
* - ``notbefore``
- Effective (NotBefore) date/time, in RFC3339 format
- No default value.
- string
* - ``outcert``
- File to save the CA certificate to (required)
- No default value.
- string
* - ``outkey``
- File to save the CA private key to (required)
- No default value.
- string
.. code-block:: yaml
cert-init:
commonname: test CA
bits: 2048
outcert: /tmp/certs/ca.crt
outkey: /tmp/certs/ca.key
^^^^^^^^^^^^^^^^^^^^^^^^^^^
Create Certificate Requests
^^^^^^^^^^^^^^^^^^^^^^^^^^^
.. list-table:: Create Certificate Request (List item)
:header-rows: 1
:widths: auto
* - Parameter
- Description
- Default value
- Type
* - ``bits``
- Bit length of the encryption keys of the certificate
- No default value.
- int
* - ``commonname``
- Common name to assign to the certificate (required)
- No default value.
- string
* - ``dnsname``
- DNS names to add to the certificate
- No default value.
- list of string
* - ``inkey``
- Private key to use for the request
- No default value.
- string
* - ``ipaddress``
- IP addresses to add to the certificate
- No default value.
- list of string
* - ``nodeid``
- Receptor node IDs to add to the certificate
- No default value.
- list of string
* - ``outreq``
- File to save the certificate request to (required)
- No default value.
- string
* - ``outkey``
- File to save the private key to (new key will be generated)
- No default value.
- string
.. code-block:: yaml
cert-makereqs:
- address: localhost:2223
service: foo
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Sign Request and Produce Certificate
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.. list-table:: Sign Request and Produce Certificate
:header-rows: 1
:widths: auto
* - Parameter
- Description
- Default value
- Type
* - ``cacert``
- CA certificate PEM filename (required)
- No default value.
- string
* - ``cakey``
- CA private key PEM filename (required)
- No default value.
- string
* - ``notafter``
- Expiration (NotAfter) date/time, in RFC3339 format
- No default value.
- string
* - ``notbefore``
- Effective (NotBefore) date/time, in RFC3339 format
- No default value.
- string
* - ``outcert``
- File to save the signed certificate to (required)
- No default value.
- string
* - ``req``
- Certificate Request PEM filename (required)
- No default value.
- string
* - ``verify``
- If true, do not prompt the user for verification
- False
- bool
.. code-block:: yaml
tcp-clients:
- address: localhost:2223
service: foo
|