1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
<?xml version="1.0" encoding="utf-8" ?>
<packagegui>
<title>Services/UPnP & NAT-PMP</title>
<name>miniupnpd</name>
<version>20100712</version>
<savetext>Change</savetext>
<include_file>/usr/local/pkg/miniupnpd.inc</include_file>
<menu>
<name>UPnP & NAT-PMP</name>
<tooltiptext>Set UPnP & NAT-PMP settings such as interfaces to listen on.</tooltiptext>
<section>Services</section>
<url>/pkg_edit.php?xml=miniupnpd.xml&id=0</url>
</menu>
<service>
<name>miniupnpd</name>
<rcfile>miniupnpd.sh</rcfile>
<executable>miniupnpd</executable>
</service>
<fields>
<field>
<name>UPnP & NAT-PMP Settings</name>
<type>listtopic</type>
<enablefields>enable_upnp,enable_natpmp,ext_iface,iface_array,download,upload,overridewanip,upnpqueue,logpackets,sysuptime,permdefault</enablefields>
</field>
<field>
<fielddescr>Enable UPnP & NAT-PMP</fielddescr>
<fieldname>enable</fieldname>
<type>checkbox</type>
<enablefields>enable_upnp,enable_natpmp,ext_iface,iface_array,download,upload,overridewanip,upnpqueue,logpackets,sysuptime,permdefault</enablefields>
</field>
<field>
<fielddescr>Allow UPnP Port Mapping</fielddescr>
<fieldname>enable_upnp</fieldname>
<type>checkbox</type>
<description>This protocol is often used by Microsoft-compatible systems.</description>
</field>
<field>
<fielddescr>Allow NAT-PMP Port Mapping</fielddescr>
<fieldname>enable_natpmp</fieldname>
<type>checkbox</type>
<description>This protocol is often used by Apple-compatible systems.</description>
</field>
<field>
<fielddescr>External Interface (generally WAN)</fielddescr>
<fieldname>ext_iface</fieldname>
<default_value>wan</default_value>
<type>interfaces_selection</type>
<hideinterfaceregex>loopback</hideinterfaceregex>
<description>Select only your primary WAN interface (interface with your default route). Only one interface is allowed here, not multiple.</description>
<required/>
</field>
<field>
<fielddescr>Interfaces (generally LAN)</fielddescr>
<fieldname>iface_array</fieldname>
<default_value>lan</default_value>
<type>interfaces_selection</type>
<description>You can use the CTRL or COMMAND key to select multiple interfaces.</description>
<required/>
<multiple/>
</field>
<field>
<fielddescr>Maximum Download Speed (Kbits/second)</fielddescr>
<fieldname>download</fieldname>
<type>input</type>
</field>
<field>
<fielddescr>Maximum Upload Speed (Kbits/second)</fielddescr>
<fieldname>upload</fieldname>
<type>input</type>
</field>
<field>
<fielddescr>Override WAN address</fielddescr>
<fieldname>overridewanip</fieldname>
<type>input</type>
</field>
<field>
<fielddescr>Traffic Shaping Queue</fielddescr>
<fieldname>upnpqueue</fieldname>
<type>input</type>
</field>
<field>
<fielddescr>Log packets handled by UPnP & NAT-PMP rules?</fielddescr>
<fieldname>logpackets</fieldname>
<type>checkbox</type>
</field>
<field>
<fielddescr>Use system uptime instead of UPnP & NAT-PMP service uptime?</fielddescr>
<fieldname>sysuptime</fieldname>
<type>checkbox</type>
</field>
<field>
<fielddescr>By default deny access to UPnP & NAT-PMP?</fielddescr>
<fieldname>permdefault</fieldname>
<type>checkbox</type>
</field>
<field>
<fielddescr>User specified permissions</fielddescr>
<fieldname>none</fieldname>
<description>Format: [allow or deny] [ext port or range] [int ipaddr or ipaddr/CIDR] [int port or range]
<br />Example: allow 1024-65535 192.168.0.0/24 1024-65535</description>
<type>rowhelper</type>
<rowhelper>
<rowhelperfield>
<fieldname>permuser</fieldname>
<type>input</type>
<size>60</size>
</rowhelperfield>
</rowhelper>
</field>
</fields>
<custom_php_command_before_form>
before_form_miniupnpd($pkg);
</custom_php_command_before_form>
<custom_php_validation_command>
validate_form_miniupnpd($_POST, $input_errors);
</custom_php_validation_command>
<custom_php_resync_config_command>
sync_package_miniupnpd();
</custom_php_resync_config_command>
</packagegui>
|