-
Notifications
You must be signed in to change notification settings - Fork 10.8k
[ZT] Clientless RDP #20767
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
Merged
Merged
[ZT] Clientless RDP #20767
Changes from 20 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
3a67fee
remove SMB partials
ranbel 25d568d
update RDP IA
ranbel 48ca4f2
connect server and create target
ranbel 3a69584
create self-hosted app partials
ranbel 6b64018
remove legacy
ranbel 2382f12
rdp self-hosted app
ranbel deb91ac
update browser rendering
ranbel 204bf7b
browser-rendered sessions
ranbel dd2ec40
clarify active session
ranbel 8674af5
update browser rendering overview
ranbel 08a9d78
update app types
ranbel ed53789
user steps
ranbel 6130432
remove legacy note
ranbel 4d09dfa
session duration partial
ranbel bfd1d61
clean up rdp
ranbel 5200ef7
Merge branch 'production' into ranbel/clientless-rdp
ranbel 61f7d3e
fix partial
ranbel b378725
review feedback
ranbel 0db6c20
add partial
ranbel 2d670a8
update titles
ranbel 4773323
additional feedback
ranbel 7b62b2d
Apply suggestions from code review
ranbel 3e14d53
Update src/content/docs/cloudflare-one/connections/connect-networks/u…
ranbel 10b52da
Update src/content/docs/cloudflare-one/connections/connect-networks/u…
ranbel 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
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
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
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 |
|---|---|---|
|
|
@@ -5,34 +5,43 @@ sidebar: | |
| order: 3 | ||
| --- | ||
|
|
||
| Cloudflare can render certain non-web applications in your browser without the need for client software or end-user configuration changes. Cloudflare currently supports rendering a terminal for SSH and VNC connections in a user's browser. | ||
| import { Render } from "~/components"; | ||
|
|
||
| :::note | ||
| You can only enable browser rendering on domains and subdomains, not for specific paths. | ||
| ::: | ||
| Cloudflare can render SSH, VNC, and RDP applications in a browser without the need for client software or end-user configuration changes. For SSH and VNC, user email prefixes must match their username on the server. RDP leverages your existing Windows usernames and passwords for authenticating to the Windows server; Cloudflare does not manage any credentials on the Windows server. | ||
|
|
||
| ## Enable browser rendering | ||
| ## Limitations | ||
|
|
||
| To enable browser rendering: | ||
| - Browser rendering is only supported for [self-hosted public applications](/cloudflare-one/applications/configure-apps/self-hosted-public-app/), not private IPs or hostnames. | ||
| - You can only render a browser-rendered terminal on domains and subdomains, not on specific paths. | ||
| - <Render file="access/self-hosted-app/ssh-sessions" /> | ||
|
|
||
| 1. In [Zero Trust](https://one.dash.cloudflare.com), go to **Access** > **Applications**. | ||
| 2. Locate the SSH or VNC application you created when [connecting the server to Cloudflare](/cloudflare-one/connections/connect-networks/use-cases/ssh/). Select **Configure**. | ||
| 3. In the **Policies** tab, ensure that only **Allow** or **Block** policies are present. **Bypass** and **Service Auth** are not supported for browser-rendered applications. | ||
| 4. Go to **Advanced settings** > **Browser rendering settings**. | ||
| 5. For **Browser rendering**, choose _SSH_ or _VNC_. | ||
| ## Turn on browser rendering | ||
|
|
||
| :::note | ||
| ### SSH and VNC | ||
|
|
||
| When connecting over SSH, Cloudflare supports following key exchange algorithms: | ||
|
|
||
| - `[email protected]` | ||
| - `curve25519-sha256` | ||
| - `ecdh-sha2-nistp256` | ||
| - `ecdh-sha2-nistp384` | ||
| - `ecdh-sha2-nistp521` | ||
|
|
||
| ::: | ||
| To turn on browser rendering for an SSH or VNC application: | ||
|
|
||
| 1. In [Zero Trust](https://one.dash.cloudflare.com), go to **Access** > **Applications**. | ||
| 2. Locate the SSH or VNC application you created when [connecting the server to Cloudflare](/cloudflare-one/connections/connect-networks/use-cases/ssh/). Select **Configure**. | ||
| 3. In the **Policies** tab, ensure that only **Allow** or **Block** policies are present. **Bypass** and **Service Auth** are not supported for browser-rendered applications. | ||
| 4. Go to **Advanced settings** > **Browser rendering settings**. | ||
| 5. For **Browser rendering**, choose _SSH_ or _VNC_. | ||
| 6. Select **Save application**. | ||
|
|
||
| When users authenticate and visit the URL of the application, Cloudflare will render a terminal in their browser. | ||
|
|
||
| ### RDP | ||
|
|
||
| To set up browser-rendering for RDP, refer to our [browser-based RDP guide](/cloudflare-one/connections/connect-networks/use-cases/rdp/rdp-browser/). | ||
|
|
||
| ### SSH key exchange algorithms | ||
|
|
||
| Cloudflare's browser-rendered SSH terminal supports the following Key Exchange (KEX) algorithms: | ||
|
|
||
| - `[email protected]` | ||
| - `curve25519-sha256` | ||
| - `ecdh-sha2-nistp256` | ||
| - `ecdh-sha2-nistp384` | ||
| - `ecdh-sha2-nistp521` | ||
|
|
||
| For browser-rendered SSH connections to work, you may need to update the `sshd_config` file on your server to accept these algorithms. | ||
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
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.