setup-ipsec-vpn/docs/uninstall.md

101 lines
3.3 KiB
Markdown
Raw Normal View History

2017-03-20 04:10:49 +01:00
# Uninstall the VPN
2016-06-24 01:10:25 +02:00
*Read this in other languages: [English](uninstall.md), [简体中文](uninstall-zh.md).*
2021-09-07 09:56:49 +02:00
## Uninstall using helper script
2016-06-24 01:10:25 +02:00
2021-09-07 09:56:49 +02:00
**Important:** This script will remove IPsec VPN from your server. All VPN configuration will be **permanently deleted**, and Libreswan and xl2tpd will be removed. This **cannot** be undone!
```bash
wget https://github.com/hwdsl2/setup-ipsec-vpn/raw/master/extras/vpnuninstall.sh -O vpnunst.sh
sudo bash vpnunst.sh
```
When finished, reboot your server.
## Manually uninstall the VPN
Alternatively, you may manually uninstall the VPN by following these steps. Commands must be run as `root`, or with `sudo`.
### Steps
2016-06-24 01:16:01 +02:00
* [First step](#first-step)
* [Second step](#second-step)
* [Third step](#third-step)
* [Fourth step](#fourth-step)
* [Optional](#optional)
* [When finished](#when-finished)
2021-09-07 09:56:49 +02:00
### First step
```bash
2016-06-24 01:10:25 +02:00
service ipsec stop
service xl2tpd stop
rm -rf /usr/local/sbin/ipsec /usr/local/libexec/ipsec
2016-06-29 21:35:28 +02:00
rm -f /etc/init/ipsec.conf /lib/systemd/system/ipsec.service \
/etc/init.d/ipsec /usr/lib/systemd/system/ipsec.service
2016-06-24 01:10:25 +02:00
```
2021-09-07 09:56:49 +02:00
### Second step
2016-06-24 01:10:25 +02:00
2021-09-07 09:56:49 +02:00
#### Ubuntu & Debian
2016-06-24 01:10:25 +02:00
2016-06-29 21:35:28 +02:00
`apt-get purge xl2tpd`
2016-06-24 01:10:25 +02:00
2021-09-07 09:56:49 +02:00
#### CentOS/RHEL, Rocky Linux, AlmaLinux & Amazon Linux 2
2016-06-24 01:10:25 +02:00
`yum remove xl2tpd`
2021-09-07 09:56:49 +02:00
### Third step
2016-06-24 01:10:25 +02:00
2021-09-07 09:56:49 +02:00
#### Ubuntu & Debian
2016-06-24 01:10:25 +02:00
2020-05-25 21:20:32 +02:00
Edit `/etc/iptables.rules` and remove unneeded rules. Your original rules (if any) are backed up as `/etc/iptables.rules.old-date-time`. In addition, edit `/etc/iptables/rules.v4` if the file exists.
2016-06-24 01:10:25 +02:00
2021-09-07 09:56:49 +02:00
#### CentOS/RHEL, Rocky Linux, AlmaLinux & Amazon Linux 2
2016-06-24 01:10:25 +02:00
2020-05-25 21:20:32 +02:00
Edit `/etc/sysconfig/iptables` and remove unneeded rules. Your original rules (if any) are backed up as `/etc/sysconfig/iptables.old-date-time`.
2021-07-31 22:32:02 +02:00
**Note:** If using Rocky Linux, AlmaLinux or CentOS/RHEL 8 and firewalld was active during VPN setup, nftables may be configured. Edit `/etc/sysconfig/nftables.conf` and remove unneeded rules. Your original rules are backed up as `/etc/sysconfig/nftables.conf.old-date-time`.
2016-06-24 01:10:25 +02:00
2021-09-07 09:56:49 +02:00
### Fourth step
2016-06-24 01:10:25 +02:00
Edit `/etc/sysctl.conf` and remove the lines after `# Added by hwdsl2 VPN script`.
2016-06-25 03:42:57 +02:00
Edit `/etc/rc.local` and remove the lines after `# Added by hwdsl2 VPN script`. DO NOT remove `exit 0` (if any).
2016-06-24 01:10:25 +02:00
2021-09-07 09:56:49 +02:00
### Optional
2016-06-24 01:10:25 +02:00
2020-05-25 21:20:32 +02:00
**Note:** This step is optional.
2016-06-25 03:42:57 +02:00
2016-06-24 01:10:25 +02:00
Remove these config files:
2016-06-29 21:35:28 +02:00
* /etc/ipsec.conf*
* /etc/ipsec.secrets*
* /etc/ppp/chap-secrets*
* /etc/ppp/options.xl2tpd*
2016-06-24 01:10:25 +02:00
* /etc/pam.d/pluto
* /etc/sysconfig/pluto
2016-06-29 21:35:28 +02:00
* /etc/default/pluto
2016-06-25 03:42:57 +02:00
* /etc/ipsec.d (directory)
2016-06-29 21:35:28 +02:00
* /etc/xl2tpd (directory)
2016-06-24 01:10:25 +02:00
Copy and paste for fast removal:
```bash
2016-06-29 21:35:28 +02: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-25 03:42:57 +02:00
```
2016-06-24 01:10:25 +02:00
2021-09-07 09:56:49 +02:00
### When finished
2016-06-24 01:10:25 +02:00
Reboot your server.
2021-03-29 22:05:45 +02:00
## License
2021-06-05 00:27:21 +02:00
Copyright (C) 2016-2021 [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 22:05:45 +02:00
2021-06-05 00:27:21 +02:00
[![Creative Commons License](https://i.creativecommons.org/l/by-sa/3.0/88x31.png)](http://creativecommons.org/licenses/by-sa/3.0/)
This work is licensed under the [Creative Commons Attribution-ShareAlike 3.0 Unported License](http://creativecommons.org/licenses/by-sa/3.0/)
2021-03-29 22:05:45 +02:00
Attribution required: please include my name in any derivative and let me know how you have improved it!