惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

S
Security Affairs
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
Jina AI
Jina AI
P
Palo Alto Networks Blog
GbyAI
GbyAI
大猫的无限游戏
大猫的无限游戏
A
Arctic Wolf
Hugging Face - Blog
Hugging Face - Blog
小众软件
小众软件
Y
Y Combinator Blog
T
The Blog of Author Tim Ferriss
Blog — PlanetScale
Blog — PlanetScale
S
Schneier on Security
V
Vulnerabilities – Threatpost
C
Cybersecurity and Infrastructure Security Agency CISA
雷峰网
雷峰网
T
Tenable Blog
人人都是产品经理
人人都是产品经理
T
Tor Project blog
C
Cyber Attacks, Cyber Crime and Cyber Security
AWS News Blog
AWS News Blog
Microsoft Security Blog
Microsoft Security Blog
J
Java Code Geeks
Scott Helme
Scott Helme
SecWiki News
SecWiki News
C
CERT Recently Published Vulnerability Notes
Recorded Future
Recorded Future
I
InfoQ
Security Archives - TechRepublic
Security Archives - TechRepublic
Help Net Security
Help Net Security
Cloudbric
Cloudbric
C
Check Point Blog
Engineering at Meta
Engineering at Meta
TaoSecurity Blog
TaoSecurity Blog
B
Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园_首页
N
News and Events Feed by Topic
云风的 BLOG
云风的 BLOG
MyScale Blog
MyScale Blog
腾讯CDC
量子位
Application and Cybersecurity Blog
Application and Cybersecurity Blog
K
Kaspersky official blog
Vercel News
Vercel News
F
Full Disclosure
T
Troy Hunt's Blog
Forbes - Security
Forbes - Security
S
Security @ Cisco Blogs

Nebula

nebula 的节点不能跨运营商通信 Nebula 下创建游戏看不到对方 - V2EX Nebula 的 launchd.plist 用于实现 macOS 上开机自动启动 Nebula - V2EX Slack 开源了他们的 overlay network 工具 Nebula - V2EX
让 Nebula 可以在 Windows 下作为服务自启动 - V2EX
Livid · 2020-01-08 · via Nebula

Nebula 是一个用于构建安全的 overlay network 的开源工具,之前关于这个工具的讨论可以见这些帖子:

最近这段时间,我基本上已经把我的大部分机器都用这个工具连了起来。这样无论我在用什么网络,都可以安全地连到位于各种其他网络里的服务器。

只差那些 Windows 的机器上作为服务自动启动了。今天也搞定了,在这里分享一下过程。

在 Windows 上启动 Nebula 之前需要先安装 TAP 驱动,可以从这里找一个最新的版本:

https://build.openvpn.net/downloads/releases/

目前 Nebula 的 1.0.0 release 里还不支持 Windows 上的服务安装,但是最新的源代码里已经有 service install 的支持了。所以我们需要先从源代码构建一个最新版本的 Nebula。

go get github.com/slackhq/nebula
cd $GOPATH/src/github.com/slackhq/nebula
make service bin-windows

然后就可以在 $GOPATH/src/github.com/slackhq/nebula 下看到新鲜出炉的 nebula.exenebula-cert.exe

然后就可以用这样语法把 Nebula 安装成 Windows 服务了:

nebula -service install -config c:\Example\Nebula\config.yml

需要注意的是,-config 里需要给出配置文件的完整路径。