Revision 1c4edc3c
Added by Jim Pingle over 14 years ago
usr/local/www/firewall_nat_out.php | ||
---|---|---|
363 | 363 |
</td> |
364 | 364 |
<td class="listr" onClick="fr_toggle(<?=$nnats;?>)" id="frd<?=$nnats;?>" ondblclick="document.location='firewall_nat_out_edit.php?id=<?=$nnats;?>';"> |
365 | 365 |
<?php |
366 |
echo ($natent['protocol']) ? $natent['protocol'] . '/' : "" ; |
|
366 | 367 |
if (!$natent['sourceport']) |
367 | 368 |
echo "*"; |
368 | 369 |
else |
... | ... | |
382 | 383 |
</td> |
383 | 384 |
<td class="listr" onClick="fr_toggle(<?=$nnats;?>)" id="frd<?=$nnats;?>" ondblclick="document.location='firewall_nat_out_edit.php?id=<?=$nnats;?>';"> |
384 | 385 |
<?php |
386 |
echo ($natent['protocol']) ? $natent['protocol'] . '/' : "" ; |
|
385 | 387 |
if (!$natent['dstport']) |
386 | 388 |
echo "*"; |
387 | 389 |
else |
Also available in: Unified diff
If an outbound nat rule has a protocol specified, show it in the summary view.