GithubHelp home page GithubHelp logo

gucheng2009 / oracle-warp Goto Github PK

View Code? Open in Web Editor NEW
0.0 0.0 0.0 154 KB

Oracle甲骨文云各种脚本: 设置ROOT密码脚本,更新内核脚本,添加WARP双栈IPV6+IPV4、WARP单IPV6/WARP单IPV4一键脚本。

License: MIT License

Shell 100.00%

oracle-warp's Introduction

Oracle甲骨文脚本集合,针对KVM架构IPV4 ONLY VPS,打造甲骨文云ubuntu系统环境

Youtube视频教程....稍后更新.......

给ipv4 only VPS添加WARP的好处:

1:使只有IPV4的VPS获取访问IPV6的能力,套上WARP的ip,变成双栈VPS!

2:基本能隐藏VPS的真实IP!

3:WARP分配的IPV4或者IPV6的IP段,都支持奈非Netflix流媒体,无视VPS原IP限制!

4:加速VPS到CloudFlare CDN节点访问速度!

5:避开原VPS的IP需要谷歌验证码问题!

6:WARP的IPV6替代HE tunnelbroker IPV6的隧道代理方案,做IPV6 VPS跳板机代理更加稳定、高效!


一:设置Root密码一键脚本(抛弃秘钥文件,与sudo -i说再见。默认ROOT权限,方便登录与编辑文件)

bash <(curl -sSL https://raw.githubusercontent.com/YG-tsj/Oracle-warp/main/root.sh)

二:更新甲骨文Ubuntu系统内核一键脚本

目前甲骨文Ubuntu20.04系统内核为5.4版本(查看内核版本uname -r),而5.6版本以上内核才集成Wireguard,内核集成方案在理论上网络效率最高!(网络性能:内核集成>内核模块>Wireguard-Go)

任选以下两个内核脚本中的一个进行升级,都集成删除iptables的代码rm -rf /etc/iptables && reboot,解决甲骨文Ubuntu系统类似Nginx等证书申请报错问题!

1、通用内核5.11版本(推荐:通用稳定版,后续会更新)

bash <(curl -sSL https://raw.githubusercontent.com/YG-tsj/Oracle-warp/main/generic-kernel.sh)

2、第三方xanmod内核(安装时自动安装最新版本)

bash <(curl -sSL https://raw.githubusercontent.com/YG-tsj/Oracle-warp/main/xanmod-kernel.sh)

三:开启BBR加速(秋水逸冰大老-传统版)

wget --no-check-certificate https://github.com/teddysun/across/raw/master/bbr.sh && chmod +x bbr.sh && ./bbr.sh

检测BBR是否生效(显示有BBR,说明成功):lsmod | grep bbr


四:重装系统能解决99%的问题,WARP三种情况最全脚本集合

仅支持Ubuntu 20.04系统,系统内核5.6以上!根据自己需求选择脚本1、脚本2或者脚本3(有无成功可查看脚本末尾提示)

(双栈IPV4+IPV6)脚本1:IPV4是VPS本地IP,IPV6是WARP分配的IP

bash <(curl -sSL https://raw.githubusercontent.com/YG-tsj/Oracle-warp/main/warp6.sh)

(双栈IPV4+IPV6)脚本2:IPV4与IPV6都是WARP分配的IP

bash <(curl -sSL https://raw.githubusercontent.com/YG-tsj/Oracle-warp/main/warp64.sh)

(单IPV4)脚本3:IPV4是WARP分配的IP,无IPV6(不支持IPV6 VPS跳板机)

bash <(curl -sSL https://raw.githubusercontent.com/YG-tsj/Oracle-warp/main/warp4.sh)

注意:域名解析所填写的IP必须是VPS本地IP,与WARP分配的IP没关系!

提示:配置文件wgcf.conf和注册文件wgcf-account.toml都已备份在/etc/wireguard目录下!


查看WARP当前统计状态:wg

IPV4 VPS专用分流配置文件(以下默认全局IPV4优先,IP、域名自定义教程,参考https://youtu.be/fY9HDLJ7mnM)
{ 
"outbounds": [
    {
      "tag":"IP4-out",
      "protocol": "freedom",
      "settings": {}
    },
    {
      "tag":"IP6-out",
      "protocol": "freedom",
      "settings": {
        "domainStrategy": "UseIPv6" 
      }
    }
  ],
  "routing": {
    "rules": [
      {
        "type": "field",
        "outboundTag": "IP4-out",
        "domain": [""] 
      },
      {
        "type": "field",
        "outboundTag": "IP6-out",
        "network": "udp,tcp" 
      }
    ]
  }
}

相关WARP进程命令

手动临时关闭WARP网络接口

wg-quick down wgcf

手动开启WARP网络接口

wg-quick up wgcf

启动systemctl enable wg-quick@wgcf

开始systemctl start wg-quick@wgcf

重启systemctl restart wg-quick@wgcf

停止systemctl stop wg-quick@wgcf

关闭systemctl disable wg-quick@wgcf


感谢P3terx大及原创者们,参考来源:

https://p3terx.com/archives/debian-linux-vps-server-wireguard-installation-tutorial.html

https://p3terx.com/archives/use-cloudflare-warp-to-add-extra-ipv4-or-ipv6-network-support-to-vps-servers-for-free.html

https://luotianyi.vc/5252.html

https://hiram.wang/cloudflare-wrap-vps/

oracle-warp's People

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.