Loading...
# V2Ray 基于 Nginx 的 vmess+ws+tls 一键安装脚本 这里分享一个一键脚本实现V2Ray 基于 Nginx 的 vmess+ws+tls。 ## 一键脚本使用方式 脚本适用于:Debian 9+ / Ubuntu 18.04+ / Centos7+ ### Vmess+websocket+TLS+Nginx+Website ```shell ...
# CentOS7使用firewall-cmd打开关闭防火墙与端口 ## 一、centos7版本对防火墙进行加强,不再使用原来的iptables,启用firewalld ### 1.firewalld的基本使用 ```shell # 启动 systemctl start firewalld # 查状态 systemctl status firewalld # 停止...
# ubuntu vi编辑器键盘错乱 编辑文件/etc/vim/vimrc.tiny,将“compatible”改成“nocompatible”非兼容模式; 并添加一句: ```shell set backspace=2 ``` # ubuntu换国内源 ## 备份原有源 ```shell sudo cp /etc/apt/sources.list /etc/apt...
# UDP53端口绕过校园网登录验证 ## 系统要求 1.一台具有公网IP的云服务器 2.linux系统版本:centos 3.SoftEther VPN Server软件包 [下载地址](http://www.softether-download.com/files/softether/ "下载地址") ## 开始安装 ### 安装软件编译环境 在服务...
欢迎移步博主CSDN:[CSDN博客](https://blog.csdn.net/weixin_42327790/article/details/103080582) # linux下利用shell脚本测试网卡是否连通 话不多说,脚本奉上: ```shell #!/bin/bash #遍历27至28网段,查询是否能ping通该网段 for a in {27..28}...