diff options
Diffstat (limited to 'docs/configuration')
-rw-r--r-- | docs/configuration/container/index.rst | 29 | ||||
-rw-r--r-- | docs/configuration/policy/route-map.rst | 4 | ||||
-rw-r--r-- | docs/configuration/system/syslog.rst | 6 | ||||
-rw-r--r-- | docs/configuration/vrf/index.rst | 6 |
4 files changed, 42 insertions, 3 deletions
diff --git a/docs/configuration/container/index.rst b/docs/configuration/container/index.rst index df8beed1..5882f6db 100644 --- a/docs/configuration/container/index.rst +++ b/docs/configuration/container/index.rst @@ -252,6 +252,35 @@ Container Registry Credentials can be defined here and will only be used when adding a container image to the system. +.. cfgcmd:: set container registry <name> insecure + + Allow registry access over unencrypted HTTP or TLS connections with + untrusted certificates. + +.. cfgcmd:: set container registry <name> mirror address <address> + +.. cfgcmd:: set container registry <name> mirror host-name <host-name> + +.. cfgcmd:: set container registry <name> mirror port <port> + +.. cfgcmd:: set container registry <name> mirror path <path> + + Registry mirror, use ``(host-name|address)[:port][/path]``. + + If you have mirror http://192.168.1.1:8080 for docker.io, you can use ``docker.io/some/repo`` or run ``podman pull docker.io/some/repo`` + + .. code-block:: none + + set container registry docker.io mirror address 192.168.1.1 + set container registry docker.io mirror port 8080 + set container registry docker.io insecure + + If http://192.168.1.1:8080 is your own registry, you can use ``192.168.1.1:8080/some/repo`` or run ``podman pull 192.168.1.1:8080/some/repo`` + + .. code-block:: none + + set container registry 192.168.1.1:8080 insecure + ****************** Operation Commands diff --git a/docs/configuration/policy/route-map.rst b/docs/configuration/policy/route-map.rst index 03cdb99b..a2313466 100644 --- a/docs/configuration/policy/route-map.rst +++ b/docs/configuration/policy/route-map.rst @@ -179,6 +179,10 @@ Route Map Match RPKI validation result. +.. cfgcmd:: set policy route-map <text> rule <1-65535> match source-vrf <text> + + Source VRF to match. + .. cfgcmd:: set policy route-map <text> rule <1-65535> match tag <1-65535> Route tag to match. diff --git a/docs/configuration/system/syslog.rst b/docs/configuration/system/syslog.rst index 41a65934..2a3eaa13 100644 --- a/docs/configuration/system/syslog.rst +++ b/docs/configuration/system/syslog.rst @@ -20,18 +20,18 @@ server which is reached via :abbr:`IP (Internet Protocol)` UDP/TCP. Global Settings --------------- -.. cfgcmd:: system syslog marker interval <number> +.. cfgcmd:: set system syslog marker interval <number> Interval (in seconds) for sending mark messages to the syslog input to indicate that the logging system is functioning. This defaults to 1200 seconds. -.. cfgcmd:: system syslog marker disable +.. cfgcmd:: set system syslog marker disable Disable periodic injection of mark messages. -.. cfgcmd:: system syslog preserve-fqdn +.. cfgcmd:: set system syslog preserve-fqdn If set, the domain part of the hostname is always sent, even within the same domain as the receiving system. diff --git a/docs/configuration/vrf/index.rst b/docs/configuration/vrf/index.rst index e9115458..9082e8d4 100644 --- a/docs/configuration/vrf/index.rst +++ b/docs/configuration/vrf/index.rst @@ -505,6 +505,12 @@ address-family. derived and should not be specified explicitly for either the source or destination VRF’s. +.. cfgcmd:: set vrf name <name> protocols bgp address-family + <ipv4-unicast|ipv6-unicast> route-map vrf import + [route-map <name>] + + Specifies an optional route-map to be applied to routes imported from VRFs. + .. cfgcmd:: set vrf name <name> protocols bgp interface <interface> mpls forwarding |