High level of protection
To encrypt data, robust AEAD algorithms are used
Secure connection
Ensuring the security of your internet connection
Servers in different countries
You can switch between all available servers of the service without any limitations

Telegram

Subscribe to our Telegram channel and get all important service news as quickly and conveniently as possible!

Read More...

Twitter

Fresh feed of news via Twitter!

Worldwide IT and security news via our Twitter by MultiVPN...

Read More...

Blog MultiVPN

Official MultiVPN Blog. Top news of MultiVPN service, updates, files and rest urgent important information!

Read More...

Configure MultiVPN DNS servers on Linux


Open a terminal. First of all, you must obtain superuser rights:

Using Ubuntu Linux as an example:


  user@ubuntu:~$ sudo bash
  [sudo] password for user:
  root@ubuntu:/home/user# id
  uid=0(root) gid=0(root) groups=0(root)
  root@ubuntu:/home/user#

For example, Fedora Linux:


  [user@localhost ~]$ su
  Password:
  [root@localhost user]# id
  uid=0(root) gid=0(root) groups=0(root)
  [root@localhost user]#

Available DNS servers of the MultiVPN service:

1. IP: 192.71.244.22 (ns1.multi-vpn.biz) - Slovenia.

2. IP: 192.71.227.111 (ns2.multi-vpn.biz) - Canada.

3. IP: 151.236.21.57 (ns3.multi-vpn.biz) - France.

To start using the MultiVPN DNS servers on your system, run the command with super user rights:


  echo nameserver 192.71.244.22 > /etc/resolv.conf && echo nameserver 192.71.227.111 >> /etc/resolv.conf && echo nameserver 151.236.21.57 >> /etc/resolv.conf

After executing this command, the file /etc/resolv.conf will take the following form:


  nameserver 192.71.244.22
  nameserver 192.71.227.111
  nameserver 151.236.21.57

Now, your system uses MultiVPN DNS servers. These DNS only work with VPN servers of the MultiVPN network, for all other IP addresses, DNS queries will be ignored.

In the event of a disconnection from the OpenVPN server of the MultiVPN network, intentional disconnection from the VPN network, etc. - Your system will stop processing DNS queries, sites in the browser will stop opening until you reconnect to one of the MultiVPN network servers.

If you want to allow your system to process any DNS queries again, run the following command (with superuser rights):


  echo nameserver 1.1.1.1 > /etc/resolv.conf && echo nameserver 8.8.8.8 >> /etc/resolv.conf

After executing this command, the file /etc/resolv.conf will take the following form:


  nameserver 1.1.1.1
  nameserver 8.8.8.8


Linux instructions