How to add Tun/TAP/PPP/Fuse support

NOTE: This is for new Openvz/LXC plans only.

1. You need to login to web panel and click the Active Product you want to enable it on
2. If you see "Add Tun" button, click it (if not, it is already enabled), then continue to #3 below,
3. click Stop VPS button in web panel <----- DO NOT SKIP THIS STEP!!!
4. Click Start VPS
5. SSH to your VPS and type

mkdir /dev/net
mknod /dev/net/tun c 10 200
chmod 0666 /dev/net/tun
ip tuntap add mode tap
--show it
ip link

For PPP:

mknod -m 666 /dev/ppp c 108 0
service pptp restart

To actually use a tun/tap device it must be created inside the container on every boot, so add the following to your /etc/rc.local inside your container:

if ! [ -c /dev/net/tun ]; then
mkdir -p /dev/net
mknod -m 666 /dev/net/tun c 10 200
fi

Bu mövzu kifayət qədər köməkçi oldu?

 Çap

Digər başlıqlar

How to add Extra IP(s) on Linux

IMPORTANT: There seems to be issues with more than 1 IP on Ubuntu, we've so far only figured out...

How fix Debian or Centos or Ubuntu console just black screen

If you have Debian or Centos or Ubuntu and when you go to NoVNC Console in web panel, you get...

How to fix NoVNC Console Just Black Screen

Debian 5,6,7 This will also work in debian8 if you use sysv-init instead of systemd Editing the...

"Server refused to allocate pty" on New LXC template(s)

NOTE: This seems to happen only on OpenVZ template(s) that's used on LXC, like Cenots 6 32-bit....

How to access Web Panel or VNC Console from Client Area (New KVM/OpenV/LXC)

NOTE: - If problems, use other web browser or try Private Window on your browser. - If you get...