注意:LXC系統不可ddGithub項目地址本次使用的是 debian 環境教程開始:1.下載脚本wget --no-check-certificate -qO InstallNET.sh 'https://raw.githubusercontent.com/leitbogioro/Tools/master/Linux_reinstall/InstallNET.sh' && chmod a+x InstallNET.sh2.安裝,最後 *reboot *命令重啓等待20分鐘左右嘗試登錄。bash InstallNET.sh -kali
儅用戶連接機場節點時,為防止使用當前節點進行一些爆破滲透,可以在節點VPS上面設置禁止訪問目標指定端口,例如設置禁止 8000 端口,則連接該節點就訪問不了目標的8000端口的服務。例如一個網站為 1.1.1.1:8000,因爲節點VPS設置了禁止訪問端口,所以就無法訪問這個網站。iptables -A OUTPUT -p tcp --dport 80 -j ACCEPT iptables -A OUTPUT -p tcp --dport 443 -j ACCEPT iptables -A OUTPUT -p tcp --dport 22 -j DROP iptables -A OUTPUT -p tcp --dport 3306 -j DROP iptables -A OUTPUT -p tcp --dport 3389 -j DROP iptables-save > /etc/iptables/rules.v4
免費代理分享(複製鏈接地址到TG打開):地址GitHub項目地址運行脚本## 新建目录 mkdir /home/mtproxy && cd /home/mtproxy ## 开始安装 curl -s -o mtproxy.sh https://raw.githubusercontent.com/sunpma/mtp/master/mtproxy.sh && chmod +x mtproxy.sh && bash mtproxy.shMTProxy-Bot每次重啓VPS都需要手動開啓一下:cd /home/mtproxy && bash mtproxy.sh start
Alpine系統安裝XrayR并不難,教程分爲兩個版本:A.手動安裝XrayR B.自動脚本安裝XrayR和X-UI。那麽開始手動安裝教程:1.首先到XrayR項目下載 Linux 64 位的zip包下載地址2.新建目錄:mkdir -p /etc/XrayR/3.上傳壓縮包到 /etc/XrayR/ ,並解壓4.配置 config.yml ,然後安裝screen保證後臺運行apk add screen5.輸入 screen 命令創建窗口后,運行:cd /etc/XrayR;./XrayR -config config.yml官方手動安裝教程自動安裝XrayR和X-UI:wget https://www.moerats.com/usr/shell/alpine.sh && bash alpine.shalpine版-Xrayrwget https://github.com/Cd1s/alpineXrayR/releases/download/one-click/install-xrayr.sh && chmod +x install-xrayr.sh &
要想連接IPV6伺服器,需要連接點擁有IPV6地址,本次帶來IPV4伺服器連接IPV6伺服器設IPV4伺服器為VPS A ,IPV6伺服器為VPS B教程開始:VPS A 安裝WARP:以下任選一個命令:1.日常命令warp wget -N https://gitlab.com/fscarmen/warp/-/raw/main/menu.sh && bash menu.sh2. wget -N https://gitlab.com/Misaka-blog/warp-script/-/raw/main/warp.sh && bash warp.sh然後獲取IPV6成功獲取最後運行以下命令連接你的 VPS B注意 <> 要去掉 ssh -6 -L 2222:localhost:22 <VPS B's IP> -p 22