This feature is well established and works across many devices and browser versions. It’s been available across browsers since April 2022.
The setConfiguration() method of the RTCPeerConnection interface sets the current configuration of the connection based on the values included in the specified object. This lets you change the ICE servers used by the connection and which transport policies to use.
The most common use case for this method (and even then, probably not a very common use case) is to replace the set of ICE servers to be used. Two potential scenarios in which this might be done:
RTCPeerConnection was instantiated without specifying any ICE servers. If, for example, the RTCPeerConnection() constructor was called with no parameters, you would have to then call setConfiguration() to add ICE servers before ICE negotiation could begin.setConfiguration() to switch to new regional ICE servers, then initiate an ICE restart.Note: You cannot change the identity information for a connection once it's already been set.
setConfiguration(configuration)
configurationAn object which provides the options to be set. The changes are not additive; instead, the new values completely replace the existing ones. See RTCPeerConnection() for more information on what options are allowed.
None (undefined).
InvalidAccessError DOMException
Thrown if one or more of the URLs specified in configuration.iceServers is a TURN server, but complete login information is not provided (that is, either the username or credential is missing, or if credentialType is "password" and credential is not a string). This prevents successful login to the server.
InvalidModificationError DOMException
Thrown if the configuration includes changed identity information, but the connection already has identity information specified. This happens if configuration.peerIdentity or configuration.certificates are set and their values differ from the current configuration. This may also be thrown if there are changes to configuration.bundlePolicy or configuration.rtcpMuxPolicy, or to configuration.iceCandidatePoolSize when RTCPeerConnection.setLocalDescription() has already been called.
InvalidStateError DOMException
Thrown if the RTCPeerConnection is closed.
SyntaxError DOMException
Thrown if the configuration.iceServers contains no URLs or if one of the values in the list is invalid.
NotSupportedError DOMException
Thrown if configuration.iceServers contains a URL with a scheme that is not supported.
In this example, it has already been determined that ICE restart is needed, and that negotiation needs to be done using a different ICE server.
const restartConfig = {
iceServers: [
{
urls: "turn:asia.turn-server.net",
username: "[email protected]",
credential: "topsecretpassword",
},
],
};
myPeerConnection.setConfiguration(restartConfig);
myPeerConnection.restartIce();
myPeerConnection
.createOffer() // restartIce() causes iceRestart to be set true
.then((offer) => myPeerConnection.setLocalDescription(offer))
.then(() => {
// send the offer to the other peer using the signaling server
})
.catch(window.reportError);
First, a new object is created, restartConfig, specifying the new ICE server and its credentials. This is then passed into setConfiguration(). ICE negotiation is restarted by calling restartIce(), which causes the next offer created to include the new ICE server information. From there, we handle the process as usual, by setting the local description to the returned offer and then sending that offer to the other peer.
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
setConfiguration |
48 | 79 | 99 | 35 | 11 | 48 | 99 | 35 | 11 | 6.0 | 48 | 11 |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnection/setConfiguration