[Kea-users] Fwd: is there any way to force kea-dhcp4-server/kea-dhcp-ddns-server to use option 12 instead of option 81?

2023-09-06 Thread Thomas Markwalder
ea-dhcp4-server/kea-dhcp-ddns-server to use option 12 instead of option 81? To: kea-users@lists.isc.org References: Content-Language: en-US From: Thomas Markwalder In-Reply-To: Hello: This can be done via our premium DDNS Tuning hook library: https://kea.readthedocs.io/e

Re: [Kea-users] is there any way to force kea-dhcp4-server/kea-dhcp-ddns-server to use option 12 instead of option 81?

2023-09-06 Thread Thomas Markwalder
Hello: This can be done via our premium DDNS Tuning hook library: https://kea.readthedocs.io/en/latest/arm/hooks.html#libdhcp-ddns-tuning-so-ddns-tuning which allows you to define hostname expression. You would do something similar to this: "hostname-expr" :

Re: [Kea-users] Suppress DDNS for reservations

2022-03-09 Thread Thomas Markwalder
While perhaps not ideal, if you have control over what the static clients send in their DHCP requests, having them send an FQDN option with the N-S flags to N=1, S=0 would tell the server to not do any updates.  See this section:

Re: [Kea-users] Lease_cmds

2021-05-22 Thread Thomas Markwalder
Each library must be enclosed in braces as follows: "hooks-libraries": [       {         "library": "/usr/local/lib/kea/hooks/libdhcp_mysql_cb.so"       },       {         "library": "/usr/local/lib/kea/hooks/libdhcp_lease_cmds.so"       },   {         "library":

Re: [Kea-users] DHCP-DDNS Windows Domain Clients - domain is contained twice

2021-03-01 Thread Thomas Markwalder
Hi: We already have an issue open for this: https://gitlab.isc.org/isc-projects/kea/-/issues/1529 It's currently in the kea 1.9.backlog, so hopefully we'll get this done in the next few months. On 3/1/21 2:48 PM, Schöpke, Sebastian wrote: Hello, First of all, thank you very much vor

Re: [Kea-users] Lease lifetime

2020-09-04 Thread Thomas Markwalder
lifetimes. On 9/4/20 8:49 AM, Marcos Renato da Silva Junior wrote: Thanks Thomas, But I still a bit confused about default to min-valid-lifetime and max-valid-lifetime. Em 04/09/2020 09:03, Thomas Markwalder escreveu: Hello: You need only set calculate-tee-times to true. The percentage

Re: [Kea-users] Lease lifetime

2020-09-04 Thread Thomas Markwalder
Hello: You need only set calculate-tee-times to true. The percentage values, t1-percent and t2-percent, default to .5 and .875 respectively. On 9/3/20 7:47 PM, Marcos Renato da Silva Junior wrote: Hi, 1 - "Beginning with Kea 1.6.0 the lease valid lifetime is extended from a single

Re: [Kea-users] HA - Hot-Stanby Problem - Kea v1.6.1/2

2020-06-23 Thread Thomas Markwalder
The mostfrequent cause for this is non-compliant clients that do not set the SECS field on retries.  If clients are not setting this field > 0 on retries they will not be detected as unacked.  Take a look at the packet capture and/or try setting this to 0. See:

Re: [Kea-users] Preium hooks build

2020-03-30 Thread Thomas Markwalder
Hey Bill: It goes in the top level directory, i.e. one up from src. Cheers, Thomas On 3/30/20 3:45 PM, Bill Schoolfield wrote: I followed the instructions I think for building the premium hooks lib but configure says: Premium hooks: no I placed the premium dir into: /src/premium

Re: [Kea-users] lease4-add command not supported

2020-03-25 Thread Thomas Markwalder
The most likely culprit is that you did not add the Lease Cmds hook library to kea-dhcp4 server's configuration: :     "hooks-libraries": [   {     "library": "/libdhcp_lease_cmds.so",     "parameters": { }   }, : On 3/25/20 1:58 PM, Bill Schoolfield wrote: Why can't I get

Re: [Kea-users] Kea 1.1-epel conf no longer work with kea 1.6

2020-03-17 Thread Thomas Markwalder
Hello: If the MAC address is the same for both boot stages and that MAC address matches your host reservation, than you are always assigning the INODE class to the client, making the test expression that checks vendor id in class INODE relevant only for unknown clients. From your log snippet

Re: [Kea-users] 1.6.1 HA mode, getting ALLOC_ENGINE_V4_ALLOC_FAIL

2020-02-12 Thread Thomas Markwalder
9.199", "client-class": "HA_server2"<- should be "kea2" } ], "option-data": [ { "name": "routers", "data": &qu

Re: [Kea-users] Kea 1.6 Configuration Backend

2019-09-05 Thread Thomas Markwalder
://www.isc.org/kea/ Cheers, Thomas Markwalder On 9/5/19 4:41 AM, Cristian Lemnaru wrote: Yes, a tutorial about this would be greatly appreciated. CB sound delicious, but without data on how to populate the tables, ( and which tables ) , it's like  a beautiful car and no keys to it . Cris

Re: [Kea-users] Kea Integrating with mysql

2019-08-01 Thread Thomas Markwalder
Hello: We have addressed this problem under this issue: https://gitlab.isc.org/isc-projects/kea/issues/354.  This will be included in our Kea 1.6.0 release, due out later this month. Kea-1.6.0-Beta2 is available now.  MySQL removed the "my_bool" in recent versions. Cheer

Re: [Kea-users] failed to allocate an IPv6 address after 65515 attempt(s)

2019-07-24 Thread Thomas Markwalder
Hello You have specified the pool as an address range beginning at fd00:1:dead:beef::15 and ending at fd00:1:dead:beef::.  Which only includes 65520 addresses to begin with. You use any of the following alternatives: 1. increase the pool end address 2. specify it as address/length: 

Re: [Kea-users] DHCP4_CONFIG_LOAD_FAIL - "getNextRow failed" with MySQL

2019-07-09 Thread Thomas Markwalder
The stats tables are updated by triggers on the lease tables. If replication mechanisms are not statement-based, i.e. cause trigger execution, these values can certainly be wrong. On 7/9/19 9:10 AM, Fernando Ruza Rodriguez wrote: The same it happened to me today. Delete records with leases < 0

Re: [Kea-users] Infinite lease not stored in postgresql DB

2019-06-06 Thread Thomas Markwalder
You need only use a very large value to get a lease that it is virtually infinite. So long as the value is no more than max for 32-bit signed integer you should be fine. On 6/6/19 2:49 PM, Thomas Markwalder wrote: Please see section 4.3.6 of Kea Admin Guide: https://jenkins.isc.org/job

Re: [Kea-users] Infinite lease not stored in postgresql DB

2019-06-06 Thread Thomas Markwalder
Please see section 4.3.6 of Kea Admin Guide: https://jenkins.isc.org/job/Kea_doc/guide/kea-guide.html#idm139894053942032 On 6/6/19 12:56 PM, Sten Carlsen wrote: This was just a quick check for obvious things, I have nor used database backends. I am trying to learn because I see obvious

Re: [Kea-users] Use perfdhcp to test IoT DHCP server?

2019-05-07 Thread Thomas Markwalder
Try dropping the "-L 6767". Cheers, Thomas ___ Kea-users mailing list Kea-users@lists.isc.org https://lists.isc.org/mailman/listinfo/kea-users

Re: [Kea-users] Use perfdhcp to test IoT DHCP server?

2019-05-03 Thread Thomas Markwalder
Hello: Perfdhcp is server agnostic.  It communicates using standard DHCP and DHCPv6 messages and should work with an RFC compliant server. Cheers, Thomas Markwalder ISC Software Engineering On 5/3/19 3:05 AM, Rick Graham wrote: I would like to test the DHCP server of an IoT device on my

Re: [Kea-users] How to insert IPv4 address with host reservation (mysql)

2019-02-07 Thread Thomas Markwalder
t;.  Can't guarantee that will always work but it does currently: https://oldkea.isc.org/wiki/HostReservationsHowTo <https://kea.isc.org/wiki/HostReservationsHowTo> Cheers, Thomas Markwalder ISC Software Engineering On 2/7/19 2:54 PM, Jason Guy wrote: The best link used to be here

Re: [Kea-users] DDNS subnet

2019-02-06 Thread Thomas Markwalder
the higher priority it becomes. https://gitlab.isc.org/users/sign_in You'll need to register (if you haven't already) and then select the Kea project. Sincerely, Thomas Markwalder ISC Software Engineering > Hi, > >   > > I’m trying to get DHCP-DDNS to work, but it triggers for all my s

Re: [Kea-users] ddns fails with powerDNS (Failed PreRequisites check)

2019-02-06 Thread Thomas Markwalder
, in which case I would encourage you to open a issue in gitlab:     https://gitlab.isc.org You'll need to register (if you haven't already) and then select the Kea project. We would need PCAPs of the DDNS messages plus whatever logs from PowerDNS to start with. Regards, Thomas Markwalder ISC

Re: [Kea-users] KEA dhcp and BIND with ddns

2018-12-04 Thread Thomas Markwalder
with it: https://jenkins.isc.org/job/Kea_doc/guide/kea-guide.html#dhcp4-ddns-config https://jenkins.isc.org/job/Kea_doc/guide/kea-guide.html#dhcp6-ddns-config Regards, Thomas Markwalder ISC Software Engineering On 12/4/18 5:31 AM, Thomas Andersen wrote: Hi, We are already live with kea DHCP and have

Re: [Kea-users] Updated plan for Kea 1.5 | EOL for Kea 1.3 in December 2018

2018-11-04 Thread Thomas Markwalder
://gitlab.isc.org/isc-projects/kea/wikis/home This will also help you stay abreast of progress on it. Cheers, Thomas Markwalder PS (We are open source effort and encourage anyone who wants to contribute to create a gitlab account and join in!) On 11/3/18 2:57 PM, mike+...@willitsonline.com

Re: [Kea-users] Initial Configure with mysql

2018-08-03 Thread Thomas Markwalder
4.0, since you're just getting started.  Might as well be current. Regards, Thomas Markwalder ISC Software Engineering On 08/03/2018 10:13 AM, Batuhan BAKIP wrote: Hi, When I build from source code Kea 1.3.0, result of mysql is coming “no”. I wrote  “./configure --prefix=/opt/kea --

Re: [Kea-users] DHCP4 not starting or writing log file

2018-07-25 Thread Thomas Markwalder
Hello Lawrence: Sounds like there is something wrong with the package. In addition to reaching out the packager, you may consider downloading the source from us, directly, and building it yourself: https://www.isc.org/downloads Regards, Thomas Markwalder ISC Software Engineering On 07

Re: [Kea-users] Radius - ip reservation

2018-07-24 Thread Thomas Markwalder
t;: [ "flex-id" ], Because he is using flex-ids to do Radius look ups, he needed to tell Kea to also use them for host look ups. Cheers, Thomas Markwalder ISC Software Engineering On 07/13/2018 09:56 AM, Itay Rozenberg wrote: Hi all Did some one managed to get it working ? I keep gett

Re: [Kea-users] Question on kea-ddns

2018-07-24 Thread Thomas Markwalder
it to construct a FQDN option and send that in the request.  If your client is not providing either option, the server does not do DNS. Regards, Thomas Markwalder ISC Sofware Engineering On 07/23/2018 10:19 PM, J wrote: Perhaps newbie question…? Using Kea 1.3 with ddns hooks and feeding powerDNS, both

Re: [Kea-users] Installing Kea1.4.0 with Percona Galera MySQL backend

2018-07-09 Thread Thomas Markwalder
Hi: Try --with-mysql=/usr/bin/mysql_config mysql_config and mysql_config_editor are not the same thing.  The former is a shell script, which is what configure needs. Regards, Thomas Markwalder ISC Software Engineering On 07/09/2018 08:56 AM, McBride Lawrence wrote: Hi, I’m

Re: [Kea-users] lease6-del command

2018-06-18 Thread Thomas Markwalder
be loaded by the kea-ctrl-agent. Also be sure to include the "service" parameter with your commands so the control agent knows which service should process the command, see Chapter 16, https://jenkins.isc.org/job/Kea_doc/guide/kea-guide.html#ctrl-channel Cheers, Thomas Markwalder IS

Re: [Kea-users] Releasing or deleting a lease

2018-06-01 Thread Thomas Markwalder
e.html#dhcp4-ctrl-channel similar link of v6), and then either use Control Channel directly (https://kea.isc.org/docs/kea-guide.html#ctrl-channel-client)  or configure and run the Kea Control Agent (https://kea.isc.org/docs/kea-guide.html#kea-ctrl-agent) and use the REST interface. Regards,

Re: [Kea-users] Fwd: Re: Kea-1.4.0-beta CentOS rpm

2018-05-22 Thread Thomas Markwalder
building the package from the srpm/kea.spec directly instead. Best regards, Rasmus Bill Pye skrev den 2018-05-21 21:47: Hi Thomas I didn't build this, I'm using the rpm from the repo provided by Rasmus Edgar hence my initial post to him Regards Bill ----- Original Message - From: &quo

Re: [Kea-users] DUID host reservations

2018-04-02 Thread Thomas Markwalder
Apr 2, 2018 at 11:39 AM, Thomas Markwalder <tm...@isc.org <mailto:tm...@isc.org>> wrote: Hello: The DUID comes from the Client Identifier option, option #1: https://tools.ietf.org/html/rfc3315#section-22.2 <https://tools.ietf.org/html/rfc3315#section-22.2>

Re: [Kea-users] Doubled and tripled domain

2018-03-19 Thread Thomas Markwalder
Hello Sebastian: Kea is taking the hostname it received in the DISCOVER and appending the qualifying suffix to it to use as the hostname sent back in the OFFER.  The client is then combining that hostname with the domain-name option from the offer and using that to form the FQDN option it

Re: [Kea-users] 1.3.0 beta not working with mysql

2017-10-10 Thread Thomas Markwalder
your work.  Having an active, cooperative user community is vital towards making Kea a success and we appreciate your contributions. Regards, Thomas Markwalder ISC Software Engineering On 10/10/17 6:32 AM, Bill Pye wrote: > Hi Rasmus & Thomas > > I think we can put this problem down t

Re: [Kea-users] 1.3.0 beta not working with mysql

2017-10-09 Thread Thomas Markwalder
, Thomas Markwalder ISC Software Engineering On 10/6/17 1:33 PM, Thomas Markwalder wrote: > It's stored as an unsigned integer, so in theory it's max is > |4294967295.  Certainly much larger than 604800.  For grins, I used that > value on a machine running MySQL and it inserts leases

Re: [Kea-users] 1.3.0 beta not working with mysql

2017-10-06 Thread Thomas Markwalder
bit? I currently have logging at "INFO" and a debug level of > zero, which is the best for reasonably detailed info but doesn't flood the > server? > > > Regards > > > Bill > > - Original Message - >> From: "Thomas Markwalder" <

Re: [Kea-users] 1.3.0 beta not working with mysql

2017-10-06 Thread Thomas Markwalder
1.0.2k-fips 26 Jan 2017 > database: > MySQL backend 5.1, library 10.2.9 > PostgreSQL backend 3.1, library 90223 > Memfile backend 2.0 > > If there is anything else you want me to try then just shout. > > > Regards > > Bill > > - Original Message - >

Re: [Kea-users] 1.3.0 beta not working with mysql

2017-10-06 Thread Thomas Markwalder
Hi Bill: I've attached a test patch if you're willing.   Per MariaDB the max value for --wait-timeout is 2147483, and we are exceeding that.  I'm wondering if our attempt to set it is failing silently.   The patch I sent you attempts to set it to a number well under their max but much larger than

Re: [Kea-users] 1.3.0 beta not working with mysql

2017-10-05 Thread Thomas Markwalder
? 3. I'm assuming this happens every time a client request comes in? Thanks, Thomas Markwalder ISC Software Engineering On 10/5/17 2:00 PM, Bill Pye wrote: > Hi > > Am I missing something that obvious and basic, do I need to create > something in the lease table? > >

Re: [Kea-users] DB Stored procedure name changed?

2017-10-05 Thread Thomas Markwalder
Hi Bill: You omitted the command line argument of -4  or -6.  Of course, kea-admin should be catching that.  Could you open a bug ticket for this please? http://kea.isc.org/newticket You'll need to register, if you haven't already. Thanks, Thomas Markwalder ISC Software Engineering   On 10/5

Re: [Kea-users] Issue with DDNS updates

2017-09-27 Thread Thomas Markwalder
(host-192-168-0-1.example.com) and replace It with > 192.168.0.3/ host-192-168-0-1.example.com creating obvious problems for > whoever is relying in the DNS hostname. > > I would expect/prefer the MAC address to be used to generate the hostname, is > there any way to do this? &g

Re: [Kea-users] Issue with DDNS updates

2017-09-27 Thread Thomas Markwalder
Hello David: We're looking into this for you.  Could you supply logging that shows the original request as well? Regards, Thomas Markwalder ISC Software Engineering On 9/27/17 3:55 AM, David, Marcos wrote: > Hi all, > > I’ve setup KEA (1.1.0, also tested 1.2.0) with DDNS but I’m exp

Re: [Kea-users] Updating kea.conf - does it need a daemon restart

2017-09-14 Thread Thomas Markwalder
On 9/14/17 11:35 AM, Neil Briscoe wrote: > Thanks for the speedy reply Thomas. > > Is “kill –SIGHUP ” the same as “service kea-dhcp4-server > restart” or is this slightly different? > > Thanks, > > Neil Briscoe | e. neil.bris...@6point6.co.uk | t. +44 7793 056923 > | w.

Re: [Kea-users] Updating kea.conf - does it need a daemon restart

2017-09-14 Thread Thomas Markwalder
On 9/14/17 11:36 AM, Jason Lixfeld wrote: > >> On Sep 14, 2017, at 10:39 AM, Thomas Markwalder <tm...@isc.org >> <mailto:tm...@isc.org>> wrote: >> >> On 9/14/17 10:10 AM, Neil Briscoe wrote: >>> >>> One of the main reasons I have gone down

Re: [Kea-users] Updating kea.conf - does it need a daemon restart

2017-09-14 Thread Thomas Markwalder
the config-reload command via control channel (See Kea Admin guide: Chapter 16, Management API http://kea.isc.org/docs/kea-guide.html#ctrl-channel) Regards, Thomas Markwalder ISC Software Engineering > > Thanks, > >   > > *Neil Briscoe* > > > > __

Re: [Kea-users] kea 1.2 - "One or more hook libraries failed to load"

2017-09-06 Thread Thomas Markwalder
e configuration (i.e use them). Cheers, Thomas Markwalder ISC Software Engineering > Regards > > Francis Dupont <fdup...@isc.org> > > BTW the manual page says that "hook libraries are not loaded" so > don't expect to have a not loaded ho

Re: [Kea-users] segfault with libmysqlclient / libmariadbclient

2017-08-25 Thread Thomas Markwalder
ts.  We could also provide a patch for you test with if this work around isn't suitable.  Regards, Thomas Markwalder ISC Software Engineering On 4/11/17 4:06 PM, Fohr Jean noel wrote: > > Hi all > > > I'm facing unexplained kea-dhcp4 crashes due to segfaults: > > > On Cen

Re: [Kea-users] free text parameter under each subnet

2017-08-18 Thread Thomas Markwalder
Hello Itay: "user-context" is per pool not per subnet. Our admin guide example is incorrect. Try this: "pools": [ { "pool": "10.0.0.10 - 10.0.0.99", *"user-context": { "color": "red" }* } ] , * * Meanwhile, I'll create a

Re: [Kea-users] free text parameter under each subnet

2017-08-18 Thread Thomas Markwalder
omment cannot be > added in such a fashion that the configuration file is valid JSON from > start to finish. The desire is to be able to add a property in any > configuration object that is there for the configuration writer to > read, not for the parser to care about. > > > >

Re: [Kea-users] kea dhcp4 libmysqlclient segfault

2017-08-18 Thread Thomas Markwalder
exit with an error. We have connectivity recovery slated for an upcoming release. Regards, Thomas Markwalder ISC Software Engineering ___ Kea-users mailing list Kea-users@lists.isc.org https://lists.isc.org/mailman/listinfo/kea-users

Re: [Kea-users] Kea 1.2 - dhcp4 - libmysqlclient segfault with sname and fname options

2017-08-18 Thread Thomas Markwalder
e logging "flush" set to false? The attached Kea log shows the last thing it logged was outputting an ACK but your stacktrace shows the segfault to be down in host reservation look up. We have another user who reports a segfault but correlates it to the MySQL server being stopped mo

Re: [Kea-users] Building 1.2 on Ubuntu and ./configure --enable-generate-parser

2017-06-23 Thread Thomas Markwalder
us: Yes, you should be able to omit that option. That option is only needed if you plan on altering the configuration parsing code. We pre-generate all the parsing code and include that in the repo as well as the source tar balls. It is odd that those files are missing. Would be so kind as to open a b

Re: [Kea-users] dynamic dns hostname conflict

2017-05-18 Thread Thomas Markwalder
0%20GMT+2> is to have > separate dns zone for v4 and v6 lease. > > Regards, > > Pr > > On 18 May 2017 at 18:14:28 , Thomas Markwalder (tm...@isc.org > <mailto:tm...@isc.org>) wrote: > >> On 5/1/17 6:19 AM, Thomas Markwalder wrote: >>> Hello Pawel: >>

Re: [Kea-users] dynamic dns hostname conflict

2017-05-18 Thread Thomas Markwalder
On 5/1/17 6:19 AM, Thomas Markwalder wrote: > Hello Pawel: > > > Kea's DDNS process, kea-dhcp-ddns, implements conflict > detection/resolution as described in RFC 4703 > (http://www.rfc-archive.org/getrfc.php?rfc=4703). This behavior > restricts DDNS updates for a

Re: [Kea-users] Wrong values in Kea statistics

2017-05-03 Thread Thomas Markwalder
gt; Regards, > > Nicolas. > > > > *De :*Kea-users [mailto:kea-users-boun...@lists.isc.org] *De la part > de* Chaigneau, Nicolas > *Envoyé :* mercredi 19 avril 2017 15:33 > *À :* Thomas Markwalder; kea-users@lists.isc.org > *Objet :* Re: [Kea-users] Wrong values

Re: [Kea-users] Migration from Windows DHCP to kea

2017-05-02 Thread Thomas Markwalder
n when you use one of the RDBMs backends for lease storage, so you should be able to simply insert them. The only negative effect this would have on a running Kea is that lease statistics would be inaccurate until Kea is told to reconfigure or recalculate statistics (see command channel commands) o

Re: [Kea-users] Wrong values in Kea statistics

2017-04-19 Thread Thomas Markwalder
I assume this issue also affects Kea 1.1.0 ? > > > > If so, would it be possible to have a corrective patch for 1.1.0 ? > > > > > > > > Regards, > > Nicolas. > > > > *De :*Kea-users [mailto:kea-users-boun...@lists.isc.org] *De la part

Re: [Kea-users] Wrong values in Kea statistics

2017-04-19 Thread Thomas Markwalder
> Thanks and regards, > > > > Malcolm. > > > > *From:*Kea-users [mailto:kea-users-boun...@lists.isc.org] *On Behalf > Of *Thomas Markwalder > *Sent:* 19 April 2017 14:08 > *To:* kea-users@lists.isc.org > *Subject:* Re: [Kea-users] Wrong values in Kea st

Re: [Kea-users] Combining config files

2017-02-06 Thread Thomas Markwalder
On 2/6/17 3:38 PM, James Sumners wrote: > > Not from what I see in the source code. But if you use something like > Ansible then you can template the config and do such things. > > > > > From: Sean McMurray > Date: February 6, 2017 at 2:58:08 PM > To:

Re: [Kea-users] Kea leases import/insert

2017-01-18 Thread Thomas Markwalder
ast some risk of colliding with a lease that Kea is attempting to hand out at the same time you insert it. Thomas Markwalder ISC Software Engineering ___ Kea-users mailing list Kea-users@lists.isc.org https://lists.isc.org/mailman/listinfo/kea-users

Re: [Kea-users] generated-prefix, qualifying-suffix per subnet?

2017-01-18 Thread Thomas Markwalder
sers are looking for is important to us, so I would encourage you to open a feature request ticket via our http://kea.isc.org/wiki. If you haven't already, you'll need to register to create a new ticket. Sincerely, Thomas Markwalder ISC Software Engineering ___

Re: [Kea-users] Config syntax test option?

2016-12-08 Thread Thomas Markwalder
> configs, too. > > cheers, > Klaus > > > ___ > Kea-users mailing list > Kea-users@lists.isc.org > https://lists.isc.org/mailman/listinfo/kea-users Yes, we plan to add this in 1.2 due out Spring '17. Regards, Thomas Markwalder ISC Software

Re: [Kea-users] Need help assigning subnets by class with host reservations

2016-11-15 Thread Thomas Markwalder
On 11/15/16 7:27 AM, Thomas Markwalder wrote: > On 11/15/16 6:49 AM, Thomas Markwalder wrote: >> On 11/14/16 5:05 PM, MRob wrote: >>>>>> 3. Is using "lease.decline(0)" the best (only) way, at least in this >>>>>> hook point, to turn away unk

Re: [Kea-users] Need help assigning subnets by class with host reservations

2016-11-14 Thread Thomas Markwalder
On 11/12/16 1:22 PM, mro...@insiberia.net wrote: > On 2016-11-11 04:23, Thomas Markwalder wrote: >> On 11/10/16 11:50 PM, mro...@insiberia.net wrote: >> >>> On 2016-11-10 06:12, Thomas Markwalder wrote: >>> On 11/9/16 2:28 PM, mro...@insiberia.net wrote: &g

Re: [Kea-users] Log rotation - SIGHUP?

2016-11-14 Thread Thomas Markwalder
} ], "severity": "DEBUG", "debuglevel":99 } ] } Then as root, you could do something like this: # cp /tmp/kea.log /tmp.kea.log.1 # cat /dev/null > /tmp/kea.log This works fine for me under Centos. Hope that helps. Thomas Markwa

