Git Product home page Git Product logo

vps_setup's Issues

wireguard安装脚本的优化(建议)

我今天尝试了使用这个脚本去一台新的vps上安装,发现有个悖论:smile:(解压winrar需要winrar.exe,而它在winrar.rar中:joy:)
image
一般vps的centos7都是minimal版本,都是不包含wget的,如果我不装wget,怎么下载脚本呢?
获取脚本是否改成curl -o更适合呢?curl是包含在minimal版本中的:smirk:

新的路由防火墙规则在VPS端修改后只能ping通VLAN地址

使用老路由规则工作正常的GCP做测试更新路由规则后发现 ping VLAN地址工作正常,其他地址无法访问


PostUp = iptables -I FORWARD -i wg0 -j ACCEPT; iptables -I FORWARD -m state --state RELATED,ESTABLISHED -j ACCEPT
PostDown = iptables -D FORWARD -i wg0 -j ACCEPT; iptables -D FORWARD -m state --state RELATED,ESTABLISHED -j ACCEPT

Feature request's

Hi, thanks for your script. It's help me a lot. But I want to ask to add some options:
1 Let users to choose which one port they can use by WG
2 Let users to choose which one udp2raw mode to use. For example, I need to use ICMP cause faketcp and udp mode doesn't help me to bypass ISP traffic shapping. Manually there is no way to change that mode in script for now. So for me there is only one way within ICMP mode.

But all other things work smoothly and perfect. Thanks for your work.

Anomaly Redirection

Hello Wong,

Something odd to this setup. My instance got redirected to some website and got flagged.

win7 64位 家庭普通版,tunsafe1.4,1.5均APPcrash

APPCRASH
应用程序名: TunSafe.exe
应用程序版本: 0.0.0.0
应用程序时间戳: 5bbe1248
故障模块名称: TunSafe.exe
故障模块版本: 0.0.0.0
故障模块时间戳: 5bbe1248
异常代码: c000001d
异常偏移: 000000000000f9bd
OS 版本: 6.1.7600.2.0.0.768.2
区域设置 ID: 2052
其他信息 1: 9b4e
其他信息 2: 9b4ea178303605071ea294765227c765
其他信息 3: 292b
其他信息 4: 292b9bfbf2f10d4e4897ed3846ed0635

请教关于一键脚本的问题

我曾经用您的脚本在服务器上部署过wireguard,到现在还在正常使用。但我最近重新在另一台服务器上部署,客户端和服务器端能连接上,但没有数据传输,无法打开墙外的网站。不知您是否改过脚本?请问应该如何解决这一问题?谢谢!

WireGuard + Speeder + Udp2Raw 一键脚本安装后,client 是ubuntu,有没有client的配置说明

WG+SPEED+UDP2RAW 原端口: 443 ; UDP2RAW伪装TCP后端口: 2999 ; 转发密码: password
使用一键脚本安装后wireguard 可以从443 正常访问,但是因为UDP Qos 本地还需要启UDP2RAW 的client么?

从脚本上看speederv2 转发了原443的数据,

# WG + Speeder + Udp2RAW 加速UDP TCP伪装
speederv2 -s -l127.0.0.1:8888  -r127.0.0.1:443  -f20:10 -k passwd --mode 0  >> /var/log/speederv2.log &
udp2raw   -s -l0.0.0.0:2999  -r 127.0.0.1:8888  -k ac0d2128 --raw-mode faketcp  >> /var/log/wg_udp2raw.log &

是否这种方式可行? 本地包先发给speederv2,随后转发给udp2raw 伪装, 随后多包转发给远程服务器端口(其中 10.0.0.1 是server wireguard 的虚拟地址)

speederv2 -c -l127.0.0.1:8888 -rserverip:2999  -k password  >> /var/log/speederv2.log &
udp2raw -c -l127.0.0.1:2999  -r127.0.0.1:8888 -k password --raw-mode faketcp --cipher-mode xor -a  >> /var/log/wg_udp2raw.log &

wg0.conf
Endpoint = 127.0.0.1:8888

vmess服务间连接不上

