{"id":2572,"date":"2025-02-19T17:44:00","date_gmt":"2025-02-19T09:44:00","guid":{"rendered":"https:\/\/www.ruianding.com\/blog\/?p=2572"},"modified":"2025-02-19T19:25:00","modified_gmt":"2025-02-19T11:25:00","slug":"frp-part-2-client-side-setup-windows","status":"publish","type":"post","link":"https:\/\/www.ruianding.com\/blog\/frp-part-2-client-side-setup-windows\/","title":{"rendered":"FRP \u2013 Part 2: Client-Side Setup (Windows)"},"content":{"rendered":"\n<p>In <a href=\"https:\/\/www.ruianding.com\/blog\/frp-part-1-introduction-and-server-side-setup\/\"><strong>Part 1<\/strong><\/a> of this series, we explained <strong>what FRP is<\/strong> and how to <strong>set up the FRP server (frps)<\/strong> on a public-facing machine. Now it\u2019s time to configure the <strong>FRP client (frpc)<\/strong> on a Windows computer so you can tunnel local services through the FRP server and make them accessible from the internet.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-cyan-bluish-gray-color has-alpha-channel-opacity has-cyan-bluish-gray-background-color has-background is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">1. Prerequisites<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You have <strong>Windows<\/strong> on your local machine (e.g., Windows 10 or 11).<\/li>\n\n\n\n<li>You have a local service you want to expose\u2014for example, a web app running on port 8080.<\/li>\n\n\n\n<li>The <strong>server\u2019s firewall or security group<\/strong> allows inbound connections on the FRP server\u2019s listening port (e.g., <strong>7000<\/strong>).<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-cyan-bluish-gray-color has-alpha-channel-opacity has-cyan-bluish-gray-background-color has-background is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">2. Download and Extract frpc for Windows<\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Visit the FRP Releases page<\/strong><br>Go to the official <a href=\"https:\/\/github.com\/fatedier\/frp\/releases\">FRP GitHub Releases<\/a>.<\/li>\n\n\n\n<li><strong>Choose the Windows build<\/strong><br>For most modern Windows systems, select something like <code>frp_0.61.1_windows_amd64.zip<\/code> (or the latest version).<\/li>\n\n\n\n<li><strong>Extract the ZIP<\/strong><br>Unzip the file into a convenient folder, e.g.: <code>C:\\frp\\<\/code> Inside this directory, you should see:\n<ul class=\"wp-block-list\">\n<li><code>frpc.exe<\/code><\/li>\n\n\n\n<li>(Optionally) <code>frps.exe<\/code><\/li>\n\n\n\n<li>Example config files like <code>frpc_full.ini<\/code>, <code>frpc_full.toml<\/code>, etc.<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-cyan-bluish-gray-color has-alpha-channel-opacity has-cyan-bluish-gray-background-color has-background is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">3. Create a Client Configuration (TOML Example)<\/h2>\n\n\n\n<p>As I metioned in previous post, while INI format is still supported (with a deprecation warning), it\u2019s recommended to use <strong>TOML<\/strong>, <strong>JSON<\/strong>, or <strong>YAML<\/strong>. Here\u2019s a <strong>TOML<\/strong> example named <code>frpc.toml<\/code>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">3.1 Basic Configuration<\/h3>\n\n\n\n<p>Open <strong>Notepad<\/strong> (or your favorite editor) and create <code>C:\\frp\\frpc.toml<\/code>:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">[common]\nserver_addr = \"YOUR_SERVER_PUBLIC_IP_OR_DOMAIN\"\nserver_port = 7000\ntoken = \"YOUR_SECRET_TOKEN\"<\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>server_addr<\/strong>: IP or domain of the server where <strong>frps<\/strong> is running (e.g., <code>1.2.3.4<\/code> or <code>myserver.com<\/code>).<\/li>\n\n\n\n<li><strong>server_port<\/strong>: Match the <code>bind_port<\/code> from your <code>frps.toml<\/code> (often <strong>7000<\/strong>).<\/li>\n\n\n\n<li><strong>token<\/strong>: Must match the token set in the server config.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">3.2 Defining Proxies<\/h3>\n\n\n\n<p>Below <code>[common]<\/code>, you can define one or more \u201cproxies\u201d to tunnel specific services. Let\u2019s look at two approaches:<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">(A) HTTP\/HTTPS Proxy (with Domain)<\/h4>\n\n\n\n<p>If you have a domain (<code>example.com<\/code>) pointing to your FRP server:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">[proxies.my_http]\ntype = \"http\"\nlocal_ip = \"127.0.0.1\"\nlocal_port = 8080\ncustom_domains = [\"example.com\"]<\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>type = &#8220;http&#8221;<\/strong>: Tunneling over HTTP (or HTTPS if you configure TLS on the server side).<\/li>\n\n\n\n<li><strong>local_ip<\/strong> and <strong>local_port<\/strong>: The service on your Windows machine (e.g., a web server on port <code>8080<\/code>).<\/li>\n\n\n\n<li><strong>custom_domains<\/strong>: FRP will direct traffic for <code>example.com<\/code> (A record points to your server IP) to this local service.<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\">(B) TCP Proxy (Direct Port Mapping)<\/h4>\n\n\n\n<p>If you do <strong>not<\/strong> have a domain or you just want to map a port:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">[proxies.my_tcp]\ntype = \"tcp\"\nlocal_ip = \"127.0.0.1\"\nlocal_port = 8080\nremote_port = 9000<\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>type = &#8220;tcp&#8221;<\/strong>: Expose your service over a raw TCP tunnel.<\/li>\n\n\n\n<li><strong>remote_port<\/strong>: The port on the FRP server that will map to your local <code>8080<\/code>.<\/li>\n<\/ul>\n\n\n\n<p>When someone visits <code>YOUR_SERVER_IP:9000<\/code>, FRP will forward the connection to <code>127.0.0.1:8080<\/code> on your Windows machine.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p><strong>Note<\/strong>: You can create multiple <code>[proxies.*]<\/code> sections to expose multiple services.<\/p>\n<\/blockquote>\n\n\n\n<h4 class=\"wp-block-heading\">(C) RDP Proxy <\/h4>\n\n\n\n<p>If you wish to access your Windows machine\u2019s Remote Desktop (RDP) service through FRP, you can set up a TCP proxy that maps the local RDP port (default <strong>3389<\/strong>) to a remote port on your FRP server. For example:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">[proxies.my_rdp]\ntype = \"tcp\"\nlocal_ip = \"127.0.0.1\"\nlocal_port = 3389\nremote_port = 6000<\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>local_port (3389)<\/strong>: The default port for Windows RDP.<\/li>\n\n\n\n<li><strong>remote_port (6000)<\/strong>: An arbitrary free port on the FRP server. You can choose a different port if needed.<\/li>\n<\/ul>\n\n\n\n<p>Once configured, connecting to the FRP server at YOUR_SERVER_IP:6000 will forward you to your Windows machine\u2019s RDP session.<\/p>\n\n\n\n<p><strong>Note<\/strong>: Ensure that your Windows machine\u2019s RDP is enabled and that the Windows Firewall permits inbound RDP connections. Make sure that your FRP server remote_port is enabled as well.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-cyan-bluish-gray-color has-alpha-channel-opacity has-cyan-bluish-gray-background-color has-background is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">4. Run frpc on Windows<\/h2>\n\n\n\n<p>Open <strong>Command Prompt<\/strong> or <strong>PowerShell<\/strong>, navigate to <code>C:\\frp\\<\/code>, and run:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">.\\frpc.exe -c .\\frpc.toml<\/pre>\n\n\n\n<p>If everything is correct, you\u2019ll see logs like:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">2025\/02\/17 09:00:00 [I] [service.go:XXX] login to server success, get run id [abcd1234] ...\n2025\/02\/17 09:00:00 [I] [proxy_manager.go:XXX] proxy added: [my_http]\n<\/pre>\n\n\n\n<p>This indicates that <strong>frpc<\/strong> successfully connected to the server and is now forwarding traffic.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-cyan-bluish-gray-color has-alpha-channel-opacity has-cyan-bluish-gray-background-color has-background is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">5. Verifying the Tunnel<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">5.1 Dashboard (On the Server)<\/h3>\n\n\n\n<p>If you enabled a <strong>dashboard<\/strong> on the server (e.g., port <strong>7500<\/strong> in your <code>frps.toml<\/code>), open:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">http:\/\/YOUR_SERVER_IP:7500\n<\/pre>\n\n\n\n<p>Log in with the username\/password you configured (<code>admin\/admin123<\/code> by default). You should see the <strong>my_http<\/strong> or <strong>my_tcp<\/strong> proxy listed under \u201cProxies.\u201d<\/p>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"643\" src=\"https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2025\/02\/image-8-1024x643.png\" alt=\"\" class=\"wp-image-2575\" style=\"width:646px;height:auto\" srcset=\"https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2025\/02\/image-8-1024x643.png 1024w, https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2025\/02\/image-8-300x188.png 300w, https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2025\/02\/image-8-768x482.png 768w, https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2025\/02\/image-8-1536x964.png 1536w, https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2025\/02\/image-8.png 1794w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">5.2 Accessing Your Service<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>If you used HTTP + domain<\/strong>: Visit <code>http:\/\/example.com<\/code> (assuming your DNS points to the server IP).<\/li>\n\n\n\n<li><strong>If you used TCP + remote_port<\/strong>: Go to <code>http:\/\/YOUR_SERVER_IP:9000<\/code> (or <code>telnet YOUR_SERVER_IP 9000<\/code> for raw TCP).<\/li>\n\n\n\n<li>Confirm you can reach your local service (e.g., a web page, API, or database port).<\/li>\n<\/ul>\n\n\n\n<p>If everything is set up correctly, your <strong>Windows<\/strong> machine\u2019s service is now publicly accessible through the FRP server.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-cyan-bluish-gray-color has-alpha-channel-opacity has-cyan-bluish-gray-background-color has-background is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">6. Common Pitfalls<\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Token Mismatch<\/strong>\n<ul class=\"wp-block-list\">\n<li>If your server uses a <code>token<\/code>, ensure the same token is set in <code>frpc.toml<\/code>. Otherwise, you\u2019ll see a \u201cbad authentication\u201d error.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Local Port Unavailable<\/strong>\n<ul class=\"wp-block-list\">\n<li>Ensure the service is actually running on the port you specified (<code>8080<\/code> in these examples). If your app is on a different port, adjust accordingly.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Firewall or NAT on the Client Side<\/strong>\n<ul class=\"wp-block-list\">\n<li>Typically Windows outbound traffic is allowed, but double-check that your service and outbound port aren\u2019t blocked.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Missing or Incorrect DNS<\/strong>\n<ul class=\"wp-block-list\">\n<li>If you\u2019re using a custom domain, be sure the domain\u2019s A record points to the FRP server\u2019s IP.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Server-Side Firewall<\/strong>\n<ul class=\"wp-block-list\">\n<li>If the server\u2019s firewall or security group isn\u2019t open on the FRP port, you won\u2019t be able to connect from Windows.<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-cyan-bluish-gray-color has-alpha-channel-opacity has-cyan-bluish-gray-background-color has-background is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">7. Performance Considerations<\/h2>\n\n\n\n<p>Remember that <strong>traffic flows through your FRP server<\/strong>. The overall speed is influenced by:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Your local (Windows) upload\/download bandwidth<\/strong><\/li>\n\n\n\n<li><strong>The FRP server\u2019s network capacity<\/strong><\/li>\n\n\n\n<li><strong>Geographical distance &amp; routing<\/strong> (especially if the server is far away)<\/li>\n<\/ul>\n\n\n\n<p>In other words, whichever segment is the bottleneck (local network or server bandwidth) will set the effective limit.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-cyan-bluish-gray-color has-alpha-channel-opacity has-cyan-bluish-gray-background-color has-background is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">8. Persisting frpc as a Service (Optional)<\/h2>\n\n\n\n<p>If you want <code>frpc<\/code> to <strong>auto-start<\/strong> when you log in or reboot your Windows PC, you have a few options:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Scheduled Task<\/strong>\n<ul class=\"wp-block-list\">\n<li>Use Windows Task Scheduler to run <code>frpc.exe -c frpc.toml<\/code> at login or system startup.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Startup Folder<\/strong>\n<ul class=\"wp-block-list\">\n<li>Place a shortcut to <code>frpc.exe<\/code> in the Windows \u201cStartup\u201d folder.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li><strong>Run as a Service<\/strong> (3rd-Party Tools)\n<ul class=\"wp-block-list\">\n<li>Tools like <a href=\"https:\/\/nssm.cc\/\">NSSM (Non-Sucking Service Manager)<\/a> can help you run <code>frpc.exe<\/code> as a Windows service.<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-cyan-bluish-gray-color has-alpha-channel-opacity has-cyan-bluish-gray-background-color has-background is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>You\u2019ve now <strong>completed<\/strong> your FRP setup:<\/p>\n\n\n\n<p><strong>Part 1<\/strong> covered the <strong>server side<\/strong>: installing <code>frps<\/code> on a public IP host, configuring ports, setting up security groups, and launching via systemd.<\/p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-ruian-039-s-tech-troubleshooting-toolbox wp-block-embed-ruian-039-s-tech-troubleshooting-toolbox\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"iSYl1ufhux\"><a href=\"https:\/\/www.ruianding.com\/blog\/frp-part-1-introduction-and-server-side-setup\/\">FRP \u2013 Part 1: Introduction and Server-Side Setup<\/a><\/blockquote><iframe loading=\"lazy\" class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"&#8220;FRP \u2013 Part 1: Introduction and Server-Side Setup&#8221; &#8212; Ruian&#039;s Tech Troubleshooting Toolbox\" src=\"https:\/\/www.ruianding.com\/blog\/frp-part-1-introduction-and-server-side-setup\/embed\/#?secret=UHqJWqvQMw#?secret=iSYl1ufhux\" data-secret=\"iSYl1ufhux\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"><\/iframe>\n<\/div><\/figure>\n\n\n\n<p><strong>This Part 2<\/strong> introduced the <strong>Windows client<\/strong>: installing <code>frpc<\/code>, creating a TOML config, and mapping local ports or domains to the server.<\/p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-ruian-039-s-tech-troubleshooting-toolbox wp-block-embed-ruian-039-s-tech-troubleshooting-toolbox\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"EAAfC9Ic8d\"><a href=\"https:\/\/www.ruianding.com\/blog\/frp-part-2-client-side-setup-windows\/\">FRP \u2013 Part 2: Client-Side Setup (Windows)<\/a><\/blockquote><iframe loading=\"lazy\" class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"&#8220;FRP \u2013 Part 2: Client-Side Setup (Windows)&#8221; &#8212; Ruian&#039;s Tech Troubleshooting Toolbox\" src=\"https:\/\/www.ruianding.com\/blog\/frp-part-2-client-side-setup-windows\/embed\/#?secret=AWOMcVKizo#?secret=EAAfC9Ic8d\" data-secret=\"EAAfC9Ic8d\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"><\/iframe>\n<\/div><\/figure>\n\n\n\n<p>With both sides configured, your internal Windows services are now accessible online via FRP\u2014without needing to expose your local network directly. Enjoy your newly tunneled setup!<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In Part 1 of this series, we explained what FRP is and how to set up the FRP server (frps) on a public-facing machine. Now it\u2019s time to configure the FRP client (frpc) on a Windows computer so you can tunnel local services through the FRP server and make them accessible from the internet. 1. [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_themeisle_gutenberg_block_has_review":false,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-2572","post","type-post","status-publish","format-standard","hentry","category-miscellaneous"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>FRP \u2013 Part 2: Client-Side Setup (Windows) - \u6781\u7b80IT\uff5cSimpleIT<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.ruianding.com\/blog\/frp-part-2-client-side-setup-windows\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"FRP \u2013 Part 2: Client-Side Setup (Windows) - \u6781\u7b80IT\uff5cSimpleIT\" \/>\n<meta property=\"og:description\" content=\"In Part 1 of this series, we explained what FRP is and how to set up the FRP server (frps) on a public-facing machine. Now it\u2019s time to configure the FRP client (frpc) on a Windows computer so you can tunnel local services through the FRP server and make them accessible from the internet. 1. [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.ruianding.com\/blog\/frp-part-2-client-side-setup-windows\/\" \/>\n<meta property=\"og:site_name\" content=\"\u6781\u7b80IT\uff5cSimpleIT\" \/>\n<meta property=\"article:published_time\" content=\"2025-02-19T09:44:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-02-19T11:25:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2025\/02\/image-8.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1794\" \/>\n\t<meta property=\"og:image:height\" content=\"1126\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Ruian Ding\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ruian Ding\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.ruianding.com\/blog\/frp-part-2-client-side-setup-windows\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.ruianding.com\/blog\/frp-part-2-client-side-setup-windows\/\"},\"author\":{\"name\":\"Ruian Ding\",\"@id\":\"https:\/\/www.ruianding.com\/blog\/#\/schema\/person\/440d88575b7dc819a4cefc8c4199db3b\"},\"headline\":\"FRP \u2013 Part 2: Client-Side Setup (Windows)\",\"datePublished\":\"2025-02-19T09:44:00+00:00\",\"dateModified\":\"2025-02-19T11:25:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.ruianding.com\/blog\/frp-part-2-client-side-setup-windows\/\"},\"wordCount\":1005,\"publisher\":{\"@id\":\"https:\/\/www.ruianding.com\/blog\/#\/schema\/person\/440d88575b7dc819a4cefc8c4199db3b\"},\"image\":{\"@id\":\"https:\/\/www.ruianding.com\/blog\/frp-part-2-client-side-setup-windows\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2025\/02\/image-8-1024x643.png\",\"articleSection\":[\"Miscellaneous\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.ruianding.com\/blog\/frp-part-2-client-side-setup-windows\/\",\"url\":\"https:\/\/www.ruianding.com\/blog\/frp-part-2-client-side-setup-windows\/\",\"name\":\"FRP \u2013 Part 2: Client-Side Setup (Windows) - \u6781\u7b80IT\uff5cSimpleIT\",\"isPartOf\":{\"@id\":\"https:\/\/www.ruianding.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.ruianding.com\/blog\/frp-part-2-client-side-setup-windows\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.ruianding.com\/blog\/frp-part-2-client-side-setup-windows\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2025\/02\/image-8-1024x643.png\",\"datePublished\":\"2025-02-19T09:44:00+00:00\",\"dateModified\":\"2025-02-19T11:25:00+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.ruianding.com\/blog\/frp-part-2-client-side-setup-windows\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.ruianding.com\/blog\/frp-part-2-client-side-setup-windows\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.ruianding.com\/blog\/frp-part-2-client-side-setup-windows\/#primaryimage\",\"url\":\"https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2025\/02\/image-8.png\",\"contentUrl\":\"https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2025\/02\/image-8.png\",\"width\":1794,\"height\":1126},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.ruianding.com\/blog\/frp-part-2-client-side-setup-windows\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.ruianding.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"FRP \u2013 Part 2: Client-Side Setup (Windows)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.ruianding.com\/blog\/#website\",\"url\":\"https:\/\/www.ruianding.com\/blog\/\",\"name\":\"Ruian's Tech Troubleshooting Toolbox\",\"description\":\"Debug the World.\",\"publisher\":{\"@id\":\"https:\/\/www.ruianding.com\/blog\/#\/schema\/person\/440d88575b7dc819a4cefc8c4199db3b\"},\"alternateName\":\"\u4e01\u777f\u5b89\u7684\u6280\u672f\u5206\u4eab\u535a\u5ba2\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.ruianding.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/www.ruianding.com\/blog\/#\/schema\/person\/440d88575b7dc819a4cefc8c4199db3b\",\"name\":\"Ruian Ding\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.ruianding.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2023\/05\/logo.png\",\"contentUrl\":\"https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2023\/05\/logo.png\",\"width\":284,\"height\":284,\"caption\":\"Ruian Ding\"},\"logo\":{\"@id\":\"https:\/\/www.ruianding.com\/blog\/#\/schema\/person\/image\/\"},\"description\":\"I am currently a Support Specialist at NIO, focusing on cloud-related issues for NIO Power. Previously, at Microsoft Entra ID, I specialized in identity and access management (IAM), including device registration, Windows Hello for Business (WHfB), multi-factor authentication (MFA), and single sign-on (SSO). In addition to my core expertise, I have a strong foundation in Active Directory, Servers, Cloud Computing, Network Administration, and Front-end Web Development. This diverse technical skill set enables me to effectively handle a wide range of challenges in a fast-paced IT environment.\",\"sameAs\":[\"https:\/\/www.ruianding.com\"],\"url\":\"https:\/\/www.ruianding.com\/blog\/author\/ruiand\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"FRP \u2013 Part 2: Client-Side Setup (Windows) - \u6781\u7b80IT\uff5cSimpleIT","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.ruianding.com\/blog\/frp-part-2-client-side-setup-windows\/","og_locale":"en_US","og_type":"article","og_title":"FRP \u2013 Part 2: Client-Side Setup (Windows) - \u6781\u7b80IT\uff5cSimpleIT","og_description":"In Part 1 of this series, we explained what FRP is and how to set up the FRP server (frps) on a public-facing machine. Now it\u2019s time to configure the FRP client (frpc) on a Windows computer so you can tunnel local services through the FRP server and make them accessible from the internet. 1. [&hellip;]","og_url":"https:\/\/www.ruianding.com\/blog\/frp-part-2-client-side-setup-windows\/","og_site_name":"\u6781\u7b80IT\uff5cSimpleIT","article_published_time":"2025-02-19T09:44:00+00:00","article_modified_time":"2025-02-19T11:25:00+00:00","og_image":[{"width":1794,"height":1126,"url":"https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2025\/02\/image-8.png","type":"image\/png"}],"author":"Ruian Ding","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Ruian Ding","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.ruianding.com\/blog\/frp-part-2-client-side-setup-windows\/#article","isPartOf":{"@id":"https:\/\/www.ruianding.com\/blog\/frp-part-2-client-side-setup-windows\/"},"author":{"name":"Ruian Ding","@id":"https:\/\/www.ruianding.com\/blog\/#\/schema\/person\/440d88575b7dc819a4cefc8c4199db3b"},"headline":"FRP \u2013 Part 2: Client-Side Setup (Windows)","datePublished":"2025-02-19T09:44:00+00:00","dateModified":"2025-02-19T11:25:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.ruianding.com\/blog\/frp-part-2-client-side-setup-windows\/"},"wordCount":1005,"publisher":{"@id":"https:\/\/www.ruianding.com\/blog\/#\/schema\/person\/440d88575b7dc819a4cefc8c4199db3b"},"image":{"@id":"https:\/\/www.ruianding.com\/blog\/frp-part-2-client-side-setup-windows\/#primaryimage"},"thumbnailUrl":"https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2025\/02\/image-8-1024x643.png","articleSection":["Miscellaneous"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.ruianding.com\/blog\/frp-part-2-client-side-setup-windows\/","url":"https:\/\/www.ruianding.com\/blog\/frp-part-2-client-side-setup-windows\/","name":"FRP \u2013 Part 2: Client-Side Setup (Windows) - \u6781\u7b80IT\uff5cSimpleIT","isPartOf":{"@id":"https:\/\/www.ruianding.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.ruianding.com\/blog\/frp-part-2-client-side-setup-windows\/#primaryimage"},"image":{"@id":"https:\/\/www.ruianding.com\/blog\/frp-part-2-client-side-setup-windows\/#primaryimage"},"thumbnailUrl":"https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2025\/02\/image-8-1024x643.png","datePublished":"2025-02-19T09:44:00+00:00","dateModified":"2025-02-19T11:25:00+00:00","breadcrumb":{"@id":"https:\/\/www.ruianding.com\/blog\/frp-part-2-client-side-setup-windows\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.ruianding.com\/blog\/frp-part-2-client-side-setup-windows\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.ruianding.com\/blog\/frp-part-2-client-side-setup-windows\/#primaryimage","url":"https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2025\/02\/image-8.png","contentUrl":"https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2025\/02\/image-8.png","width":1794,"height":1126},{"@type":"BreadcrumbList","@id":"https:\/\/www.ruianding.com\/blog\/frp-part-2-client-side-setup-windows\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.ruianding.com\/blog\/"},{"@type":"ListItem","position":2,"name":"FRP \u2013 Part 2: Client-Side Setup (Windows)"}]},{"@type":"WebSite","@id":"https:\/\/www.ruianding.com\/blog\/#website","url":"https:\/\/www.ruianding.com\/blog\/","name":"Ruian's Tech Troubleshooting Toolbox","description":"Debug the World.","publisher":{"@id":"https:\/\/www.ruianding.com\/blog\/#\/schema\/person\/440d88575b7dc819a4cefc8c4199db3b"},"alternateName":"\u4e01\u777f\u5b89\u7684\u6280\u672f\u5206\u4eab\u535a\u5ba2","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.ruianding.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/www.ruianding.com\/blog\/#\/schema\/person\/440d88575b7dc819a4cefc8c4199db3b","name":"Ruian Ding","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.ruianding.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2023\/05\/logo.png","contentUrl":"https:\/\/www.ruianding.com\/blog\/wp-content\/uploads\/2023\/05\/logo.png","width":284,"height":284,"caption":"Ruian Ding"},"logo":{"@id":"https:\/\/www.ruianding.com\/blog\/#\/schema\/person\/image\/"},"description":"I am currently a Support Specialist at NIO, focusing on cloud-related issues for NIO Power. Previously, at Microsoft Entra ID, I specialized in identity and access management (IAM), including device registration, Windows Hello for Business (WHfB), multi-factor authentication (MFA), and single sign-on (SSO). In addition to my core expertise, I have a strong foundation in Active Directory, Servers, Cloud Computing, Network Administration, and Front-end Web Development. This diverse technical skill set enables me to effectively handle a wide range of challenges in a fast-paced IT environment.","sameAs":["https:\/\/www.ruianding.com"],"url":"https:\/\/www.ruianding.com\/blog\/author\/ruiand\/"}]}},"_links":{"self":[{"href":"https:\/\/www.ruianding.com\/blog\/wp-json\/wp\/v2\/posts\/2572","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.ruianding.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.ruianding.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.ruianding.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.ruianding.com\/blog\/wp-json\/wp\/v2\/comments?post=2572"}],"version-history":[{"count":3,"href":"https:\/\/www.ruianding.com\/blog\/wp-json\/wp\/v2\/posts\/2572\/revisions"}],"predecessor-version":[{"id":2578,"href":"https:\/\/www.ruianding.com\/blog\/wp-json\/wp\/v2\/posts\/2572\/revisions\/2578"}],"wp:attachment":[{"href":"https:\/\/www.ruianding.com\/blog\/wp-json\/wp\/v2\/media?parent=2572"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.ruianding.com\/blog\/wp-json\/wp\/v2\/categories?post=2572"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.ruianding.com\/blog\/wp-json\/wp\/v2\/tags?post=2572"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}