Jiri Popelka
a40b8cb6b1
implement DUID-UUID (RFC 6355) and make it default DUID type (#560361#60)
2015-12-14 13:19:48 +01:00
Jiri Popelka
4b570e22a7
dispatcher.d/12-dhcpd: use reset-failed command
...
Suggested by Lukas Nykryn.
2015-11-24 13:48:51 +01:00
Jiri Popelka
d6db3a5145
dhclient-script: hostname -> hostnamectl --transient
...
For selinux-policy see
https://bugzilla.redhat.com/show_bug.cgi?id=1242583
2015-11-23 13:07:31 +01:00
Jiri Popelka
3a458259f5
dhclient-script: source ifcfg-* because of PEERDNS ( #1277253 )
2015-11-03 14:47:34 +01:00
Jiri Popelka
262d627cf9
dhclient-script: fix for gateway not in the end of rfc3442 routes list ( #1251644 )
2015-10-13 15:28:16 +02:00
Jiri Popelka
609ced7095
dhclient-script: make_resolv_conf(): keep old nameservers
...
if server sends domain-name/search, but no nameservers (#1269595 )
2015-10-13 14:44:14 +02:00
Jiri Popelka
59c88cb2ff
dhclient: make sure link-local address is ready in stateless mode ( #1263466 )
2015-09-22 17:21:11 +02:00
Jiri Popelka
9262a0840d
VLAN ID is only bottom 12-bits of TCI ( #1259552 )
2015-09-07 16:17:54 +02:00
Jiri Popelka
48bc1f5d15
4.3.3
2015-09-04 10:54:41 +02:00
Jiri Popelka
fddc6e1329
dhclient-script: respect DEFROUTE/GATEWAYDEV if Classless Static Routes are offered ( #1251644 )
2015-08-11 16:14:59 +02:00
Jiri Popelka
d0384ed1b0
LDAP krb5/gssapi authentication & binary insertion of leases
2015-08-10 12:33:31 +02:00
Jiri Popelka
7406750da5
4.3.3b1
2015-08-10 12:09:24 +02:00
Jiri Popelka
0d29ddb0dd
fix ipcalc requires
2015-07-15 12:41:57 +02:00
Jiri Popelka
4f66445eba
make path to resolv.conf configurable ( #1086425 )
...
also modernize the new need_hostname() & change_resolv_conf()
2015-07-14 19:02:03 +02:00
Jiri Popelka
27892ea741
remove dependency on initscripts ( #1098172 )
2015-07-14 19:01:59 +02:00
Jiri Popelka
b7e832e280
spec cleanup
2015-07-14 13:33:42 +02:00
Jiri Popelka
8df2f33e21
test upstream fix for #866714 (paranoia.patch)
2015-07-02 11:32:30 +02:00
Jiri Popelka
5fe3b160c0
fix comment in default dhcpd[6].conf
2015-06-30 17:49:22 +02:00
Jiri Popelka
83597a34c7
add more randomness into xid generation ( #1195693 )
2015-06-24 18:58:35 +02:00
Dennis Gilmore
826b979514
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
2015-06-17 04:01:14 +00:00
Jiri Popelka
278a2ea405
dhclient-script: run also scripts in dhclient-[enter/exit]-hooks.d dir
...
Debian does it similar way.
Not yet documented in dhclient-script man page.
Initial patch by Neal Gompa.
2015-05-26 18:05:19 +02:00
Jiri Popelka
4cd2995553
ipcalc moved from initscripts to separate package
2015-05-21 19:43:35 +02:00
Jiri Popelka
d12e0eb05e
dhclient-script: add a minute to address lifetimes ( #1188423 )
...
http://lists.openstack.org/pipermail/openstack-operators/2015-January/006065.html
2015-04-21 10:26:09 +02:00
Jiri Popelka
8568b714e7
dhclient-script: amend previous change ( #1210984 )
2015-04-13 18:18:18 +02:00
Jiri Popelka
c191e7ecf1
dhclient-script: fix shellcheck.net suggestions
...
https://github.com/koalaman/shellcheck/wiki/SC2068
https://github.com/koalaman/shellcheck/wiki/SC2086
https://github.com/koalaman/shellcheck/wiki/SC2046
2015-03-25 14:23:02 +01:00
Tomas Hozza
cccec22272
rebuild against bind99 9.9.7 package
...
Signed-off-by: Tomas Hozza <thozza@redhat.com>
2015-03-13 11:39:06 +01:00
Jiri Popelka
5ca2db2826
4.3.2
2015-03-05 19:36:52 +01:00
Jiri Popelka
d4e0705ffa
correctly set IB's hw->hlen ( #1185075 )
2015-02-26 10:16:23 +01:00
Tomas Hozza
ef48bdefd1
Rebuild against bind-9.10.2rc2
...
Signed-off-by: Tomas Hozza <thozza@redhat.com>
2015-02-25 18:23:43 +01:00
Jiri Popelka
986801e117
dhclient-script: use 'ip addr replace' for both BOUND & RENEW
...
amends e79843f28
2015-02-17 16:22:24 +01:00
Jiri Popelka
cbf79dcf16
doc/dhclient/dhclient-enter-hooks for dhclient-script debugging
2015-02-17 15:44:32 +01:00
Jiri Popelka
e79843f283
dhclient-script: s/addr add/addr replace/
...
It might happen that the address is already there,
in which case we want to update life-times.
BZ#1187856#c15
ip addr add = NLM_F_CREATE|NLM_F_EXCL
ip addr replace = NLM_F_CREATE|NLM_F_REPLACE
ip addr change = NLM_F_REPLACE
from linux/netlink.h
NLM_F_REPLACE 0x100 /* Override existing */
NLM_F_EXCL 0x200 /* Do not touch, if it exists */
NLM_F_CREATE 0x400 /* Create, if it does not exist */
2015-02-13 19:49:39 +01:00
Jiri Popelka
9568cf3620
4.3.2b1
2015-02-08 18:31:39 +01:00
Jiri Popelka
b72dfb9de9
spec: upstream bug
2015-02-03 17:24:21 +01:00
Jiri Popelka
8e6888336c
send unicast request/release via correct interface ( #800561 , #1177351 )
2015-02-03 12:10:31 +01:00
Tomas Hozza
938f7b9f6c
rebuild against bind-9.10.2rc1
...
Signed-off-by: Tomas Hozza <thozza@redhat.com>
2015-02-02 13:53:20 +01:00
Tomas Hozza
c7dbb5f487
rebuild against bind 9.10.1-P1
...
Signed-off-by: Tomas Hozza <thozza@redhat.com>
2015-01-14 13:29:41 +01:00
Jiri Popelka
7df69ff85b
dhclient: write DUID_LLT even in stateless mode ( #1156356 )
2014-12-18 13:46:37 +01:00
Jiri Popelka
5d40954fa5
option 97 - pxe-client-id ( #1058674 )
2014-12-17 10:57:39 +01:00
Jiri Popelka
d9a087ceae
amend post scriptlets for #1120656
2014-11-19 13:09:34 +01:00
Jiri Popelka
81262d499a
dhclient-script: remove restorecon calls ( #1161500 )
2014-11-10 10:47:16 +01:00
Jiri Popelka
619d70848b
GSSAPI support for ldap authentication ( #1150542 )
2014-11-04 16:53:00 +01:00
Jiri Popelka
fac5ecb164
redefine DHCLIENT_DEFAULT_PREFIX_LEN 64 -> 128
2014-10-31 11:52:33 +01:00
Jiri Popelka
8d4540569e
Merge branch 'f21'
2014-10-10 13:18:54 +02:00
Jiri Popelka
5bf5d8904c
Relay-forward Message's Hop Limit should be 32 ( #1147240 )
2014-10-10 13:16:14 +02:00
Jiri Popelka
ffddd72865
Merge branch 'f21'
2014-10-08 19:40:05 +02:00
Jiri Popelka
91172b8573
upstream patch to build against bind-9.9.6
2014-10-08 19:38:10 +02:00
Jiri Popelka
891293f996
dhcpd generates spurious responses when seeing requests from vlans on plain interface ( #1150587 )
2014-10-08 19:37:45 +02:00
Tomas Hozza
8739746584
rebuild against bind-9.9.6
...
Signed-off-by: Tomas Hozza <thozza@redhat.com>
2014-10-03 14:38:05 +02:00
Tomas Hozza
4305b4f8e1
rebuild against bind-9.9.6
...
Signed-off-by: Tomas Hozza <thozza@redhat.com>
2014-10-03 12:15:55 +02:00
Jiri Popelka
a2d4f5a9e6
Merge branch 'f21'
2014-09-04 16:29:05 +02:00
Jiri Popelka
3dc8f27fe3
[dhclient -6] infinite preferred/valid lifetime represented as -1 ( #1133839 )
2014-09-04 16:25:06 +02:00
Jiri Popelka
ceab28385b
better obsoletes for server & client
2014-09-01 12:27:21 +02:00
Kalev Lember
dd63340ae7
Fix dhclient obsoletes version
...
Make sure the obsoletes cover the version in that's in F21,
dhclient-4.3.1-6.fc21.x86_64.
2014-08-30 14:34:07 +02:00
Jiri Popelka
e70cc70732
Merge branch 'f21'
2014-08-26 12:08:58 +02:00
Jiri Popelka
4992026c16
dhclient-script: another improvement of add_ipv6_addr_with_DAD()
2014-08-26 12:08:50 +02:00
Jiri Popelka
0bccfbcbc5
Merge branch 'f21'
2014-08-26 10:13:34 +02:00
Jiri Popelka
a6e84ccd33
- dhclient-script: IPv6 address which fails DAD is auto-removed ( #1133465 )
2014-08-25 19:19:21 +02:00
Jiri Popelka
fe41e18619
spec: use -D with 'install'
2014-08-25 19:19:14 +02:00
Jiri Popelka
5bd17cb2c1
- dhclient-script: IPv6 address which fails DAD is auto-removed ( #1133465 )
2014-08-25 19:18:38 +02:00
Jiri Popelka
cc143483e5
spec: use -D with 'install'
2014-08-25 19:18:16 +02:00
Peter Robinson
df80176a2d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
2014-08-16 02:42:50 +00:00
Peter Robinson
d5ce4f49d9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
2014-08-16 02:42:38 +00:00
Jiri Popelka
69ed5a2afd
dhclient-script: one more fix for #1129500
2014-08-14 14:53:32 +02:00
Jiri Popelka
b81510d1c4
dhclient-script: one more fix for #1129500
2014-08-14 14:53:19 +02:00
Jiri Popelka
991bd354d9
dhclient-script: PREINIT6: make sure link-local address is available ( #1129500 )
2014-08-14 11:38:42 +02:00
Jiri Popelka
fcd901feaf
dhclient-script: PREINIT6: make sure link-local address is available ( #1129500 )
2014-08-14 11:24:32 +02:00
Jiri Popelka
5505bb7689
4.3.1
2014-08-12 10:53:45 +02:00
Jiri Popelka
2fe1a326ed
4.3.1
2014-08-12 10:51:29 +02:00
Jiri Popelka
5938016904
dhclient-script: it's OK if the arping reply comes from our system ( #1116004 )
2014-08-05 16:29:22 +02:00
Jiri Popelka
3c1fe8380f
dhclient-script: it's OK if the arping reply comes from our system ( #1116004 )
2014-08-05 16:27:28 +02:00
Jiri Popelka
a0d47e7ac1
subpackage dhclient -> dhcp-client
...
https://lists.fedoraproject.org/pipermail/devel/2014-July/201366.html
2014-08-05 16:27:28 +02:00
Jiri Popelka
ce52a9163b
server subpackage
2014-08-05 16:27:28 +02:00
Jiri Popelka
7000c0427b
relay subpackage
2014-08-05 16:27:28 +02:00
Jiri Popelka
0b1fc62ff4
Use network-online.target instead of network.target ( #1120656 )
2014-07-22 19:00:42 +02:00
Tom Callaway
85d42be1f8
fix license handling
2014-07-11 17:44:01 -04:00
Jiri Popelka
0e875a2acc
squeeze patch numbers
2014-07-10 19:04:54 +02:00
Jiri Popelka
7b69e548fb
4.3.1b1
2014-07-10 19:01:31 +02:00
Filipe Brandenburger
6b7e125d8b
dhclient-script: fix static classless routes
...
This fixes an issue with handling of classless static routes that breaks
Fedora 20 on GCE cloud VMs (#1102830 ).
Signed-off-by: Filipe Brandenburger <filbranden@google.com>
Signed-off-by: Jiri Popelka <jpopelka@redhat.com>
2014-06-16 15:00:40 +02:00
Dennis Gilmore
2a209eb4ab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
2014-06-07 02:17:43 -05:00
Jiri Popelka
32fe95834a
systemtap: fixed dtrace input file ( #1102797 )
2014-05-30 10:49:38 +02:00
Jiri Popelka
325dbb025c
dhcp-sd_notify.patch BuildRequires: pkgconfig(libsystemd)
2014-05-29 16:28:10 +02:00
Jiri Popelka
4533a8a170
dhclient-script: fix stateless DHCPv6 mode ( #1101149 )
2014-05-28 17:47:08 +02:00
Jiri Popelka
6756a54bda
Use StandardError=null instead of log_perror.patch
...
[ISC-Bugs #28049 ] has been closed upstream without applying the patch.
2014-05-07 14:12:02 +02:00
Jiri Popelka
0ae0d118cb
support for sending startup notifications to systemd ( #1077666 )
2014-03-18 17:08:49 +01:00
Jiri Popelka
9b2a8d5429
rename doc subpackage do devel-doc
2014-03-07 15:53:53 +01:00
Jaromír Končický
2abfc8f9c0
fix doc package dependency
2014-03-04 11:28:44 +01:00
Jaromír Končický
e5e3005b48
added 'doc' package containing doxygen-generated documentation
2014-03-03 16:25:03 +01:00
Jiri Popelka
2ade8d85a3
dhclient: rename our -I option to -C as upstream now uses -I
2014-02-19 19:02:32 +01:00
Jiri Popelka
d80cfcbfe3
dhclient-script: don't flush all addresses, just the used one
2014-02-19 18:04:49 +01:00
Jiri Popelka
7caf8ab713
IPoIB: add GUID/DUID to dhcpd logs ( #1064416 )
2014-02-18 16:26:06 +01:00
Jiri Popelka
683072b705
don't try to run tests because there's no atf package since F21
2014-02-17 18:55:27 +01:00
Jiri Popelka
30308a134f
turn on using of DUID with DHCPv4 clients (#560361,c#40)
...
remove default /etc/dhcp/dhclient.conf
2014-02-17 17:48:26 +01:00
Jiri Popelka
3e1d3e1b16
4.3.0
2014-02-04 09:51:31 +01:00
Jiri Popelka
90936e4422
4.3.0rc1
2014-01-29 10:08:47 +01:00
Jiri Popelka
4037da5848
don't apply retransmission.patch for now (RHBZ#1026565)
2014-01-28 17:24:08 +01:00
Kevin Fenzi
0c6e25a2c1
Rebuild for new bind
2014-01-26 11:53:42 -07:00
Jiri Popelka
e7bd38e572
4.3.0b1
...
- ship dhcp-lease-list.pl
- dhclient-script: don't ping router (#1055181 )
2014-01-21 10:34:27 +01:00
Jiri Popelka
543c1a5814
update address lifetimes on RENEW/RENEW6 ( #1032809 )
2014-01-13 13:28:07 +01:00
Jiri Popelka
9ca3958959
make it actually build
2014-01-07 13:03:41 +01:00