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

2023-06-16 10:52:05 +08:00
 TiWen

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

1147 次点击
所在节点    问与答
3 条回复
ysc3839
2023-06-16 12:49:19 +08:00
在同一局域网的话可以在 Windows Server 上设置 NAT ,然后把要上网机子的默认网关改成 Windows Server 机的 IP 。不过这种方案不属于代理服务器,属于网关 /路由器。
datocp
2023-06-16 13:18:33 +08:00
当然可以,右击网卡 /共享 /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
2023-06-16 19:35:46 +08:00
windows server 内置 openssh server ,客户端用 ssh 转 socks5 的方式连接 openssh server ( windows 也内置 ssh 的),全套 windows 内置的软件方案

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/949220

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX