> For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

# iceServers

> Custom ICE servers for TURN/STUN configuration.

```ts
get iceServers(): RTCIceServer[] | undefined
set iceServers(value): void
```

Custom ICE servers for TURN/STUN configuration.

## **Parameters**

Custom ICE server list. Pass `undefined` to use the SDK defaults. See [`RTCIceServer`](https://developer.mozilla.org/en-US/docs/Web/API/RTCIceServer).

## **Examples**

```ts
console.log(client.preferences.iceServers);
```