{"id":11135,"date":"2025-11-05T15:01:18","date_gmt":"2025-11-05T15:01:18","guid":{"rendered":"https:\/\/cheapwindowsvps.com\/blog\/seamless-file-sharing-how-to-use-smb-over-quic-on-windows-server-2025-without-a-vpn\/"},"modified":"2025-11-05T15:01:18","modified_gmt":"2025-11-05T15:01:18","slug":"seamless-file-sharing-how-to-use-smb-over-quic-on-windows-server-2025-without-a-vpn","status":"publish","type":"post","link":"https:\/\/cheapwindowsvps.com\/blog\/seamless-file-sharing-how-to-use-smb-over-quic-on-windows-server-2025-without-a-vpn\/","title":{"rendered":"Seamless File Sharing: How to Use SMB over QUIC on Windows Server 2025 Without a VPN"},"content":{"rendered":"<p>SMB over QUIC is a new feature in Windows Server 2025 that enables users to securely access Windows file shares over the internet without needing a VPN. This functionality, previously available only in the Windows Server 2022 Azure Edition, allows for direct access to SMB file servers from untrusted public networks.<\/p>\n<p>The protocol enhances security through TLS 1.3 encryption with certificates, and it operates over UDP port 443 instead of the traditional TCP port 445. QUIC offers better performance and resilience under poor network conditions, and a new compression method helps reduce bandwidth usage. Moreover, QUIC Client Access Control lets administrators restrict access based on client certificates.<\/p>\n<p>To set up SMB over QUIC on Windows Server 2025, follow these steps:<\/p>\n<ol>\n<li>\n<p><strong>Configuring the File Server<\/strong>: While an Active Directory domain is preferred, SMB over QUIC can be set up in workgroup scenarios. You&#8217;ll need an SSL certificate for your file server&#8217;s FQDN, with the Subject Alternative Name (SAN) field filled out.<\/p>\n<\/li>\n<li>\n<p><strong>Creating a Self-Signed Certificate<\/strong> (if not using a commercial CA):<\/p>\n<pre><code class=\"language-powershell\">$todaydate = Get-Date$add3year = $todaydate.AddYears(3)New-SelfSignedCertificate -dnsname &quot;mfs01.woshub.com&quot; -notafter $add3year -CertStoreLocation cert:LocalMachineMy<\/code><\/pre>\n<\/li>\n<li>\n<p><strong>Mapping the Certificate to the SMB Server<\/strong>:<\/p>\n<pre><code class=\"language-powershell\">$cert = Get-ChildItem -Path &quot;Cert:LocalMachineMy&quot; | Where-Object Thumbprint -eq &quot;D4CB32344D21EB9E38168EA04540DBE509BBD650&quot;New-SmbServerCertificateMapping -Name &quot;mfs01.woshub.com&quot; -Thumbprint $cert.Thumbprint -StoreName My<\/code><\/pre>\n<\/li>\n<li>\n<p><strong>Enabling SMB over QUIC<\/strong>:<\/p>\n<pre><code class=\"language-powershell\">Set-SmbServerConfiguration -EnableSMBQUIC $true<\/code><\/pre>\n<\/li>\n<li>\n<p><strong>Checking Firewall Settings<\/strong>: Ensure that the appropriate rules are enabled in the Windows Defender Firewall to allow access on UDP port 443.<\/p>\n<\/li>\n<li>\n<p><strong>Client Configuration<\/strong>: To connect to the SMB share from a client device, ensure that the client trusts the certificate installed on the server. For organizations using corporate CAs, distribute the necessary root and intermediate certificates.<\/p>\n<\/li>\n<\/ol>\n<p>To map the shared folder, you can use the following command:<\/p>\n<pre><code class=\"language-powershell\">New-SmbMapping -LocalPath W: -RemotePath &quot;\\mfs01.woshub.comDocs&quot; -TransportType QUIC<\/code><\/pre>\n<p>Alternatively:<\/p>\n<pre><code class=\"language-powershell\">net use W: &quot;\\mfs01.woshub.comDocs&quot; \/TRANSPORT:QUIC<\/code><\/pre>\n<p>When checking the Event Viewer, look for Event ID <strong>30832<\/strong> to confirm a successful QUIC connection. If you encounter Event ID <strong>30803<\/strong>, it indicates a trust issue with the server certificate.<\/p>\n<p>To further enhance security, you can enable certificate-based client authentication. This requires clients to present approved certificates before accessing the file server:<\/p>\n<pre><code class=\"language-powershell\">Set-SmbServerCertificateMapping -Name &quot;mfs01.woshub.com&quot; -RequireClientAuthentication $true<\/code><\/pre>\n<p>Although SMB over QUIC provides enhanced encryption for all traffic, it does not support legacy SMB clients including Windows 10 and earlier versions, as well as Samba versions prior to 4.23.<\/p>\n<p>For more detailed information, you can refer to the official documentation on <a target=\"_blank\" rel=\"nofollow noopener\" href=\"https:\/\/learn.microsoft.com\/en-us\/windows-server\/storage\/file-server\/smb-over-quic\">SMB over QUIC<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>SMB over QUIC is a new feature in Windows Server 2025 that enables users to securely access Windows file shares over the internet without needing a VPN. This functionality, previously available only in the Windows Server 2022 Azure Edition, allows for direct access to SMB file servers from untrusted public networks. The protocol enhances security [&hellip;]<\/p>\n","protected":false},"author":0,"featured_media":11136,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[99,121],"tags":[],"class_list":["post-11135","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-windows-11","category-windows-server-2025"],"_links":{"self":[{"href":"https:\/\/cheapwindowsvps.com\/blog\/wp-json\/wp\/v2\/posts\/11135","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cheapwindowsvps.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cheapwindowsvps.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"replies":[{"embeddable":true,"href":"https:\/\/cheapwindowsvps.com\/blog\/wp-json\/wp\/v2\/comments?post=11135"}],"version-history":[{"count":0,"href":"https:\/\/cheapwindowsvps.com\/blog\/wp-json\/wp\/v2\/posts\/11135\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cheapwindowsvps.com\/blog\/wp-json\/wp\/v2\/media\/11136"}],"wp:attachment":[{"href":"https:\/\/cheapwindowsvps.com\/blog\/wp-json\/wp\/v2\/media?parent=11135"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cheapwindowsvps.com\/blog\/wp-json\/wp\/v2\/categories?post=11135"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cheapwindowsvps.com\/blog\/wp-json\/wp\/v2\/tags?post=11135"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}