

Accesso al sistema SSH da root e seguire i comandi di installazione librerie attraverso l’utility yum.
Installazione librerie PPTPD
# yum install ppp pptp pptp-setup
# rpm -Uvh https://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-5.noarch.rpm
# yum install ppp pptpd
Configurazione servizio PPTPD
# nano /etc/pptpd.conf
—
localip 10.0.0.15
remoteip 10.0.0.200-210
—
# nano /etc/ppp/chap-secrets
—
USERNAME pptpd PASSWORD *
—
# nano /etc/sysctl.conf
—
net.core.wmem_max = 12582912
net.core.rmem_max = 12582912
net.ipv4.tcp_rmem = 10240 87380 12582912
net.ipv4.tcp_wmem = 10240 87380 12582912
net.core.wmem_max = 12582912
net.core.rmem_max = 12582912
net.ipv4.tcp_rmem = 10240 87380 12582912
net.ipv4.tcp_wmem = 10240 87380 12582912
net.core.wmem_max = 12582912
net.core.rmem_max = 12582912
net.ipv4.tcp_rmem = 10240 87380 12582912
net.ipv4.tcp_wmem = 10240 87380 12582912
net.ipv4.ip_forward = 1
—# sysctl -p
# systemctl enable pptpd
# systemctl start pptpd

