Project

General

Profile

Actions

Bug #2445

closed

Carp vip renaming broken IPsec VPN tunnels that reference carp interfaces.

Added by Seth Mos almost 12 years ago. Updated almost 12 years ago.

Status:
Resolved
Priority:
Urgent
Assignee:
-
Category:
IPsec
Target version:
Start date:
05/22/2012
Due date:
% Done:

100%

Estimated time:
Plus Target Version:
Release Notes:
Affected Version:
2.1
Affected Architecture:

Description

Because of the vip renaming per interface any IPsec VPN tunnels, or endpoints referencing a CARP vip are now broken and won't work.

OpenVPN too maybe?

Actions #1

Updated by Seth Mos almost 12 years ago

$i = 0;
foreach($config['ipsec']['phase1'] as $phase1) {
if($phase1['interface'] == "vip131")
$config['ipsec']['phase1'][$i]['interface'] = "wan_vip131";

$i++;
}
Actions #2

Updated by Ermal Luçi almost 12 years ago

This is the upgrade code existing there.
Normally the section with s///g should have taken care of that.
Probably you missed the config version upgrade so missed this?

function upgrade_081_to_082() {
        global $config, $g;
        /* enable the allow IPv6 toggle */
        $config['system']['ipv6allow'] = true;

        /* XXX: Gross hacks in sight */
        write_config();
        if (is_array($config['virtualips']['vip'])) {
                $vipchg = array();
                foreach ($config['virtualips']['vip'] as $vip) {
                        $realif = get_real_interface($vip['interface']);
                        file_put_contents("{$g['tmp_path']}/vipreplace", "s/vip{$vip['vhid']}/{$realif}_vip{$vip['vhid']}/g\n");
                }
                mwexec("/bin/sh -I \"\" -f {$g['tmp_path']}/vipreplace /conf/config.xml");
                require_once("config.lib.inc");
                $config = parse_config(true);
        }
}
Actions #3

Updated by Ermal Luçi almost 12 years ago

  • Status changed from New to Feedback
  • % Done changed from 0 to 100
Actions #4

Updated by Jim Pingle almost 12 years ago

  • Status changed from Feedback to Resolved
Actions

Also available in: Atom PDF