NPS内网穿透工具学习2-服务端搭建
序言 通俗约定您已经,通晓基本的Linux知识(解压复制粘贴移动)、了解基本的网络知识(知晓什么是公网IP什么是内网IP)登录已root用户为准 版本 v0.26.9 linux_amd64_server.tar.gz centos7 已关闭Firewalld 下载解压安装 mkdir /home/nps cd /home/nps wegt https://github.com/ehang-io/nps/releases/download/v0.26.9/linux_amd64_server.tar.gz tar -zxvf linux_amd64_server.tar.gz ./nps install 撰写程序NPS配置文件 打开配置文件 vim /etc/nps/nps.conf 撰写systemd配置文件 vim创建service文件 vim /usr/lib/systemd/system/nps.service 填入以下内容 [Unit] Description=nps service After=network.target syslog.target Wants=network.target [Service] Type=simple ExecStart=/usr/bin/nps start ExecStop=/usr/bin/nps stop [Install] WantedBy=multi-user.target 启动并设置开机自启动 sudo systemctl start nps.service sudo systemctl enable nps.service 启动nps:sudo systemctl start nps 打开自启动:sudo systemctl enable nps 重启应用:sudo systemctl restart nps 停止应用:sudo systemctl stop nps 查看应用:sudo systemctl status nps 访问设置 关闭防火墙并设置关闭开机启动...