mirror of
https://github.com/opnsense/plugins.git
synced 2026-05-28 04:34:15 -04:00
UDP Broadcast relay Update (#2384)
The server side data-width is too large for tablets. Reduced to give a better overall view, though this truncates data it looks better on a tablet. Bumped revision and updated pkg-descr.
This commit is contained in:
parent
e762a7dd77
commit
590dcec258
3 changed files with 14 additions and 10 deletions
|
|
@ -1,6 +1,6 @@
|
|||
PLUGIN_NAME= udpbroadcastrelay
|
||||
PLUGIN_VERSION= 1.0
|
||||
PLUGIN_REVISION= 1
|
||||
PLUGIN_REVISION= 2
|
||||
PLUGIN_COMMENT= Control ubpbroadcastrelay processes
|
||||
PLUGIN_DEPENDS= udpbroadcastrelay
|
||||
PLUGIN_MAINTAINER= mjwasley@gmail.com
|
||||
|
|
|
|||
|
|
@ -27,3 +27,7 @@ udp_vars=" --id 1 --port 80 --dev eth0 --dev eth1"
|
|||
|
||||
Warcraft 3 Server Discovery
|
||||
udp_vars=" --id 1 --port 6112 --dev eth0 --dev eth1"
|
||||
|
||||
It is a requirement that generally a firewall entry will be required to allow the server responses
|
||||
back to the requesting client. As it's not known what the port/address of the server is then this
|
||||
entry will need to be created manually.
|
||||
|
|
@ -87,16 +87,16 @@ POSSIBILITY OF SUCH DAMAGE.
|
|||
<table id="grid-proxies" class="table table-condensed table-hover table-striped table-responsive" data-editDialog="DialogEdit">
|
||||
<thead>
|
||||
<tr>
|
||||
<th data-column-id="enabled" data-width="6em" data-type="string" data-formatter="rowtoggle">{{ lang._('Enabled') }}</th>
|
||||
<th data-column-id="interfaces" data-width="10em" data-type="string" data-visible="true">{{ lang._('Interfaces') }}</th>
|
||||
<th data-column-id="multicastaddress" data-width="15em" data-type="string" data-visible="true">{{ lang._('Multicast Addresses') }}</th>
|
||||
<th data-column-id="sourceaddress" data-width="11em" data-type="string" data-visible="true">{{ lang._('Source Address') }}</th>
|
||||
<th data-column-id="listenport" data-width="8em" data-type="string" data-visible="true">{{ lang._('Listen Port') }}</th>
|
||||
<th data-column-id="InstanceID" data-width="6em" data-type="string" data-visible="true">{{ lang._('ID') }}</th>
|
||||
<th data-column-id="description" data-width="15em" data-type="string">{{ lang._('Description') }}</th>
|
||||
<th data-column-id="enabled" data-width="1em" data-type="string" data-formatter="rowtoggle">{{ lang._('Enabled') }}</th>
|
||||
<th data-column-id="interfaces" data-width="2em" data-type="string" data-visible="true">{{ lang._('Interfaces') }}</th>
|
||||
<th data-column-id="multicastaddress" data-width="2em" data-type="string" data-visible="true">{{ lang._('Multicast Addresses') }}</th>
|
||||
<th data-column-id="sourceaddress" data-width="2em" data-type="string" data-visible="true">{{ lang._('Source Address') }}</th>
|
||||
<th data-column-id="listenport" data-width="2em" data-type="string" data-visible="true">{{ lang._('Listen Port') }}</th>
|
||||
<th data-column-id="InstanceID" data-width="1em" data-type="string" data-visible="true">{{ lang._('ID') }}</th>
|
||||
<th data-column-id="description" data-width="2em" data-type="string">{{ lang._('Description') }}</th>
|
||||
<th data-column-id="uuid" data-type="string" data-identifier="true" data-visible="false">{{ lang._('ID') }}</th>
|
||||
<th data-column-id="RevertTTL" data-width="10em" data-type="string" data-visible="true" data-formatter="boolean">{{ lang._('Use ID as TTL') }}</th>
|
||||
<th data-column-id="commands" data-width="7em" data-formatter="commands" data-sortable="false">{{ lang._('Commands') }}</th>
|
||||
<th data-column-id="RevertTTL" data-width="2em" data-type="string" data-visible="true" data-formatter="boolean">{{ lang._('Use ID as TTL') }}</th>
|
||||
<th data-column-id="commands" data-width="2em" data-formatter="commands" data-sortable="false">{{ lang._('Commands') }}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
|
|
|||
Loading…
Reference in a new issue