Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
D
Dnsmasq
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
Dnsmasq
Commits
7023e382
Commit
7023e382
authored
Mar 09, 2012
by
Simon Kelley
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Docs changes for ra-names.
parent
a7cf58cc
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
1 deletion
+24
-1
CHANGELOG
CHANGELOG
+3
-0
dnsmasq.conf.example
dnsmasq.conf.example
+9
-0
man/dnsmasq.8
man/dnsmasq.8
+12
-1
No files found.
CHANGELOG
View file @
7023e382
...
@@ -4,6 +4,9 @@ version 2.61
...
@@ -4,6 +4,9 @@ version 2.61
and allows us to find the prefix length for IPv6
and allows us to find the prefix length for IPv6
addresses.
addresses.
Add ra-names DHCPv6 keyword which adds AAAA records
for dual-stack hosts which get IPv6 addresses via SLAAC.
version 2.60
version 2.60
Fix compilation problem in Mac OS X Lion. Thanks to Olaf
Fix compilation problem in Mac OS X Lion. Thanks to Olaf
...
...
dnsmasq.conf.example
View file @
7023e382
...
@@ -164,6 +164,15 @@
...
@@ -164,6 +164,15 @@
# Do Router Advertisements, BUT NOT DHCP for this subnet.
# Do Router Advertisements, BUT NOT DHCP for this subnet.
#dhcp-range=1234::, ra-only
#dhcp-range=1234::, ra-only
# Do Router Advertisements, BUT NOT DHCP for this subnet, also try and
# add names to the DNS for the IPv6 address of SLAAC-configured dual-stack
# hosts. Use the DHCPv4 lease to derive the name, network segment and
# MAC address and assume that the host will also have an
# IPv6 address calculated using the SLAAC alogrithm.
# This will generate an erroneous AAAA record if a host is using privacy
# extensions or does not support IPv6. Use with care.
#dhcp-range=1234::, ra-names
# Do Router Advertisements, BUT NOT DHCP for this subnet.
# Do Router Advertisements, BUT NOT DHCP for this subnet.
# Set the lifetime to 46 hours. (Note: minimum lifetime is 2 hours.)
# Set the lifetime to 46 hours. (Note: minimum lifetime is 2 hours.)
#dhcp-range=1234::, ra-only, 48h
#dhcp-range=1234::, ra-only, 48h
...
...
man/dnsmasq.8
View file @
7023e382
...
@@ -556,7 +556,18 @@ the keyword
...
@@ -556,7 +556,18 @@ the keyword
which tells dnsmasq to offer Router Advertisement only on this subnet,
which tells dnsmasq to offer Router Advertisement only on this subnet,
and not DHCP. This applies to IPv6 only, see
and not DHCP. This applies to IPv6 only, see
.B enable-ra
.B enable-ra
for details.
for details. Instead, the keyword
.B ra-names
may be used. This does the same at ra-only, but also enables a mode
which gives DNS names to dual-stack hosts which do SLAAC for
IPv6. Dnsmasq uses the hosts IPv4 lease to derive the name, network
segment and MAC address and assumes that the host will also have an
IPv6 address calculated using the SLAAC alogrithm, on the same network
segment. An AAAA record is added to the DNS for this IPv6
address. Note that this is only happens for directly-connected
networks, (not one doing DHCP via a relay) and it will generate an
erroneous AAAA record if a host is using privacy extensions or does
not support IPv6. Use with care.
The interface:<interface name> section is not normally used. See the
The interface:<interface name> section is not normally used. See the
NOTES section for details of this.
NOTES section for details of this.
...
...
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