faq.xml 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [
  4. <!ENTITY mdash "&#x2014;" >
  5. ]>
  6. <chapter id="faq">
  7. <title>Frequently Asked Questions</title>
  8. <para>This chapter contains a number of frequently asked questions and
  9. troubleshooting tips. It currently lacks content, but it is expected to grow
  10. over time.</para>
  11. <!-- Note: you may be tempted to put in questions here that concern current
  12. missing features or known issues type of stuff. Please do not do that.
  13. This section should only contain questions that will still be valid in
  14. at least 2 years. If you have something short term, please consider putting
  15. it in the known issues list. -->
  16. <section id="faq-generic">
  17. <title>General Frequently Asked Questions</title>
  18. <section id="q1-generic">
  19. <title>Where did the Kea name came from?</title>
  20. <para>Kea is the name of a high mountain parrot living in New Zealand.
  21. See this <ulink url="https://lists.isc.org/pipermail/kea-users/2014-October/000032.html" />
  22. for an extended answer.</para>
  23. </section>
  24. <section id="q2-generic">
  25. <title>Feature X is not supported yet. When/if will it be available?</title>
  26. <para>Kea is developed by a small team of engineers. Our resources are
  27. limited, so we need to prioritize requests. The complexity of a new
  28. feature (how difficult it is to implement a feature and how likely it
  29. would break something that already works), amount of work required and
  30. expected popularity (i.e., how many users would actually benefit from it)
  31. are three leading factors. We sometimes also have contractual obligations.
  32. </para>
  33. <para> Simply stating that you'd like feature X is useful. We try to
  34. implement features that are actively requested first, but the reality
  35. is that we have more requests than we can handle, so some of them must
  36. be postponed, at least in the near future. So is your request likely to
  37. be rejected? Not at all. You can do many things to greatly improve the
  38. chances of your request being fulfilled. First, it helps to explain why you
  39. need a feature. If your explanation is reasonable and there are likely
  40. other users that would benefit from it, the chances for Kea developers
  41. to put this task on a roadmap is better. Saying that you are willing
  42. to participate in tests (e.g., test engineering drops when they become
  43. available) is also helpful.</para>
  44. <para>Another thing you can do to greatly improve the chances of a feature
  45. to appear is to actually develop it on your own and submit a patch.
  46. That's an avenue that people often forget about. Kea is open source
  47. software and we do accept patches. There are certain requirements, like
  48. code quality, comments, unit-tests, documentation, etc., but we have
  49. accepted a significant number of patches in the past, so it's doable.
  50. Accepted contributions range from minor documentation corrections to
  51. significant new features, like support for a new database type. Before
  52. considering writing and submitting a patch, make sure you read
  53. the Contributor's Guide in the
  54. <ulink url="http://git.kea.isc.org/~tester/kea/doxygen/">Kea Developer's Guide</ulink>.
  55. </para>
  56. <para>Kea is developed by ISC, which is a non-profit organization.
  57. You may consider signing a development contract with us. In the past
  58. we did implement certain features due to contractual obligations.
  59. With additional funds we are able to put extra engineering efforts
  60. into Kea development. We can reshuffle our schedule or add extra
  61. hands to the team if needed. Please keep in mind that Kea is
  62. open source software and its principle goal is to provide a good DHCP
  63. solution that can be used by everyone. In other words, we may
  64. refuse a contract that would tie the solution to specific proprietary
  65. technology or make it unusable for other users. Also, we strive to
  66. make Kea a reference implementation, so if your proposal significantly
  67. violates a RFC, we may have a problem with that. Nevertheless, please
  68. talk to us and we may be able to find a solution.</para>
  69. <para>Finally, Kea has a <ulink url="http://kea.isc.org/roadmap">public
  70. roadmap</ulink>, with releases happening several times each year. We tend
  71. to not modify plans for the current milestone, unless there are very good
  72. reasons to do so. Therefore "I'd like a feature X in 6 months" is much
  73. better received than "I'd like a feature X now".</para>
  74. </section>
  75. </section>
  76. <section id="faq-dhcp4">
  77. <title>Frequently Asked Questions about DHCPv4</title>
  78. <section iq="q1-dhcp4">
  79. <title>I set up a firewall, but the Kea server still receives the traffic. Why?</title>
  80. <para>Any DHCPv4 server must be able to receive from and send traffic to
  81. hosts that don't have an IPv4 address assigned yet. That is typically not
  82. possible with regular UDP sockets, therefore the Kea DHCPv4 server uses raw
  83. sockets by default. Raw sockets mean that the incoming packets are received
  84. as raw Ethernet frames, thus bypassing the whole kernel IP stack, including
  85. any firewalling rules your kernel may provide.</para>
  86. <para>If you do not want the server to use raw sockets, it is possible to
  87. configure the Kea DHCPv4 server to use UDP sockets instead. See <command>dhcp-socket-type</command>
  88. described in <xref linkend="dhcp4-interface-configuration" />. However,
  89. using UDP sockets has certain limitations. In particular, they may not allow
  90. for sending responses directly to clients without IPv4 addresses assigned.
  91. That's ok, if all your traffic is coming through relay agents.</para>
  92. </section>
  93. </section> <!-- end of DHCPv4 FAQ section -->
  94. <section id="faq-dhcp6">
  95. <title>Frequently Asked Questions about DHCPv6</title>
  96. <section iq="q1-dhcp6">
  97. <title>Kea DHCPv6 doesn't seem to get incoming traffic. I checked with tcpdump (or other traffic
  98. capture software) that the incoming traffic is reaching the box. What's wrong?</title>
  99. <para>Please check whether your OS has any IPv6 filtering rules. Many
  100. operating systems are shipped with firewalls that discard incoming IPv6
  101. traffic by default. In particular, many Linux distributions do that. Please
  102. check the output of the following command:
  103. <screen>
  104. # <userinput>ip6tables -L -n</userinput></screen>
  105. One common mistake in this area is to use <command>iptables</command> tool,
  106. which lists IPv4 firewall rules only.
  107. </para>
  108. </section>
  109. </section> <!-- end of DHCPv6 FAQ section -->
  110. </chapter>