Freigeben über


WebRtcIPHandlingUrl

WebRTC-IP-Handhabungsrichtlinie für URL-Muster

Unterstützte Versionen

  • Unter Windows und macOS seit 135 oder höher

Beschreibung

Steuert, welche IP-Adressen und Netzwerkschnittstellen WebRTC beim Herstellen von Verbindungen für bestimmte URL-Muster verwenden kann.

Funktionsweise: Akzeptiert eine Liste von URL-Mustern, die jeweils mit einem Behandlungstyp gekoppelt sind. WebRTC wertet Muster sequenziell aus; die erste Übereinstimmung bestimmt den Behandlungstyp. Wenn keine Übereinstimmung gefunden wird, verwendet WebRTC standardmäßig WebRtcLocalhostIpHandling WebRtcLocalhostIpHandling. Richtlinie. Diese Richtlinie gilt nur für Ursprünge – URL-Pfadkomponenten werden ignoriert. Platzhalter (*) werden in URL-Mustern unterstützt.

Unterstützte Verarbeitungswerte: Standard – Verwendet alle verfügbaren Netzwerkschnittstellen. default_public_and_private_interfaces – WebRTC verwendet alle öffentlichen und privaten Schnittstellen. default_public_interface_only – WebRTC verwendet nur öffentliche Schnittstellen. disable_non_proxied_udp – WebRTC verwendet UDP SOCKS-Proxying oder greift auf TCP-Proxying zurück.

Weitere Informationen: Gültige Eingabemuster: https://go.microsoft.com/fwlink/?linkid=2095322 Behandeln von Typen: https://tools.ietf.org/html/rfc8828.html#section-5.2

Unterstützte Features

  • Kann zwingend erforderlich sein: Ja
  • Kann empfohlen werden: Nein
  • Dynamische Richtlinienaktualisierung: Ja
  • Profilspezifisch: Ja
  • Gilt für ein Profil, das mit einem Microsoft-Konto angemeldet ist: Nein

Datentyp

  • Dictionary

Windows-Informationen und -Einstellungen

Informationen zur Gruppenrichtlinie (ADMX)

  • Eindeutiger GP-Name: WebRtcIPHandlingUrl
  • GP-Name: WebRTC-IP-Handhabungsrichtlinie für URL-Muster
  • GP-Pfad (verpflichtend): Administrative Templates/Microsoft Edge/WebRtc settings
  • GP Pfad (Empfohlen): n.a.
  • GP ADMX Dateiname: MSEdge.admx

Beispielwert

[{"handling": "default_public_and_private_interfaces", "url": "https://www.example.com"}, {"handling": "default_public_interface_only", "url": "https://[*.]example.edu"}, {"handling": "disable_non_proxied_udp", "url": "*"}]

Registrierungseinstellungen

  • Pfad (verpflichtend): SOFTWARE\Policies\Microsoft\Edge
  • Pfad (Empfohlen): n.a.
  • Wertname: WebRtcIPHandlingUrl
  • Werttyp: REG_SZ

Beispielregistrierungswert

[{"handling": "default_public_and_private_interfaces", "url": "https://www.example.com"}, {"handling": "default_public_interface_only", "url": "https://[*.]example.edu"}, {"handling": "disable_non_proxied_udp", "url": "*"}]

Erweiterter Beispielregistrierungswert

[
  {
    "handling": "default_public_and_private_interfaces",
    "url": "https://www.example.com"
  },
  {
    "handling": "default_public_interface_only",
    "url": "https://[*.]example.edu"
  },
  {
    "handling": "disable_non_proxied_udp",
    "url": "*"
  }
]

Mac – Informationen und Einstellungen

  • Einstellung Schlüsselname: WebRtcIPHandlingUrl
  • Beispielwert:
<key>WebRtcIPHandlingUrl</key>
<array>
  <dict>
    <key>handling</key>
    <string>default_public_and_private_interfaces</string>
    <key>url</key>
    <string>https://www.example.com</string>
  </dict>
  <dict>
    <key>handling</key>
    <string>default_public_interface_only</string>
    <key>url</key>
    <string>https://[*.]example.edu</string>
  </dict>
  <dict>
    <key>handling</key>
    <string>disable_non_proxied_udp</string>
    <key>url</key>
    <string>*</string>
  </dict>
</array>

Weitere Informationen