Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Learn More

Firefox behavior if doh is blocked by firewall

  • 2 trả lời
  • 1 gặp vấn đề này
  • 59 lượt xem
  • Trả lời mới nhất được viết bởi ravinder.verma

more options

I am working on firewall which can block Doh request to cloudfare or any custom doh service provider. I would like to know if firewall silently drops/block what is the behavior of firefox? Does it automatically fallback to premise DNS server or fallback is config driven and if fallback disabled then it continue using DOH only in which case things will continue to fail forever. Is it possible firewall can generate some end user notification to browser so it can detect block (e.g connection refused etc) connection and fallback? Yes my firewall is kind of MITM and does terminate TCP connection so its firewall/proxy.

I am working on firewall which can block Doh request to cloudfare or any custom doh service provider. I would like to know if firewall silently drops/block what is the behavior of firefox? Does it automatically fallback to premise DNS server or fallback is config driven and if fallback disabled then it continue using DOH only in which case things will continue to fail forever. Is it possible firewall can generate some end user notification to browser so it can detect block (e.g connection refused etc) connection and fallback? Yes my firewall is kind of MITM and does terminate TCP connection so its firewall/proxy.

Giải pháp được chọn

Hi,

yes, if Firefox fails to resolve a domain via DoH, it should fallback to the DNS. You can modify this behaviour using the network.trr.mode preference. Possible values of this pref are:

  • 0 - Off (default). use standard native resolving only (don't use TRR at all)
  • 1 - Reserved (used to be Race mode)
  • 2 - First. Use TRR first, and only if the name resolve fails use the native resolver as a fallback.
  • 3 - Only. Only use TRR. Never use the native (This mode also requires the bootstrapAddress pref to be set)
  • 4 - Reserved (used to be Shadow mode)
  • 5 - Off by choice. This is the same as 0 but marks it as done by choice and not done by default.


Type of the DNS connection you can check on the about:networking#dns page (it is a TRR column).

Đọc câu trả lời này trong ngữ cảnh 👍 0

Tất cả các câu trả lời (2)

more options

Giải pháp được chọn

Hi,

yes, if Firefox fails to resolve a domain via DoH, it should fallback to the DNS. You can modify this behaviour using the network.trr.mode preference. Possible values of this pref are:

  • 0 - Off (default). use standard native resolving only (don't use TRR at all)
  • 1 - Reserved (used to be Race mode)
  • 2 - First. Use TRR first, and only if the name resolve fails use the native resolver as a fallback.
  • 3 - Only. Only use TRR. Never use the native (This mode also requires the bootstrapAddress pref to be set)
  • 4 - Reserved (used to be Shadow mode)
  • 5 - Off by choice. This is the same as 0 but marks it as done by choice and not done by default.


Type of the DNS connection you can check on the about:networking#dns page (it is a TRR column).

Được chỉnh sửa bởi TyDraniu vào

more options

Thank you TyDraniu; this helps!