Bug #5016
CARP 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/>
Associated revisions
Fix incorrect variable references for CARP VIPs. Fixes #5016
History
#1
Updated by Steve Beaver over 5 years ago
- Subject changed from CARP VIP issues to CARP VIP issues - firewall_virtual_ip_edit.php
#2
Updated by Steve Beaver over 5 years ago
- Status changed from Confirmed to Feedback
- Assignee changed from Steve Beaver 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.
#3
Updated by Jim Pingle over 5 years ago
Actually that should be "uniqid" and not "uinqid" -- looks like a copy/paste line with one missed edit and one typo.
#4
Updated by Jim Pingle over 5 years ago
- % Done changed from 0 to 100
Applied in changeset pfsense:4d843977d247c38035fec84542b6bfadb9ef1662.
#5
Updated by Jim Pingle over 5 years ago
Applied in changeset pfsense:2554dd644ba181ab1ed2c6a7dbb700c8c46e0b85.
#6
Updated by Jim Pingle over 5 years ago
- Status changed from Feedback to Resolved
Saving CARP VIPs appears to work OK now.
Fix incorrect variable references for CARP VIPs. Fixes #5016