Changes between Initial Version and Version 1 of VPN


Ignore:
Timestamp:
02/28/21 09:45:09 (4 years ago)
Author:
krit
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • VPN

    v1 v1  
     1= VPN =
     2
     3Set up pptp-client, we need to edit 2 files with content as following
     4{{{
     5#!sh
     6[root@mini peers]# pwd
     7/etc/ppp/peers
     8[root@mini peers]# cat apricot
     9# written by pptpsetup
     10pty "pptp 188.16x.xx9.x39 --nolaunchpppd"
     11lock
     12noauth
     13nobsdcomp
     14nodeflate
     15name tonic9
     16remotename apricot
     17ipparam apricot
     18require-mppe-128
     19}}}
     20
     21Since we use name=tonic9, we need to add user tonic9 in '''/etc/ppp/chap-secrets''''
     22{{{
     23#!sh
     24[root@mini peers]# grep tonic9 /etc/ppp/chap-secrets
     25tonic9          apricot         "tonic@dmin"    *
     26[root@mini peers]#
     27}}}