summaryrefslogtreecommitdiffstats
path: root/etc/inc/openvpn.inc
diff options
context:
space:
mode:
authorjim-p <jimp@pfsense.org>2010-05-17 16:11:52 -0400
committerjim-p <jimp@pfsense.org>2010-05-17 16:11:52 -0400
commitbd7ca5068eb6d28c8fd9dbd939fb0baa53b3fb34 (patch)
treecd2c724d37e9dbb9480579fc1ef705fb699eca80 /etc/inc/openvpn.inc
parentbe58c36ded298a1cb7a0eac40cd2edd62908d882 (diff)
downloadpfsense-bd7ca5068eb6d28c8fd9dbd939fb0baa53b3fb34.zip
pfsense-bd7ca5068eb6d28c8fd9dbd939fb0baa53b3fb34.tar.gz
Revert "Allow the user to override OpenVPN interface name in custom options (e.g. dev tap99 or dev tun99) and set related options appropriately. ticket #482 Item 2a/2b." - Revert for now, may cause more issues than it fixes.
This reverts commit be58c36ded298a1cb7a0eac40cd2edd62908d882.
Diffstat (limited to 'etc/inc/openvpn.inc')
-rw-r--r--etc/inc/openvpn.inc58
1 files changed, 21 insertions, 37 deletions
diff --git a/etc/inc/openvpn.inc b/etc/inc/openvpn.inc
index 7840607..72630e7 100644
--- a/etc/inc/openvpn.inc
+++ b/etc/inc/openvpn.inc
@@ -278,49 +278,30 @@ function openvpn_reconfigure($mode,& $settings) {
$vpnid = $settings['vpnid'];
$mode_id = $mode.$vpnid;
- /* Look for device name to override */
- $customdev = "";
- $options = explode(';', $settings['custom_options']);
- foreach ($options as $opt) {
- if (substr($opt, 0, 4) == "dev ") {
- $customdev = substr($opt, 4);
- }
+ if (isset($settings['dev_mode']))
+ $tunname = "{$settings['dev_mode']}{$vpnid}";
+ else { /* defaults to tun */
+ $tunname = "tun{$vpnid}";
+ $settings['dev_mode'] = "tun";
}
- if (empty($customdev)) {
- if (isset($settings['dev_mode']))
- $tunname = "{$settings['dev_mode']}{$vpnid}";
- else { /* defaults to tun */
- $tunname = "tun{$vpnid}";
- $settings['dev_mode'] = "tun";
- }
-
- if ($mode == "server")
- $devname = "ovpns{$vpnid}";
- else
- $devname = "ovpnc{$vpnid}";
+ if ($mode == "server")
+ $devname = "ovpns{$vpnid}";
+ else
+ $devname = "ovpnc{$vpnid}";
- /* is our device already configured */
- if (mwexec("/sbin/ifconfig {$devname}")) {
+ /* is our device already configured */
+ if (mwexec("/sbin/ifconfig {$devname}")) {
- /* create the tap device if required */
- if (!file_exists("/dev/{$tunname}"))
- exec("/sbin/ifconfig {$tunname} create");
+ /* create the tap device if required */
+ if (!file_exists("/dev/{$tunname}"))
+ exec("/sbin/ifconfig {$tunname} create");
- /* rename the device */
- mwexec("/sbin/ifconfig {$tunname} name {$devname}");
+ /* rename the device */
+ mwexec("/sbin/ifconfig {$tunname} name {$devname}");
- /* add the device to the openvpn group */
- mwexec("/sbin/ifconfig {$devname} group openvpn");
- }
- $devtype = $settings['dev_mode'];
- $conf = "dev {$devname}\n";
- $conf .= "dev-type {$devtype}\n";
- $conf .= "dev-node /dev/{$tunname}\n";
- } else {
- $devtype = substr($customdev, 0, 3);
- $conf = "dev-type {$devtype}\n";
- $conf .= "dev-node /dev/{$customdev}\n";
+ /* add the device to the openvpn group */
+ mwexec("/sbin/ifconfig {$devname} group openvpn");
}
$pfile = $g['varrun_path'] . "/openvpn_{$mode_id}.pid";
@@ -341,6 +322,9 @@ function openvpn_reconfigure($mode,& $settings) {
}
}
+ $conf = "dev {$devname}\n";
+ $conf .= "dev-type {$settings['dev_mode']}\n";
+ $conf .= "dev-node /dev/{$tunname}\n";
$conf .= "writepid {$pfile}\n";
$conf .= "#user nobody\n";
$conf .= "#group nobody\n";
OpenPOWER on IntegriCloud