📖
Isu's Wiki
  • Welcome to Isu's Wiki
  • Linux
    • SSH Automatic Login
    • Nginx HTTPS
    • Nginx Login Page
    • OpenVPN Server
    • PPTP Client Settings
    • LVM Allocation
    • Partition and Mount
    • Vagrant and VirtualBox
    • Bind9 SRV Record
    • Git Two Remote
    • ESXi Nvidia - 525.89.02
    • Install Qemu
    • Recover network (no netplan, iproute2)
  • Kubernetes
    • Kubernetes Reset
    • x509 Certificate Renewal
  • LaTeX
    • Code Snippet with Box in LaTeX
  • Go
    • [gRPC] Generate .pb.go from .proto
  • eBPF
    • [Kprobe] Get Argument Values
    • [Cilium] TroubleShooting
    • [Python] Install BCC
  • MicroStack
    • [Microstack] Add Image
    • [Microstack] Quota Manage
    • [Microstack] Security Group
    • [Microstack] Overcommit Resources
  • CentOS
    • Change Interface Name
    • Install Vagrant with vagrant-libvirt
  • OpenStack
    • [Nova] noVNC not working
    • [Basic] OpenStack Installation
    • [Magnum] TroubleShooting
Powered by GitBook
On this page
  • Install PPTP
  • Setup files
  • Running
  1. Linux

PPTP Client Settings

PPTP Client Settings for CoolIP

Install PPTP

sudo apt-get install pptp-linux network-manager-pptp

Setup files

  • /etc/ppp/chap-secrets

COOLIP@username * password *
  • /etc/ppp/peers/coolip

pty "pptp coolip-s1.coolip.co.kr --nolaunchpppd"
name "COOLIP@username"
remotename PPTP
file /etc/ppp/options.pptp
ipparam COOLIP
  • /etc/ppp/ip-up.d/route-traffic

#!/bin/sh
NET="0.0.0.0/0"
IFACE="ppp0"
route add -net ${NET} dev ${IFACE}

Running

  • Execute PPTP using

ppp call coolip

Also check if it is working properly as device ppp0 using ifconfig ppp0.

  • Stop PPTP using

poff coolip

PreviousOpenVPN ServerNextLVM Allocation

Last updated 2 years ago