diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-03-14 16:52:38 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-03-14 16:52:38 +0000 |
commit | 7bb0cf772d548c7b80eb5232614cb4a9dd42c6ff (patch) | |
tree | 960a09113b1041ca504c13032ea550b986afa573 /packages/carp_status.php | |
parent | 38f9cdb9744b391a714a5d8134c007b50d721e97 (diff) | |
download | pfsense-packages-7bb0cf772d548c7b80eb5232614cb4a9dd42c6ff.tar.gz pfsense-packages-7bb0cf772d548c7b80eb5232614cb4a9dd42c6ff.tar.bz2 pfsense-packages-7bb0cf772d548c7b80eb5232614cb4a9dd42c6ff.zip |
* Add Carp interface column
* Change name of old Interface column to Virtual IP
* Move prior interface to Carp interface
Diffstat (limited to 'packages/carp_status.php')
-rw-r--r-- | packages/carp_status.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/packages/carp_status.php b/packages/carp_status.php index f9e65665..af9922fa 100644 --- a/packages/carp_status.php +++ b/packages/carp_status.php @@ -65,7 +65,8 @@ include("fbegin.inc"); <table width="100%" border="0" cellpadding="6" cellspacing="0"> <tr> - <td class="listhdrr"><b><center>Interface</center></b></td> + <td class="listhdrr"><b><center>Carp Interface</center></b></td> + <td class="listhdrr"><b><center>Virtual IP</center></b></td> <td class="listhdrr"><b><center>Status</center></b></td> </tr> <?php @@ -86,7 +87,8 @@ if($config['installedpackages']['carp']['config'] <> "") if(isset($carp['premtpion'])) $premption = "true"; else $premption = "false"; if($synciface <> "") $sync_status = get_pfsync_interface_status($synciface); echo "<tr>"; - echo "<td class=\"listlr\"><center>" . $ipaddress . " - " . $carp_int . "</td>"; + echo "<td class=\"listlr\"><center>" . $carp_int . "</td>"; + echo "<td class=\"listlr\"><center>" . $ipaddress . "</td>"; echo "<td class=\"listlr\"><center>" . $status . "<br>" . $sync_status . "</td>"; echo "</tr>"; } |