Actions
Bug #5016
closedCARP VIP issues - firewall_virtual_ip_edit.php
Description
1) can't edit them, end up with "This IP address is being used by another interface or VIP." Check 1.2.3.4/32 on your test VM for one example
2) VHID isn't being saved, just end up with <vhid/>
Updated by Anonymous about 9 years ago
- Subject changed from CARP VIP issues to CARP VIP issues - firewall_virtual_ip_edit.php
Updated by Anonymous about 9 years ago
- Status changed from Confirmed to Feedback
- Assignee changed from Anonymous to Chris Buechler
Looks like a pre-bootrap bug:
Line 270~ish
$vipent['vhid'] = $_POST['vhid'];
$vipent['vhid'] = $_POST['uinqid'];
should be:
$vipent['vhid'] = $_POST['vhid'];
$vipent['uniqid'] = $_POST['uniqid'];
Needs fixing on master too.
Updated by Jim Pingle about 9 years ago
Actually that should be "uniqid" and not "uinqid" -- looks like a copy/paste line with one missed edit and one typo.
Updated by Jim Pingle about 9 years ago
- % Done changed from 0 to 100
Applied in changeset pfsense:4d843977d247c38035fec84542b6bfadb9ef1662.
Updated by Jim Pingle about 9 years ago
Applied in changeset pfsense:2554dd644ba181ab1ed2c6a7dbb700c8c46e0b85.
Updated by Jim Pingle about 9 years ago
- Status changed from Feedback to Resolved
Saving CARP VIPs appears to work OK now.
Actions