FreeBSD PPTP VPN Client Kurulumu
- 6 sene önce, Burak Çalışkan tarafından yazılmıştır.
- FreeBSD PPTP VPN Client Kurulumu için yorumlar kapalı
- Genel
# portsnap fetch update
# cd /usr/ports/net/pptpclient
# make install clean
# mv /etc/ppp/ppp.conf /etc/ppp/ppp.conf.factory
# vi /etc/ppp/ppp.conf
ppp.conf içinde olması gereken;
1 2 3 4 5 6 7 8 |
OFIS: set authname pptpuser set authkey pptpsifre set timeout 0 set ifaddr 0 0 add 10.0.0.0/8 hisaddr alias enable yes disable ipv6cp |
# pptp 11.22.11.22 OFIS
VPN Bağlantısı kurmak için
FreeBSD Başladığında otomatik bağlanması için.
/usr/local/etc/rc.d/pptp.sh r-xr-xr-x (0555) Yetkisinde olması gerekmekte.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
$ less /usr/local/etc/rc.d/pptp.sh #!/bin/sh case "$1" in start) /usr/local/sbin/pptp a.b.c.d OFIS & ;; stop) if [ -f /var/run/tun0.pid ] then kill -TERM `cat /var/run/tun0.pid` fi ;; *) echo "Usage: ^Basename $0 {start|stop}" >&2 ;; esac exit 0 |