Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpnSense
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
OpnSense
Commits
0ce22e12
Commit
0ce22e12
authored
Mar 18, 2016
by
Franco Fichtner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dns: show forwarder checkbox captions
parent
c63366e5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
services_dnsmasq.php
src/www/services_dnsmasq.php
+4
-3
No files found.
src/www/services_dnsmasq.php
View file @
0ce22e12
...
...
@@ -233,14 +233,15 @@ $( document ).ready(function() {
<td
width=
"22%"
><i
class=
"fa fa-info-circle text-muted"
></i>
<?=
gettext
(
"Enable"
);
?>
</td>
<td
width=
"78%"
>
<input
name=
"enable"
type=
"checkbox"
id=
"enable"
value=
"yes"
<?=
!
empty
(
$pconfig
[
'enable'
])
?
"checked=
\"
checked
\"
"
:
""
;
?>
/>
<strong>
<?=
gettext
(
"Enable DNS Forwarder"
);
?>
</strong>
</td>
</tr>
<tr>
<td><a
id=
"help_for_regdhcp"
href=
"#"
class=
"showhelp"
><i
class=
"fa fa-info-circle"
></i></a>
<?=
gettext
(
"DHCP Registration"
);
?>
</td>
<td>
<input
name=
"regdhcp"
type=
"checkbox"
id=
"regdhcp"
value=
"yes"
<?=
!
empty
(
$pconfig
[
'regdhcp'
])
?
"checked=
\"
checked
\"
"
:
""
;
?>
/>
<strong>
<?=
gettext
(
"Register DHCP leases in DNS forwarder"
);
?>
</strong>
<div
class=
"hidden"
for=
"help_for_regdhcp"
>
<strong>
<?=
gettext
(
"Register DHCP leases in DNS forwarder"
);
?>
</strong><br/>
<?php
printf
(
gettext
(
"If this option is set, then machines that specify"
.
" their hostname when requesting a DHCP lease will be registered"
.
" in the DNS forwarder, so that their name can be resolved."
.
...
...
@@ -253,8 +254,8 @@ $( document ).ready(function() {
<td><a
id=
"help_for_regdhcpstatic"
href=
"#"
class=
"showhelp"
><i
class=
"fa fa-info-circle"
></i></a>
<?=
gettext
(
"Static DHCP"
);
?>
</td>
<td>
<input
name=
"regdhcpstatic"
type=
"checkbox"
id=
"regdhcpstatic"
value=
"yes"
<?=
!
empty
(
$pconfig
[
'regdhcpstatic'
])
?
"checked=
\"
checked
\"
"
:
""
;
?>
/>
<strong>
<?=
gettext
(
"Register DHCP static mappings in DNS forwarder"
);
?>
</strong>
<div
class=
"hidden"
for=
"help_for_regdhcpstatic"
>
<strong>
<?=
gettext
(
"Register DHCP static mappings in DNS forwarder"
);
?>
<br
/></strong>
<?php
printf
(
gettext
(
"If this option is set, then DHCP static mappings will "
.
"be registered in the DNS forwarder, so that their name can be "
.
"resolved. You should also set the domain in %s"
.
...
...
@@ -266,8 +267,8 @@ $( document ).ready(function() {
<td><a
id=
"help_for_dhcpfirst"
href=
"#"
class=
"showhelp"
><i
class=
"fa fa-info-circle"
></i></a>
<?=
gettext
(
"Prefer DHCP"
);
?>
</td>
<td>
<input
name=
"dhcpfirst"
type=
"checkbox"
id=
"dhcpfirst"
value=
"yes"
<?=
!
empty
(
$pconfig
[
'dhcpfirst'
])
?
"checked=
\"
checked
\"
"
:
""
;
?>
/>
<strong>
<?=
gettext
(
"Resolve DHCP mappings first"
);
?>
</strong>
<div
class=
"hidden"
for=
"help_for_dhcpfirst"
>
<strong>
<?=
gettext
(
"Resolve DHCP mappings first"
);
?>
<br
/></strong>
<?php
printf
(
gettext
(
"If this option is set, then DHCP mappings will "
.
"be resolved before the manual list of names below. This only "
.
"affects the name given for a reverse lookup (PTR)."
));
?>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment