2017-03-19 22:10:49 -05:00
# 卸载 VPN
2016-06-24 17:54:24 -05:00
2022-01-22 15:34:38 -06:00
*其他语言版本: [English ](uninstall.md ), [简体中文 ](uninstall-zh.md )。*
2016-06-24 17:54:24 -05:00
2021-09-28 23:13:45 -05:00
* [使用辅助脚本卸载 VPN ](#使用辅助脚本卸载-vpn )
* [手动卸载 VPN ](#手动卸载-vpn )
2021-09-07 02:56:49 -05:00
## 使用辅助脚本卸载 VPN
2016-06-24 17:54:24 -05:00
2021-10-09 23:44:25 -05:00
**警告:** 此[辅助脚本 ](../extras/vpnuninstall.sh )将从你的服务器中删除 IPsec VPN。所有的 VPN 配置将被**永久删除**,并且 Libreswan 和 xl2tpd 将被移除。此操作**不可撤销**!
2021-09-07 02:56:49 -05:00
```bash
2022-04-30 21:27:04 -05:00
wget -nv -O vpnunst.sh https://get.vpnsetup.net/unst
2021-09-07 02:56:49 -05:00
sudo bash vpnunst.sh
```
2022-04-30 22:50:09 -05:00
< details >
< summary >
或者,你也可以使用以下命令。
< / summary >
```bash
wget -nv -O vpnunst.sh https://gitlab.com/hwdsl2/setup-ipsec-vpn/-/raw/master/extras/vpnuninstall.sh
sudo bash vpnunst.sh
```
< / details >
2021-09-07 02:56:49 -05:00
在完成后重启你的服务器。
## 手动卸载 VPN
另外,你也可以手动卸载 VPN。按照以下步骤操作。这些命令需要用 `root` 账户运行,或者使用 `sudo` 。
2021-10-09 23:44:25 -05:00
**警告:** 以下步骤将从你的服务器中删除 IPsec VPN。所有的 VPN 配置将被**永久删除**,并且 Libreswan 和 xl2tpd 将被移除。此操作**不可撤销**!
2021-09-07 02:56:49 -05:00
### 步骤
2016-06-24 17:54:24 -05:00
* [第一步 ](#第一步 )
* [第二步 ](#第二步 )
* [第三步 ](#第三步 )
* [第四步 ](#第四步 )
* [可选步骤 ](#可选步骤 )
2016-06-29 14:35:28 -05:00
* [完成后 ](#完成后 )
2016-06-24 17:54:24 -05:00
2021-09-07 02:56:49 -05:00
### 第一步
2016-06-24 17:54:24 -05:00
2017-02-05 14:48:11 -06:00
```bash
2016-06-24 17:54:24 -05:00
service ipsec stop
service xl2tpd stop
2021-09-09 00:22:34 -05:00
rm -rf /usr/local/sbin/ipsec /usr/local/libexec/ipsec /usr/local/share/doc/libreswan
rm -f /etc/init/ipsec.conf /lib/systemd/system/ipsec.service /etc/init.d/ipsec \
/usr/lib/systemd/system/ipsec.service /etc/logrotate.d/libreswan \
/usr/lib/tmpfiles.d/libreswan.conf
2016-06-24 17:54:24 -05:00
```
2021-09-07 02:56:49 -05:00
### 第二步
2016-06-24 17:54:24 -05:00
2021-09-07 02:56:49 -05:00
#### Ubuntu & Debian
2016-06-24 17:54:24 -05:00
2016-06-29 14:35:28 -05:00
`apt-get purge xl2tpd`
2016-06-24 17:54:24 -05:00
2022-03-20 23:10:40 -05:00
#### CentOS/RHEL, Rocky Linux, AlmaLinux, Oracle Linux & Amazon Linux 2
2016-06-24 17:54:24 -05:00
`yum remove xl2tpd`
2021-09-11 15:34:15 -05:00
#### Alpine Linux
`apk del xl2tpd`
2021-09-07 02:56:49 -05:00
### 第三步
2016-06-24 17:54:24 -05:00
2021-09-11 15:34:15 -05:00
#### Ubuntu, Debian & Alpine Linux
2016-06-24 17:54:24 -05:00
2020-05-25 14:20:32 -05:00
编辑 `/etc/iptables.rules` 并删除不需要的规则。你之前的防火墙规则(如果有)备份在 `/etc/iptables.rules.old-日期-时间` 。另外如果文件 `/etc/iptables/rules.v4` 存在,请编辑它。
2016-06-24 17:54:24 -05:00
2022-03-20 23:10:40 -05:00
#### CentOS/RHEL, Rocky Linux, AlmaLinux, Oracle Linux & Amazon Linux 2
2016-06-24 17:54:24 -05:00
2020-05-25 14:20:32 -05:00
编辑 `/etc/sysconfig/iptables` 并删除不需要的规则。你之前的防火墙规则(如果有)备份在 `/etc/sysconfig/iptables.old-日期-时间` 。
2022-03-20 23:10:40 -05:00
**注:** 如果使用 Rocky Linux, AlmaLinux, Oracle Linux 8 或者 CentOS/RHEL 8 并且在安装 VPN 时 firewalld 正在运行,则可能已配置 nftables。编辑 `/etc/sysconfig/nftables.conf` 并删除不需要的规则。你之前的防火墙规则备份在 `/etc/sysconfig/nftables.conf.old-日期-时间` 。
2016-06-24 17:54:24 -05:00
2021-09-07 02:56:49 -05:00
### 第四步
2016-06-24 17:54:24 -05:00
编辑 `/etc/sysctl.conf` 并删除该标记后面的行: `# Added by hwdsl2 VPN script` 。
2016-06-24 20:42:57 -05:00
编辑 `/etc/rc.local` 并删除该标记后面的行: `# Added by hwdsl2 VPN script` 。\*不要\* 删除 `exit 0` (如果有)。
2016-06-24 17:54:24 -05:00
2021-09-07 02:56:49 -05:00
### 可选步骤
2016-06-24 17:54:24 -05:00
2020-05-25 14:20:32 -05:00
**注:** 这一步是可选的。
2016-06-24 20:42:57 -05:00
2016-06-24 17:54:24 -05:00
删除这些配置文件:
2016-06-29 14:35:28 -05:00
* /etc/ipsec.conf*
* /etc/ipsec.secrets*
* /etc/ppp/chap-secrets*
* /etc/ppp/options.xl2tpd*
2016-06-24 17:54:24 -05:00
* /etc/pam.d/pluto
* /etc/sysconfig/pluto
2016-06-29 14:35:28 -05:00
* /etc/default/pluto
2016-06-24 20:42:57 -05:00
* /etc/ipsec.d (目录)
2016-06-29 14:35:28 -05:00
* /etc/xl2tpd (目录)
2016-06-24 17:54:24 -05:00
要快速删除,可以复制并粘贴以下命令:
2017-02-05 14:48:11 -06:00
```bash
2016-06-29 14:35:28 -05:00
rm -f /etc/ipsec.conf* /etc/ipsec.secrets* /etc/ppp/chap-secrets* /etc/ppp/options.xl2tpd* \
/etc/pam.d/pluto /etc/sysconfig/pluto /etc/default/pluto
rm -rf /etc/ipsec.d /etc/xl2tpd
2016-06-24 20:42:57 -05:00
```
2016-06-24 17:54:24 -05:00
2021-09-25 08:35:55 -05:00
删除 IKEv2 脚本:
```bash
rm -f /usr/bin/ikev2.sh /opt/src/ikev2.sh
```
2021-09-07 02:56:49 -05:00
### 完成后
2016-06-24 17:54:24 -05:00
重启你的服务器。
2021-03-29 15:05:45 -05:00
## 授权协议
2022-01-02 00:09:03 -06:00
版权所有 (C) 2016-2022 [Lin Song ](https://github.com/hwdsl2 ) [![View my profile on LinkedIn ](https://static.licdn.com/scds/common/u/img/webpromo/btn_viewmy_160x25.png )](https://www.linkedin.com/in/linsongui)
2021-03-29 15:05:45 -05:00
2021-06-04 17:27:21 -05:00
[![Creative Commons License ](https://i.creativecommons.org/l/by-sa/3.0/88x31.png )](http://creativecommons.org/licenses/by-sa/3.0/)
这个项目是以 [知识共享署名-相同方式共享3.0 ](http://creativecommons.org/licenses/by-sa/3.0/ ) 许可协议授权。
2021-03-29 15:05:45 -05:00
必须署名: 请包括我的名字在任何衍生产品,并且让我知道你是如何改善它的!