diff options
author | Simon Kelley <simon@thekelleys.org.uk> | 2007-01-21 20:01:28 +0000 |
---|---|---|
committer | Simon Kelley <simon@thekelleys.org.uk> | 2012-01-05 17:31:13 +0000 |
commit | 832af0bafb81e7427b062f73d0e7ece21c77a530 (patch) | |
tree | b3f69b068585bebe50c8cbfe6e7c57479dfdbeaa /FAQ | |
parent | 4011c4e05e93238eba05d7b51e50f69a2f2be122 (diff) | |
download | dnsmasq-832af0bafb81e7427b062f73d0e7ece21c77a530.tar.gz |
import of dnsmasq-2.36.tar.gzv2.36
Diffstat (limited to 'FAQ')
-rw-r--r-- | FAQ | 24 |
1 files changed, 23 insertions, 1 deletions
@@ -311,7 +311,7 @@ A: Because when a Gentoo box shuts down, it releases its lease with Q: My laptop has two network interfaces, a wired one and a wireless one. I never use both interfaces at the same time, and I'd like the - same IP and configuration to be used irrespcetive of which + same IP and configuration to be used irrespective of which interface is in use. How can I do that? A: By default, the identity of a machine is determined by using the @@ -393,6 +393,28 @@ A: Dnsmasq is in Suse itself, and the latest releases are also available at ftp://ftp.suse.com/pub/people/ug/ +Q: Can I run dnsmasq in a Linux vserver? + +A: Yes, as a DNS server, dnsmasq will just work in a vserver. + To use dnsmasq's DHCP function you need to give the vserver + extra system capabilities. Please note that doing so will lesser + the overall security of your system. The capabilities + required are NET_ADMIN and NET_RAW. NET_ADMIN is essential, NET_RAW + is required to do an ICMP "ping" check on newly allocated + addresses. If you don't need this check, you can disable it with + --no-ping and omit the NET_RAW capability. + Adding the capabilities is done by adding them, one per line, to + either /etc/vservers/<vservername>/ccapabilities for a 2.4 kernel or + /etc/vservers/<vservername>/bcapabilities for a 2.6 kernel (please + refer to the vserver documentation for more information). + + + + + + + + |