V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX 提问指南
TiWen
V2EX  ›  问与答

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

  •  1
     
  •   TiWen · 339 天前 · 927 次点击
    这是一个创建于 339 天前的主题,其中的信息可能已经有所发展或是发生改变。

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

    3 条回复    2023-06-16 19:35:46 +08:00
    ysc3839
        1
    ysc3839  
       338 天前 via Android
    在同一局域网的话可以在 Windows Server 上设置 NAT ,然后把要上网机子的默认网关改成 Windows Server 机的 IP 。不过这种方案不属于代理服务器,属于网关 /路由器。
    datocp
        2
    datocp  
       338 天前
    当然可以,右击网卡 /共享 /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  
       338 天前 via iPhone
    windows server 内置 openssh server ,客户端用 ssh 转 socks5 的方式连接 openssh server ( windows 也内置 ssh 的),全套 windows 内置的软件方案
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   5568 人在线   最高记录 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 37ms · UTC 02:59 · PVG 10:59 · LAX 19:59 · JFK 22:59
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.