3

When I initialize RTCPeerConnection, new RTCPeerConnection(...);, I'm receiving the following popup

enter image description here

It's adding inbound rule in Windows FW, I don't need it, event if I don't allow all my flows work well

I'm looking for a way to avoid this popup (set inbound network blocked by default) I tried check for Chromium flags and RTCPeerConnection constructor options with no luck

Is there a way to avoid this popup?

I tried use chromium 75 and 84, same behavior

It's not happening in chromium 74

Roy Shmuli
  • 4,979
  • 1
  • 24
  • 38

1 Answers1

3

In case you control chromium features, disable enable-webrtc-hide-local-ips-with-mdns will resolve it, but the real local IP addresses will be shown in WebRTC ICE candidates.

These firewall rules are typically added during installation. https://bugs.chromium.org/p/chromium/issues/detail?id=1000955 has some information.

Roy Shmuli
  • 4,979
  • 1
  • 24
  • 38
Philipp Hancke
  • 15,855
  • 2
  • 23
  • 31