diff --git a/src/opnsense/mvc/app/controllers/OPNsense/Interfaces/forms/dialogVip.xml b/src/opnsense/mvc/app/controllers/OPNsense/Interfaces/forms/dialogVip.xml
index fd90f018c..64c2fdeb7 100644
--- a/src/opnsense/mvc/app/controllers/OPNsense/Interfaces/forms/dialogVip.xml
+++ b/src/opnsense/mvc/app/controllers/OPNsense/Interfaces/forms/dialogVip.xml
@@ -3,7 +3,7 @@
vip.modedropdown
- Proxy ARP and other type Virtual IPs cannot be bound to by anything running on the firewall, such as IPsec, OpenVPN, etc. Use a CARP or IP Alias type address for these cases.
+ Proxy ARP cannot be bound to by anything running on the firewall, such as IPsec, OpenVPN, etc. In most cases an IP alias should be used.vip.interface
diff --git a/src/opnsense/mvc/app/models/OPNsense/Interfaces/Vip.xml b/src/opnsense/mvc/app/models/OPNsense/Interfaces/Vip.xml
index ece1b545c..294b4e572 100644
--- a/src/opnsense/mvc/app/models/OPNsense/Interfaces/Vip.xml
+++ b/src/opnsense/mvc/app/models/OPNsense/Interfaces/Vip.xml
@@ -15,8 +15,6 @@
IP AliasCARPProxy ARP
-
- Other
diff --git a/src/opnsense/mvc/app/views/OPNsense/Interface/vip.volt b/src/opnsense/mvc/app/views/OPNsense/Interface/vip.volt
index e97f21d50..bedd8b1b3 100644
--- a/src/opnsense/mvc/app/views/OPNsense/Interface/vip.volt
+++ b/src/opnsense/mvc/app/views/OPNsense/Interface/vip.volt
@@ -83,7 +83,6 @@
-
diff --git a/src/opnsense/scripts/interfaces/reconfigure_vips.php b/src/opnsense/scripts/interfaces/reconfigure_vips.php
index 74513b981..5dda8f73a 100755
--- a/src/opnsense/scripts/interfaces/reconfigure_vips.php
+++ b/src/opnsense/scripts/interfaces/reconfigure_vips.php
@@ -110,7 +110,7 @@ if (!empty($config['virtualip']['vip'])) {
if ($vipent['mode'] == 'proxyarp') {
$proxyarp = true;
}
- if (in_array($vipent['mode'], ['proxyarp', 'other'])) {
+ if ($vipent['mode'] == 'proxyarp') {
if (isset($addresses[$subnet])) {
legacy_interface_deladdress($addresses[$subnet]['if'], $subnet, is_ipaddrv6($subnet) ? 6 : 4);
}