Disabling IPv6 on Linux
Disabling IPv6 temporarily can resolve certain network issues. Follow the instructions for your Linux distribution.
For Red Hat-Based Systems:
- Open the terminal.
- Switch to the root user.
Disable IPv6 with these commands:
sysctl -w net.ipv6.conf.all.disable_ipv6=1
sysctl -w net.ipv6.conf.default.disable_ipv6=1
sysctl -w net.ipv6.conf.tun0.disable_ipv6=1
To re-enable IPv6:
sysctl -w net.ipv6.conf.all.disable_ipv6=0
sysctl -w net.ipv6.conf.default.disable_ipv6=0
sysctl -w net.ipv6.conf.tun0.disable_ipv6=0
sysctl -p
For Debian-Based Systems:
- Open the terminal.
Edit the configuration file:
sudo nano /etc/sysctl.conf
Add the following lines to the file:
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
net.ipv6.conf.lo.disable_ipv6 = 1
net.ipv6.conf.tun0.disable_ipv6 = 1
- Save and close the file.
- Reboot your device.
To re-enable IPv6:
- Remove the above lines from
/etc/sysctl.confand reboot.
By following these instructions, you can efficiently configure and manage your ApexGuard VPN connection on Linux.
Connecting to Your Dedicated IP on Linux
To connect to your dedicated IP using ApexGuard on Linux, ensure you have completed the following prerequisites:
- Purchased a dedicated IP: If not, visit your account and make the purchase.
- Set up the dedicated IP in your account: Log in and configure your dedicated IP as instructed.
Once confirmed, use the following command to connect to your dedicated IP:
apexguard connect <country_code_server_number>
For example:
apexguard connect us123
Note: Your email will be linked to the dedicated IP address for identification purposes.
Was this article helpful?
Thank you, you're making us better!