V2EX = way to explore
V2EX 是一个关于分享和探索的地方
Sign Up Now
For Existing Member  Sign In
TiWen
V2EX  ›  问与答

Windows Server 能不能不借助任何第三方软件搭建上网代理服务器

  •  1
     
  •   TiWen · Jun 16, 2023 · 1822 views
    This topic created in 1047 days ago, the information mentioned may be changed or developed.

    局域网的电脑不能直接上网,现在想用一台可以上网的电脑作为局域网电脑上网的代理服务器,网上搜了一圈,发现都要安装软件才能行,难道 Windows Server 系统本身不能实现这个需求吗?

    3 replies    2023-06-16 19:35:46 +08:00
    ysc3839
        1
    ysc3839  
       Jun 16, 2023 via Android
    在同一局域网的话可以在 Windows Server 上设置 NAT ,然后把要上网机子的默认网关改成 Windows Server 机的 IP 。不过这种方案不属于代理服务器,属于网关 /路由器。
    datocp
        2
    datocp  
       Jun 16, 2023
    当然可以,右击网卡 /共享 /intenet 连接共享,好像得单独一网卡。

    简单的 socks5 可以用 stunnel ,只是 windows 挂 socks5 软件有限,
    https://www.stunnel.org/auth.html

    Server Configuration
    Unless PSK authentication is configured, each stunnel server needs a certificate with the corresponding private key. The Windows installer of stunnel automatically builds a certificate. On Unix platforms, a certificate can be built with "make cert". A certificate can also be purchased from one of the available commercial certificate authorities.

    A trivial configuration example:

    [certificate-based server]
    accept = <server_port>
    connect = <dst_port>
    cert = cert.pem
    key = key.pem
    The "key" option may be omitted if cert.pem also contains the private key.

    Client Configuration
    stunnel can use an existing PKI (Public Key Infrastructure). The following configuration requires stunnel 5.15 or later:

    [PKI client]
    client = yes
    accept = 127.0.0.1:<src_port>
    connect = <server_host>:<server_port>
    verifyChain = yes
    CAfile = ca-certs.pem
    checkHost = <server_host>
    The ca-certs.pem file contains the certificates of trusted certificate authorities.
    yinmin
        3
    yinmin  
       Jun 16, 2023 via iPhone
    windows server 内置 openssh server ,客户端用 ssh 转 socks5 的方式连接 openssh server ( windows 也内置 ssh 的),全套 windows 内置的软件方案
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   3588 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 46ms · UTC 00:40 · PVG 08:40 · LAX 17:40 · JFK 20:40
    ♥ Do have faith in what you're doing.