Revision 1bcc6e56
Added by Jim Pingle over 5 years ago
src/etc/inc/shaper.inc | ||
---|---|---|
1761 | 1761 |
null, |
1762 | 1762 |
null, |
1763 | 1763 |
!empty($this->GetRed()) |
1764 |
))->setHelp('%1$sRandom Early Detection%2$s', '<a target="_new" href="https://web.archive.org/web/20160404153707/http://www.openbsd.org/faq/pf/queueing.html#red">', '</a>');
|
|
1764 |
))->setHelp('%1$sRandom Early Detection%2$s', '<a target="_new" href="https://docs.netgate.com/pfsense/en/latest/book/trafficshaper/advanced-customization.html#editing-shaper-queues">', '</a>');
|
|
1765 | 1765 |
|
1766 | 1766 |
$group->add(new Form_Checkbox( |
1767 | 1767 |
'rio', |
1768 | 1768 |
null, |
1769 | 1769 |
null, |
1770 | 1770 |
!empty($this->GetRio()) |
1771 |
))->setHelp('%1$sRandom Early Detection In and Out%2$s', '<a target="_new" href="https://web.archive.org/web/20160404153707/http://www.openbsd.org/faq/pf/queueing.html#rio">', '</a>');
|
|
1771 |
))->setHelp('%1$sRandom Early Detection In and Out%2$s', '<a target="_new" href="https://docs.netgate.com/pfsense/en/latest/book/trafficshaper/advanced-customization.html#editing-shaper-queues">', '</a>');
|
|
1772 | 1772 |
|
1773 | 1773 |
$group->add(new Form_Checkbox( |
1774 | 1774 |
'ecn', |
1775 | 1775 |
null, |
1776 | 1776 |
null, |
1777 | 1777 |
!empty($this->GetEcn()) |
1778 |
))->setHelp('%1$sExplicit Congestion Notification%2$s', '<a target="_new" href="https://web.archive.org/web/20160404153707/http://www.openbsd.org/faq/pf/queueing.html#ecn">', '</a>');
|
|
1778 |
))->setHelp('%1$sExplicit Congestion Notification%2$s', '<a target="_new" href="https://docs.netgate.com/pfsense/en/latest/book/trafficshaper/advanced-customization.html#editing-shaper-queues">', '</a>');
|
|
1779 | 1779 |
|
1780 | 1780 |
$group->add(new Form_Checkbox( |
1781 | 1781 |
'codel', |
1782 | 1782 |
null, |
1783 | 1783 |
null, |
1784 | 1784 |
!empty($this->GetCodel()) |
1785 |
))->setHelp('%1$sCodel Active Queue%2$s', '<a target="_new" href="https://web.archive.org/web/20160404153707/http://www.openbsd.org/faq/pf/queueing.html#ecn">', '</a>');
|
|
1785 |
))->setHelp('%1$sCodel Active Queue%2$s', '<a target="_new" href="https://docs.netgate.com/pfsense/en/latest/book/trafficshaper/altq-scheduler-types.html#codel-active-queue-management">', '</a>');
|
|
1786 | 1786 |
|
1787 | 1787 |
$group->setHelp('Select options for this queue'); |
1788 | 1788 |
|
src/usr/local/www/firewall_virtual_ip_edit.php | ||
---|---|---|
449 | 449 |
?> |
450 | 450 |
|
451 | 451 |
<div class="infoblock"> |
452 |
<?php print_info_box(gettext("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 types.") . '<br />' .
|
|
453 |
sprintf(gettext("For more information on CARP and the above values, visit the OpenBSD %s"), '<a href="http://www.openbsd.org/faq/pf/carp.html">CARP FAQ</a>.'), 'info', false); ?>
|
|
452 |
<?php print_info_box(gettext("Proxy ARP and Other type Virtual IP addresses cannot be used for binding by services on the firewall (IPsec, OpenVPN, etc.). Use an IP Alias or CARP type VIP for these roles.") . '<br />' .
|
|
453 |
sprintf(gettext("For more information, visit the pfSense book section on %s"), '<a href="https://docs.netgate.com/pfsense/en/latest/book/firewall/virtual-ip-addresses.html">Virtual IP Addresses</a>.'), 'info', false); ?>
|
|
454 | 454 |
</div> |
455 | 455 |
|
456 | 456 |
<script type="text/javascript"> |
Also available in: Unified diff
Link to the book, not old OpenBSD docs. Fixes #10184