This topic describes how to create Consul network segments so that services can connect to other services in the LAN gossip pool that have been placed into separate communication boundaries. Refer to [Network Segments Overview](/consul/docs/enterprise/network-segments/network-segments-overview) for additional information.
1. Add the `segments` block to your server configuration. Refer to the [`segments`](/consul/docs/agent/config/config-files#segments) documentation for details about how to define the configuration.
In the following example, an `alpha` segment is configured to listen for traffic on port `8303` and a `beta` segment is configured to listen to traffic on port `8304`:
<CodeTabs heading="Example network segments configuration for server agents">
1. Start the server using the `consul agent` command. Copy the address for each segment listener so that you can [direct clients to join the segment](#configure-clients-to-join-segments) when you start them:
Node Address Status Type Build Protocol DC Segment
server1 10.20.10.11:8301 alive server 1.14+ent 2 dc1 <all>
```
## Configure clients to join segments
Client agents can only be members of one segment at a time. You can direct clients to join a segment by specifying the address and name of the segment with the [`-join`](/consul/docs/agent/config/cli-flags#_join) and [`-segment`](/consul/docs/agent/config/cli-flags#_segment) command line flags when starting the agent.
```shell-session
$ consul agent -config-file client.hcl -join 10.20.10.11:8303 -segment alpha
```
Alternatively, you can add the [`retry_join`](/consul/docs/agent/config/config-files#retry_join) and [`segment`](/consul/docs/agent/config/config-files#segment-1) parameters to your client agent configuration file:
```hcl
node_name = "consul-client"
server = false
datacenter = "dc1"
data_dir = "consul/client-data"
log_level = "INFO"
retry_join = ["10.20.10.11:8303"]
segment = "alpha"
```
## Verify segments
You can use the CLI, API, or GUI to verify which segments your agents have joined.
<Tabs>
<Tab heading="CLI">
Run the `consul members` command to verify that the client agents are joined to the correct segments:
<CodeBlockConfig>
```shell-session
$ consul members
Node Address Status Type Build Protocol DC Partition Segment
server 192.168.4.159:8301 alive server 1.14+ent 2 dc1 default <all>
You can also pass the name of a segment in the `-segment` flag to view agents in a specific segment. Note that server agents display their LAN listener port for the specified segment the segment filter applied. In the following example, the command returns port `8303` for alpha, rather than for the `<default>` segment port:
<CodeBlockConfig>
```shell-session
$ consul members -segment alpha
Node Address Status Type Build Protocol DC Segment
server1 10.20.10.11:8301 alive server 1.14+ent 2 dc1 alpha
You can also create and run a prepared query to query for additional information about the services registered to client nodes. Prepared queries are HTTP API endpoint features that enable you to run complex queries of Consul nodes. Refer [Prepared Query HTTP Endpoint](/consul/api-docs/query) for usage.