You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
333 B
15 lines
333 B
#!/usr/bin/env bash
|
|
|
|
SYSCTLCONFIG=/etc/sysctl.conf
|
|
PPTPDCONFIG=/etc/pptpd.conf
|
|
PPTPOPTIONS=/etc/ppp/options.pptp
|
|
CHAPSECRETS=/etc/ppp/chap-secrets
|
|
IPTABLES=/etc/iptables.rules
|
|
RCLOCAL=/etc/rc.local
|
|
CHECKSERVER=/etc/ppp/checkserver.sh
|
|
|
|
LOCALPREFIX="172.16"
|
|
LOCALIP="$LOCALPREFIX.0.0"
|
|
LOCALMASK="/24"
|
|
|
|
LOCALIPMASK="$LOCALIP$LOCALMASK"
|
|
|