NetworkManager/vpn-daemons/pptp/doc/example-pptp-system-wide-connection.sh
2005-12-21 21:50:07 +00:00

25 lines
1 KiB
Bash
Executable file

#!/bin/sh
# This is an example of how to install a system-wide connection that
# cannot be edited by unprivileged users using nm-vpn-properties. This
# script needs to be run as root and you may need to restart any
# gconfd daemons after the script has run (logging in and out will
# suffice)
NAME="pptp-system-wide"
ESCAPED_NAME="pptp-system-wide"
REMOTE="1.2.3.4"
# must be either yes or no
USEMPPE="no"
IPSEC_ROUTES="[172.16.0.0/16,192.168.4.0/24]"
GCONF_PATH="/system/networking/vpn_connections/$ESCAPED_NAME"
GCONFTOOL2_OPTS="--direct --config-source xml:readwrite:/etc/gconf/gconf.xml.mandatory"
gconftool-2 $GCONFTOOL2_OPTS --type string --set $GCONF_PATH/name "$NAME"
gconftool-2 $GCONFTOOL2_OPTS --type string --set $GCONF_PATH/service_name "org.freedesktop.NetworkManager.pptp"
gconftool-2 $GCONFTOOL2_OPTS --type list --list-type=string --set $GCONF_PATH/vpn_data ["remote","$REMOTE","require-mppe",$USEMPPE]
gconftool-2 $GCONFTOOL2_OPTS --type list --list-type=string --set $GCONF_PATH/routes $IPSEC_ROUTES