-
Notifications
You must be signed in to change notification settings - Fork 11.2k
Document NetBIOS over TCPIP support in WARP #27177
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
+97
−0
Closed
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -385,6 +385,103 @@ When `Enabled`, the operating system will register WARP's [local interface IP](# | |||||
|
|
||||||
| If you use on-premise DNS infrastructure (such as Active Directory), we recommend turning this setting on for remote [device profiles](/cloudflare-one/team-and-resources/devices/warp/configure-warp/device-profiles/) and turning it off for [managed network](/cloudflare-one/team-and-resources/devices/warp/configure-warp/managed-networks/) device profiles. In this configuration, remote devices will register their WARP interface IP, while on-premise devices will only register their local DHCP address. This allows the on-premise DNS server to resolve device hostnames no matter where the device is located. | ||||||
|
|
||||||
| ### NetBIOS over TCPIP (NetBT) Support | ||||||
| <Details header="Feature availability"> | ||||||
|
|
||||||
| | [WARP modes](/cloudflare-one/team-and-resources/devices/warp/configure-warp/warp-modes/) | [Zero Trust plans](https://www.cloudflare.com/teams-pricing/) | | ||||||
| | ----------------------------------------------------------------------------------------- | ------------------------------------------------------------- | | ||||||
| | <ul><li> Gateway with WARP</li><li> Secure Web Gateway without DNS filtering </li></ul> | All plans | | ||||||
|
|
||||||
| | System | Availability | Minimum WARP version | | ||||||
| | -------- | ------------ | -------------------- | | ||||||
| | Windows | ✅ | 2025.11.481.3 | | ||||||
| | macOS | ❌ | | | ||||||
| | Linux | ❌ | | | ||||||
| | iOS | ❌ | | | ||||||
| | Android | ❌ | | | ||||||
| | ChromeOS | ❌ | | | ||||||
|
|
||||||
| </Details> | ||||||
|
|
||||||
| NetBIOS over TCPIP (NetBT) is a legacy feature in Windows primarily used for name resolution in some rare scenarios (e.g., SMBv1). It has been deprecated for decades, but Windows has not removed or disabled it by default. Cloudflare WARP disables NetBT on the tunnel interface by default for security reasons and to align with modern best practices, as the vast majority of customers are not using anything requiring NetBIOS over the WARP tunnel. | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
This gets tricky, as they did disable NetBIOS Name Resolution (NBNR) by default -ish, and will probably make progress on this before we want to go check and update this page. I think this is a safer statement that still makes the point. |
||||||
|
|
||||||
| If your organization still relies on legacy applications that require NetBT over the WARP tunnel, this setting allows you to override the default behavior and enable the feature. | ||||||
|
|
||||||
| **Value** | ||||||
|
|
||||||
| * `Disabled`: (default) NetBT is disabled on the WARP tunnel interface. This is the recommended state for security reasons. | ||||||
|
|
||||||
| * `Enabled`: Turns on the setting to have the WARP client enable NetBT on the tunnel interface. This is used in case you are still using NetBT over WARP. | ||||||
|
|
||||||
|
|
||||||
| #### Configuration Methods | ||||||
|
|
||||||
| You can control the state of the NetBT setting using the following methods: | ||||||
|
|
||||||
| #### Dashboard | ||||||
|
|
||||||
| - Turn on/off **NetBIOS over TCPIP** for remote [device profiles](/cloudflare-one/team-and-resources/devices/warp/configure-warp/device-profiles/) and/or [on-prem device profiles](/cloudflare-one/team-and-resources/devices/warp/configure-warp/managed-networks/#4-configure-device-profile). | ||||||
ranbel marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
|
|
||||||
| - (Optional) Verify device settings: | ||||||
|
|
||||||
| <Details header="Verify NetBIOS over TCPIP enablement"> | ||||||
| To check if **NetBIOS over TCPIP** is enabled on the tunnel interface, run the following command: | ||||||
|
|
||||||
| ```cmd | ||||||
| warp-cli settings | findstr "NetBT" | ||||||
| ``` | ||||||
|
|
||||||
| ```cmd output | ||||||
| (network policy) NetBT: true | ||||||
| ``` | ||||||
|
|
||||||
| You can also verify network interface details for the `CloudflareWARP` adapter: | ||||||
|
|
||||||
| ```cmd | ||||||
| ipconfig /all | ||||||
| ``` | ||||||
|
|
||||||
| ```cmd output {8} | ||||||
| Windows IP Configuration | ||||||
| ... | ||||||
|
|
||||||
| Unknown adapter CloudflareWARP: | ||||||
|
|
||||||
| Connection-specific DNS Suffix . : | ||||||
| Description . . . . . . . . . . . : Cloudflare WARP Interface Tunnel | ||||||
| Physical Address. . . . . . . . . : | ||||||
| DHCP Enabled. . . . . . . . . . . : No | ||||||
| Autoconfiguration Enabled . . . . : Yes | ||||||
| IPv6 Address. . . . . . . . . . . : 2606:4700:110:8f79:145:f180:fc4:8106(Preferred) | ||||||
ranbel marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
| Link-local IPv6 Address . . . . . : fe80::83b:d647:4bed:d388%49(Preferred) | ||||||
| IPv4 Address. . . . . . . . . . . : 172.16.0.2(Preferred) | ||||||
| Subnet Mask . . . . . . . . . . . : 255.255.255.255 | ||||||
| Default Gateway . . . . . . . . . : | ||||||
| DNS Servers . . . . . . . . . . . : 127.0.2.2 | ||||||
| 127.0.2.3 | ||||||
| NetBIOS over Tcpip. . . . . . . . : Enabled | ||||||
| ``` | ||||||
| </Details> | ||||||
|
|
||||||
| #### Mobile Device Management (MDM) | ||||||
|
|
||||||
| The setting can be managed through your organization's MDM solution. | ||||||
|
|
||||||
| When configuring your MDM policy for the WARP client, the following example shows how to set the enable\_netbt key to **true** to enable the feature for devices, necessary for legacy scenarios (e.g., **SMBv1** name resolution). | ||||||
|
|
||||||
| | Setting Key | Value Type | Default | Description | | ||||||
| | :---- | :---- | :---- | :---- | | ||||||
| | **enable\_netbt** | **Boolean** | false | Controls whether NetBT is **enabled** (true) or **disabled** (false) on the WARP tunnel interface. | | ||||||
|
|
||||||
| ``` | ||||||
| <dict> | ||||||
| <key>organization</key> | ||||||
| <string>your-team-name</string> | ||||||
| <key>enable_netbt</key> | ||||||
| <true/> | ||||||
| </dict> | ||||||
| ``` | ||||||
|
|
||||||
| ### SCCM VPN boundary support | ||||||
|
|
||||||
| <Details header="Feature availability"> | ||||||
|
|
||||||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.