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

推荐订阅源

Vercel News
Vercel News
SecWiki News
SecWiki News
WordPress大学
WordPress大学
小众软件
小众软件
博客园 - 司徒正美
酷 壳 – CoolShell
酷 壳 – CoolShell
V
Visual Studio Blog
Y
Y Combinator Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
云风的 BLOG
云风的 BLOG
MyScale Blog
MyScale Blog
K
Kaspersky official blog
T
The Exploit Database - CXSecurity.com
腾讯CDC
Scott Helme
Scott Helme
I
InfoQ
Cyberwarzone
Cyberwarzone
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Security Latest
Security Latest
The Register - Security
The Register - Security
Project Zero
Project Zero
F
Fortinet All Blogs
C
CERT Recently Published Vulnerability Notes
A
Arctic Wolf
C
Cisco Blogs
L
LINUX DO - 热门话题
P
Privacy International News Feed
IT之家
IT之家
U
Unit 42
P
Privacy & Cybersecurity Law Blog
H
Help Net Security
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
C
Cyber Attacks, Cyber Crime and Cyber Security
P
Palo Alto Networks Blog
F
Full Disclosure
宝玉的分享
宝玉的分享
Simon Willison's Weblog
Simon Willison's Weblog
L
Lohrmann on Cybersecurity
Google DeepMind News
Google DeepMind News
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
H
Hacker News: Front Page
Know Your Adversary
Know Your Adversary
PCI Perspectives
PCI Perspectives
Hugging Face - Blog
Hugging Face - Blog
AWS News Blog
AWS News Blog
MongoDB | Blog
MongoDB | Blog
S
Schneier on Security
Recent Announcements
Recent Announcements
Forbes - Security
Forbes - Security
Cisco Talos Blog
Cisco Talos Blog

博客园 - lsgxeva

OpenWrt 集成 openNDS 进行 强制门户(Captive Portal) 认证 OpenWrt 集成 easycwmpd 成为 TR-069协议中的设备端(CPE) eh.h acu100 bridge vlan config 卫星天线(KA 0.85m 4W_BUC)使用 SatBox331-20 Modem 的性能情况 OpenSpec OPSX 完整指南 Claude Skill Creator 2.0 完整上手攻略 Auto-Memory + CLAUDE.md Conductor 完整上手攻略 GitNexus 完整上手攻略 code-review-graph 完整上手攻略 Claude Code Hooks 完整开发者指南 Openwrt switch vlan配置 llm-course Claude Code 入门教程 MT5专业交易面板 routeros RB750GR3 配置双WAN口 Quectel Modem Wiki sdxlemur 高通5G平台(SDX55\SDX62\SDX65):ping包异常问题排查指南 - lsgxeva - 博客园 高通SDX62平台 MBIM搜网、查询信号等功能异常 Win11数字许可证激活 BirdSat VS100K info wireshark筛选语句详解 linux基线整改方法 windows基线整改方法 NanoPi_R5C ArcBox Config win10远程桌面其他电脑出现如下错误,由于数据加密错误,这个会话讲结束,请重新连接到远程计算机 如何评价杨立昆认为大模型只是对海量文本的模式进行复杂拟合,根本不懂意义? IQ200Board default access problem Win10 输入法卡顿 adaptive_relaxed_optimized 如何下载安装App Store应用旧版本教程 小米澎湃OS 关闭广告 Scrum 模型
n2n config
lsgxeva · 2026-06-21 · via 博客园 - lsgxeva

n2n config

### 客户端链接流向 ( Wrt 为 n2n-edge , Ubunut 为 n2n-supernode )

FRPC [ frpc_server ( tcp://a.b.c.d:39527 ) --> frpc_client ( tcp://127.0.0.1:19527 ) ]

Wrt [ n2n-edge_client ( udp://127.0.0.1:9527 ) 
				--> udp2raw_client ( udp://127.0.0.1:9527 --> tcp://a.b.c.d:39527 ) ]

Ubuntu [ frpc_client ( tcp://a.b.c.d:39527 --> tcp://127.0.0.1:19527 ) 
				--> udp2raw_server ( tcp://127.0.0.1:19527 --> udp://127.0.0.1:9527 ) 
				--> n2n-supernode_server ( udp://127.0.0.1:9527 ) ]

------------------

### Ubuntu Server ( frpc Client ) ( udp2raw server ) ( n2n supernode )

/usr/local/bin/frpc -c /usr/local/bin/n2n.toml
wget https://github.com/wangyu-/udp2raw/releases/download/20230206.0/udp2raw_binaries.tar.gz
/usr/local/bin/udp2raw -s -l 127.0.0.1:19527 -r 127.0.0.1:9527 -k xyzd1234 --raw-mode faketcp -a --log-level 3
/usr/sbin/supernode /etc/n2n/supernode.conf -f
/usr/sbin/supernode -p 9527 -v -f

------------------

### Wrt Clien ( udp2raw client ) ( n2n edge )

/usr/bin/udp2raw -c -l 127.0.0.1:9527 -r a.b.c.d:39527 -k xyzd1234 --raw-mode faketcp -a --log-level 3
/usr/bin/n2n-edge -f -u 0 -g 0 -d n2n0 -a static:10.10.1.11/24 -c testing -l 127.0.0.1:9527 -k pass1234 -M 1290 -r -E

============= End