你好,我使用这个命令 bash <(curl -L -s https://git.io/v2ray_ss.sh)在Azure VM Ubuntu 20上安装了vmess服务。服务启动之后是可以正常使用的,但是过了几个小时候就连接不上了。我通过 bash <(curl -L -s https://git.io/v2ray_ss.sh) setup更改端口之后又可以正常连接使用,然后过了几个小时候后又连不上了,请问这个是什么问题。

无法启动WireGuard

Feb 07 08:43:48 PlumpGummy-VM wg-quick[8192]: Warning: `/etc/wireguard/wg0.conf' is world accessible
Feb 07 08:43:48 PlumpGummy-VM wg-quick[8192]: wg-quick: `wg0' already exists
Feb 07 08:43:48 PlumpGummy-VM systemd[1]: [email protected]: Main process exited, code=exited, status=1/FAILURE
Feb 07 08:43:48 PlumpGummy-VM systemd[1]: Failed to start WireGuard via wg-quick(8) for wg0.
Feb 07 08:43:48 PlumpGummy-VM systemd[1]: [email protected]: Unit entered failed state.
Feb 07 08:43:48 PlumpGummy-VM systemd[1]: [email protected]: Failed with result 'exit-code'.
# wg0.conf
[Interface]
PrivateKey = 2BiB+F5xJ/tWaeyGOvxyHkmitzfkz/cNB5sayc3Pbko=
Address = 10.0.0.1/24,  fd08:620c:4df0:65eb::1/64
PostUp   = iptables -A FORWARD -i wg0 -j ACCEPT; iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE; ip6tables -A FORWARD -i wg0 -j ACCEPT; ip6tables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
PostDown = iptables -D FORWARD -i wg0 -j ACCEPT; iptables -t nat -D POSTROUTING -o eth0 -j MASQUERADE; ip6tables -D FORWARD -i wg0 -j ACCEPT; ip6tables -t nat -D POSTROUTING -o eth0 -j MASQUERADE
ListenPort = 17812
DNS = 8.8.8.8, 2001:4860:4860::8888
MTU = 1420

[Peer]
PublicKey = gRvGtSRROABdXigoQo09by22otq4bNvOyq3nvi33SWM=
AllowedIPs = 10.0.0.188/32,  fd08:620c:4df0:65eb::188

[Peer]
PublicKey = G/5GCGyEIka1+Cft4ZptSKt0Udu0WD818cksCamDmns=
AllowedIPs = 10.0.0.8/32, fd08:620c:4df0:65eb::8

[Peer]
PublicKey = BrlYYr7GjkkLZMpkHtVfFLzopjgg7Rgh0o91BrchPkM=
AllowedIPs = 10.0.0.178/32, fd08:620c:4df0:65eb::178

[Peer]
PublicKey = j80T6WoK+QZnIB7MMnM7Fqrc4G0tUVlM01aXh5HYa18=
AllowedIPs = 10.0.0.186/32, fd08:620c:4df0:65eb::186

[Peer]
PublicKey = 85BcWVY0tfndn4tCT6OlMx2Z9D9Qk/npt6OIWfZuSXs=
AllowedIPs = 10.0.0.118/32, fd08:620c:4df0:65eb::118

[Peer]
PublicKey = iTlemsklnqPCJ0FFLuFKud5cClV0NMhGklF/PSRnUiA=
AllowedIPs = 10.0.0.158/32, fd08:620c:4df0:65eb::158

[Peer]
PublicKey = 0nKrsYR6uUVSNMWZvx/HqjMto5FsMzrk86ylM9T0oSs=
AllowedIPs = 10.0.0.198/32, fd08:620c:4df0:65eb::198

[Peer]
PublicKey = CD9T3A1wahF04vapV+tzEVSvsl6LGzChrxHlNLaso1o=
AllowedIPs = 10.0.0.168/32, fd08:620c:4df0:65eb::168

[Peer]
PublicKey = GOVCUC6KFojg2m7Ig4rCUc5or8cShHcGFqMDa8y0Iy4=
AllowedIPs = 10.0.0.9/32, fd08:620c:4df0:65eb::9

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.