summaryrefslogtreecommitdiffstats
path: root/rules/dibbler.in
blob: 6c9808066de7695ce9a3fb472ca2c807442926f2 (plain)
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
## SECTION=networking

menuconfig DIBBLER
	tristate
	prompt "dibbler (DHCPv6)              "
	select LIBC_M
	select GCCLIBS_CXX
	select GCCLIBS_GCC_S
	help
	  Dibbler is a portable DHCPv6 implementation.
	  It supports stateful (i.e. IPv6 address granting) as well as
	  stateless (i.e. option granting) autoconfiguration for IPv6.

if DIBBLER

config DIBBLER_SERVER
	bool
	prompt "Install server"
	help
	  The Dibbler server supports both stateful (i.e. IPv6 address
	  granting) as well as stateless (i.e. options granting)
	  auto-configuration modes of the DHCPv6 protocol. Relays are also
	  supported. This package allows IPv6 hosts to be automatically
	  configured on the network.

config DIBBLER_SERVER_STARTSCRIPT
	bool
	default y
	prompt "install /etc/init.d/dibbler-server"
	depends on DIBBLER_SERVER
	help
	  Install the startup script for bbinit.

config DIBBLER_CLIENT
	bool
	prompt "Install client"
	help
	  The Dibbler client supports both stateful (i.e. IPv6 address
	  granting) as well as stateless (i.e. option granting)
	  auto-configuration modes of the DHCPv6 protocol. Besides basic
	  capabilities, it supports various DHCPv6 extensions, for instance
	  option renewal. Installing Dibbler allows obtaining IPv6 addresses and
	  options from a DHCPv6 server.

config DIBBLER_CLIENT_STARTSCRIPT
	bool
	default y
	prompt "install /etc/init.d/dibbler-client"
	depends on DIBBLER_CLIENT
	help
	  Install the startup script for bbinit.

config DIBBLER_RELAY
	bool
	prompt "Install relay"
	help
	  Relays are used as proxies between servers and clients. Their main
	  advantage is the ability to support multiple remote links using only
	  one server. Installing Dibbler relay allows serving multiple, not
	  physically connected, links with one DHCPv6 server.

config DIBBLER_RELAY_STARTSCRIPT
	bool
	default y
	prompt "install /etc/init.d/dibbler-relay"
	depends on DIBBLER_RELAY
	help
	  Install the startup script for bbinit.

endif