1 / 7

VPN

VPN. Using PPTP. Installasi PPTP. # apt-get install pptp-linux ppp pptpd. Adding user/pass. # vim /etc/ppp/chap-secrets Username PPTP Password *. Client. # touch /etc/ppp/peers/vpn1 # vim /etc/ppp/peers/vpn1 pty “pptp 10.252.108.xxx--nolaunchpppd” name Username remotename PPTP

gella
Download Presentation

VPN

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. VPN Using PPTP

  2. Installasi PPTP • # apt-get install pptp-linux ppp pptpd

  3. Adding user/pass • # vim /etc/ppp/chap-secrets Username PPTP Password *

  4. Client • # touch /etc/ppp/peers/vpn1 • # vim /etc/ppp/peers/vpn1 pty “pptp 10.252.108.xxx--nolaunchpppd” name Username remotename PPTP require-mppe-128 file /etc/ppp/options.pptp ipparam vpn1 mru 1412 mtu 1412

  5. connecting • # pppd call vpn1 Atau • # pon vpn1

  6. Creating shell • # vim /etc/ppp/ip-up.d/route-traffic #!/bin/bash NET=”10.0.0.0/8″ IFACE=”ppp0″ route add -net ${NET} dev ${IFACE} • # chmod 755 /etc/ppp/ip-up.d/route-traffic

More Related