Re: [Kea-users] Need help assigning subnets by class with host reservations

2016-11-11 Thread Thomas Markwalder
On 11/10/16 11:50 PM, mro...@insiberia.net wrote: > On 2016-11-10 06:12, Thomas Markwalder wrote: >> On 11/9/16 2:28 PM, mro...@insiberia.net wrote: >> >>> On 2016-11-09 07:56, Thomas Markwalder wrote: >>> On 11/9/16 4:20 AM, mro...@insiberia.net wr

Re: [Kea-users] Need help assigning subnets by class with host reservations

2016-11-09 Thread Thomas Markwalder
the last one show above. This search is done by subnet id and dhcp identifier. However the function that performs this search happens to be missing a log entry. This is why you see the two selects you cited in the MySQL log but only one log message against the

Re: [Kea-users] DDNS not triggered with DHCP6

2016-11-07 Thread Thomas Markwalder
On 11/7/16 6:59 AM, Thomas Markwalder wrote: > On 11/6/16 4:57 PM, Leander Janssen wrote: >> >> I've configured both DHCPv6 and DDNS. DHCPv6 leases are working properly, >> but DDNS is not triggered. >> >> I'm wondering if this is configuration related

Re: [Kea-users] DDNS not triggered with DHCP6

2016-11-07 Thread Thomas Markwalder
i.e. unqualified) name then add a configurable suffix to the name and use the result as the FQDN. 3. If the candidate name provided is empty, generate an FQDN using a configurable prefix and suffix. 4. If the client provided neither option, then no DNS action will be taken. These rules can amended by setting the *replace-client-name* parameter which provides the following modes of behavior: * *never* - Use the name the client sent. If the client sent no name, do not generate one. This is the default mode. * *always* - Replace the name the client sent. If the client sent no name, generate one for the client. * *when-present* - Replace the name the client sent. If the client sent no name, do not generate one. * *when-not-present* - Use the name the client sent. If the client sent no name, generate one for the client. You would need to set it to either "always" or "when-not-present". I would start there. If you still have issues let us know. Thanks Thomas Markwalder ISC Software Engineering ___ Kea-users mailing list Kea-users@lists.isc.org https://lists.isc.org/mailman/listinfo/kea-users

