--- layout: docs page_title: 'Configuration Entry Kind: Mesh' description: >- The mesh config entry kind allows for globally defining default configuration across all services mesh proxies. Settings in this config entry apply across all namespaces and federated datacenters. Currently, only one mesh entry is supported. --- # Mesh Beta -> **v1.10.0+:** This config entry is supported in Consul versions 1.10.0+. The `mesh` config entry kind allows for globally defining default configuration that applies to all service mesh proxies. Settings in this config entry apply across all namespaces and federated datacenters. ## Sample Config Entries ### Proxy traffic to catalog destinations only ```hcl Kind = "mesh" TransparentProxy { CatalogDestinationsOnly = true } ``` **NOTE:** The `mesh` config entry can only be created in the `default` namespace and it will apply to proxies across **all** namespaces. ```hcl Kind = "mesh" Namespace = "default" # Can only be set to "default". TransparentProxy { CatalogDestinationsOnly = true } ``` ## Available Fields - `Kind` - Must be set to `mesh` - `Namespace` `(string: "default")` - Specifies the namespace the config entry will apply to. Must be set to `default` - `Meta` `(map: nil)` - Specifies arbitrary KV metadata pairs. - `TransparentProxy` `(TransparentProxyConfig: )` - Controls configuration specific to proxies in `transparent` [mode](/docs/connect/config-entries/service-defaults#mode). Added in v1.10.0. - `CatalogDestinationsOnly` `(bool: false)` - Determines whether sidecar proxies operating in transparent mode can proxy traffic to IP addresses not registered in Consul's catalog. If enabled, traffic will only be proxied to upstreams with service registrations in the catalog. ## ACLs Configuration entries may be protected by [ACLs](/docs/security/acl). Reading a `mesh` config entry requires no specific privileges. Creating, updating, or deleting a `mesh` config entry requires `operator:write`.