mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Show carp on the list of interfaces to be used for creating gif/gre tunnels.
This commit is contained in:
parent
f1a93dee11
commit
11decf6ef6
@ -136,6 +136,9 @@ include("head.inc");
|
||||
<select name="if" class="formselect">
|
||||
<?php
|
||||
$portlist = get_configured_interface_with_descr();
|
||||
$carplist = get_configured_carp_interface_list();
|
||||
foreach ($carplist as $cif => $carpip)
|
||||
$portlist[$cif] = $carpip." (".get_vip_descr($carpip).")";
|
||||
foreach ($portlist as $ifn => $ifinfo) {
|
||||
echo "<option value=\"{$ifn}\"";
|
||||
if ($ifn == $pconfig['if'])
|
||||
|
||||
@ -139,6 +139,9 @@ include("head.inc");
|
||||
<select name="if" class="formselect">
|
||||
<?php
|
||||
$portlist = get_configured_interface_with_descr();
|
||||
$carplist = get_configured_carp_interface_list();
|
||||
foreach ($carplist as $cif => $carpip)
|
||||
$portlist[$cif] = $carpip." (".get_vip_descr($carpip).")";
|
||||
foreach ($portlist as $ifn => $ifinfo) {
|
||||
echo "<option value=\"{$ifn}\"";
|
||||
if ($ifn == $pconfig['if'])
|
||||
|
||||
Loading…
Reference in New Issue
Block a user