Re: [Kea-users] [kea-dev] Reverse DNS update

2016-06-10 Thread Thomas Markwalder
On 6/2/16 11:11 AM, Thomas Markwalder wrote: > : >> Hi Tomas, >> >> I cleared the logs and renewed the address on my test machine to hopefully >> capture only the related events. Please find the logs attached. Apologies >> for the format of this message, th

Re: [Kea-users] Hook subnet4_select callout modifying subnet ID

2016-05-12 Thread Thomas Markwalder
subnet you want and if there's no match it leaves the selected subnet as is. Really it is just intended to show you how one might alter the selected subnet. Hope this helps. Thomas Markwalder, ISC Software Engineering ___ Kea-users mailing list Kea-users@lists.isc.org https://lists.isc.org/mailman/listinfo/kea-users

Re: [Kea-users] DHCP_DDNS_NO_MATCH No DNS servers match FQDN

2016-02-25 Thread Thomas Markwalder
On 2/25/16 11:54 AM, Tobias - wrote: > "name": "0.168.192.in-addr-arpa.", Hello Tobias: I believe you have too many hyphens. Try this: "name": "0.168.192.in-addr.arpa.", Thanks for using KEA! Sincerely,

Re: [Kea-users] DDNS TSIG verification failed: BADSIG

2016-02-05 Thread Thomas Markwalder
Anyone have some thoughts? > > > Thanks, > > Randy > > > > ___ > Kea-users mailing list > Kea-users@lists.isc.org > https://lists.isc.org/mailman/listinfo/kea-users Hello Randy: Thanks for reporting this and for providing