Skip to content

Commit

Permalink
*** empty log message ***
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaszmrugalski committed Jul 3, 2006
1 parent 132fcad commit 742b306
Show file tree
Hide file tree
Showing 4 changed files with 61 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG
@@ -1,6 +1,12 @@

Dibbler changelog
-------------------
0.5.0 [not-released-yet]
- FQDN Support (DNS Updates) support added
- Support for temporary addresses (TA) added
- log-mode PRECISE added
- log entries are appended (previously log files were overwritten at startup)

0.4.2 [2006-02-03] (DSFG cleanup release)
- No bugfixes or new features
- Debian Free Software Guidelines (i.e. headers in source files, removed non-free files)
Expand Down
7 changes: 4 additions & 3 deletions TODO
@@ -1,10 +1,11 @@

$Id: TODO,v 1.26 2006-03-23 00:12:09 thomson Exp $
$Id: TODO,v 1.27 2006-07-03 17:56:22 thomson Exp $

Internal/code TODO
--------------------
- BUG: domain format in /etc/resolv.conf must be fixed
- DOC: Describe dumping XML files, option files
- Statistics: TransMgr->dump() should be implemented.
- Change Srv/ClntOptServer/ClientIdentifier to use TOptGeneric class.
- IfaceMgr.cpp:232 (remove #ifndef WIN32)

- Clnt requests for Address and options (receives both and lifetime option). It should send renew only if T1<lifetime
Expand All @@ -22,7 +23,7 @@ $Id: TODO,v 1.26 2006-03-23 00:12:09 thomson Exp $

Rewrite
---------
1. client's answers are generated by answer(...) method, whereas server's answer's
1. client's answers are generated by answer(...) method, whereas server's answers
are generated in the relayMsg method by differents constructors of the same message.
Shouldn't it be better to make it homogeneous ? I don't have any preference :)
2. ClntIfaceMgr: remove ugly sleep(3) instruction.
Expand Down
20 changes: 20 additions & 0 deletions client-fqdn.conf
@@ -0,0 +1,20 @@
log-level 7

# To perform stateless (i.e. options only) configuration, uncomment
# this line below and remove any "ia" keywords from interface definitions
# stateless

iface eth0 {
# ask for address
ia

# ask for DNS server's address
option dns-server

# ask for fully qualified domain name
option fqdn
# you can also provide hint for the server
# option fqdn client.name.foo.com
}


31 changes: 31 additions & 0 deletions server-fqdn.conf
@@ -0,0 +1,31 @@
# Logging level range: 1(Emergency)-8(Debug)
#
log-level 8

# Don't log full date
log-mode short

iface "eth1" {

class {
pool 2001::1-2001::ff
}

# provide DNS server location to the clients
option dns-server 2000::1

# provide their domain name
option domain example.com

# provide fully qualified domain names for clients
# note that first, second and third entry is reserved
# for a specific address or a DUID
option fqdn Zebuline - 2000::1,
KAeL - 2000::2,
test.example.com - 0x0001000043ce25b40013d4024bf5,
zoe,
malcolm,
kaylee,
jayne

}

0 comments on commit 742b306

Please sign in to comment.