Simon Zolin
33195b9155
- DHCP: when adding a new static lease: remove dynamic lease with the same MAC
2020-04-08 11:55:58 +03:00
Simon Zolin
105e2dd1ee
Merge: - dhcp: web handlers were not registered when DHCP server is disabled
...
Close #1552
* commit '43704901384fe35785383b27a1ad0bd7d430830c':
- dhcp: web handlers were not registered when DHCP server is disabled
2020-04-07 11:54:29 +03:00
Simon Zolin
4370490138
- dhcp: web handlers were not registered when DHCP server is disabled
...
So there was no way to enable DHCP from UI
2020-04-07 11:48:03 +03:00
Andrey Meshkov
7b8588afa4
*: fix golangci-lint warnings
2020-04-05 18:34:43 +03:00
Simon Zolin
e8129f15c7
* refactor
...
1. Auth module was initialized inside dns.go - now it's moved to initWeb()
2. stopHTTPServer() wasn't called on server stop - now we do that
3. Don't use postInstall() HTTP filter where it's not necessary.
Now we register handlers after installation is complete.
2020-03-17 15:23:29 +03:00
Simon Zolin
dcc575402b
Merge: * clients: update runtime clients of type DHCP by event from DHCP module
...
Close #1378
Squashed commit of the following:
commit e45e2d0e2768fe0677eee43538d381b3eaba39ca
Merge: bea8f79d 5e9c21b0
Author: Simon Zolin <s.zolin@adguard.com>
Date: Wed Jan 29 20:08:20 2020 +0300
Merge remote-tracking branch 'origin/master' into 1378-dhcp-clients
commit bea8f79dd6f8f3eae87649d853917b503df29616
Author: Simon Zolin <s.zolin@adguard.com>
Date: Wed Jan 29 20:08:06 2020 +0300
minor
commit 6f1da9c6ea9db5bf80acf234ffe322a4cd2d8d92
Author: Simon Zolin <s.zolin@adguard.com>
Date: Wed Jan 29 19:31:08 2020 +0300
fix
commit a88b46c1ded2b460ef7f0bfbcf1b80a066edf1c1
Author: Simon Zolin <s.zolin@adguard.com>
Date: Wed Jan 29 12:53:22 2020 +0300
minor
commit d2897fe0a9b726fcd97a04906e3be3d21f6b42d7
Author: Simon Zolin <s.zolin@adguard.com>
Date: Tue Jan 28 19:55:10 2020 +0300
* clients: update runtime clients of type DHCP by event from DHCP module
commit 3aa352ed2372141617d77363b2f2aeaf3a7e47a0
Author: Simon Zolin <s.zolin@adguard.com>
Date: Tue Jan 28 19:52:08 2020 +0300
* minor
commit f5c2291e39df4d13b9baf9aa773284890494bb0a
Author: Simon Zolin <s.zolin@adguard.com>
Date: Tue Jan 28 19:08:23 2020 +0300
* clients: remove old entries of source type /etc/hosts or ARP
2020-01-30 10:25:02 +03:00
Andrey Meshkov
6bf512f96f
-(home): fix searching clients by mac address
2019-12-23 16:59:02 +03:00
Simon Zolin
b9c0b55356
* dhcp: now static leases functionality works before DHCP is started
2019-12-17 15:59:05 +03:00
Simon Zolin
df92941ae0
+ POST /control/dhcp/reset: Reset DHCP configuration
2019-11-29 17:11:07 +03:00
Simon Zolin
477a4bbf54
* dhcp: move HTTP handlers to dhcpd/
2019-11-29 17:11:07 +03:00
Simon Zolin
149fcc0f2d
* dhcp,clients: DHCP server module is passed to Clients module during initialization.
2019-11-29 17:11:07 +03:00
Simon Zolin
71ce0c6da9
* clients: multiple IP, CIDR, MAC addresses
...
+ /clients/find
* clients: move code for config read/write
* clients: move HTTP handlers
2019-11-29 16:52:32 +03:00
Simon Zolin
fd3e153a04
- dhcp: don't replace a static lease with a dynamic one
2019-09-23 18:47:13 +03:00
Simon Zolin
c7b5b00d14
Merge: * dhcp: validate range_start/range_end values
...
Close #848
* commit '625b22a8d7bece655216b926f1b4ce35e14ccb07':
* dhcp: validate range_start/range_end values
2019-08-23 17:18:30 +03:00
Simon Zolin
7acbeb8956
* dhcp: when adding a static lease, it can replace a dynamic lease
2019-08-23 16:14:00 +03:00
Simon Zolin
625b22a8d7
* dhcp: validate range_start/range_end values
2019-08-23 14:44:23 +03:00
Simon Zolin
8e08cddf64
+ dhcp: use --workdir value for "leases.db" file path
2019-08-19 14:40:10 +03:00
Simon Zolin
79a5c920a4
* dhcpd: check if subnet mask is correct
2019-07-17 11:55:21 +03:00
Simon Zolin
0b3ba82242
- dhcp: store lease data in database on each change rather than once on app stop
2019-06-26 14:02:41 +03:00
Simon Zolin
eff23f3b62
- dhcp: fix race introduced by static lease add/remove from UI thread
2019-06-26 14:01:59 +03:00
Simon Zolin
fa47fa3f9c
* dhcpd: refactor: use separate objects for ServerConfig and RWMutex
2019-05-28 19:01:24 +03:00
Simon Zolin
763b986955
+ dhcp: /dhcp/status: return static leases
2019-05-28 18:59:15 +03:00
Simon Zolin
342699d933
* dhcpd: minor improvements
2019-05-28 18:59:15 +03:00
Simon Zolin
725aeeb910
+ dhcp: /dhcp/add_static_lease, /dhcp/remove_static_lease: control static lease table
2019-05-28 18:59:15 +03:00
Simon Zolin
cc366495d3
+ dhcpd: CheckConfig()
2019-05-28 18:59:15 +03:00
Simon Zolin
0d405c0af8
* dhcpd: move code from Start() to Init()
2019-05-28 18:59:15 +03:00
Simon Zolin
4bb7b654ab
+ dhcp: FindIPbyMAC()
2019-05-28 18:44:27 +03:00
Andrey Meshkov
7ebfaccc6e
Merge with master
2019-03-22 10:36:48 +03:00
Simon Zolin
ef789acee4
* control: DHCP: don't return expired leases
...
- fix potential race when lease's data can be modified while UI thread is reading it
2019-03-19 15:54:35 +03:00
Simon Zolin
d68600c5d0
+ dhcp: handle lease expiration
2019-03-15 14:00:32 +03:00
Simon Zolin
8fa2f48136
+ dhcp: use ICMP for IP conflict detection
...
+ 'icmp_timeout_msec' YAML config setting
2019-03-15 14:00:32 +03:00
Simon Zolin
542a67b84e
* dhcp: don't allocate a new lease when processing Request message
2019-03-15 14:00:32 +03:00
Simon Zolin
d832d7ce95
* dhcp: don't process Discover/Request packets with empty client HW address
2019-03-15 14:00:32 +03:00
Simon Zolin
92cf7c1aca
* dhcp: refactor
2019-03-15 14:00:04 +03:00
Simon Zolin
b5f0d48e7f
* DHCP: Stop(): wait until the worker is stopped
2019-03-15 13:56:45 +03:00
Simon Zolin
67014c40f7
+ DHCP: On-disk database for lease table
2019-03-15 13:56:45 +03:00
Simon Zolin
e164cff02b
+ dhcp: test
2019-03-15 13:56:45 +03:00
Simon Zolin
08bf9b0acb
* dhcp: remove code which forces an update of current lease's IP in
...
Request message handler
2019-03-15 13:56:45 +03:00
Simon Zolin
60fa3b2e95
* dhcp: refactor; log client's HW addr
2019-03-15 13:56:45 +03:00
Simon Zolin
5cb6d97cd7
* use new logger - AdguardTeam/golibs/log
2019-02-27 15:02:11 +03:00
Andrey Meshkov
ec6b1f7c42
Added golangci-lint configuration and prepared for the integrattion
2019-01-25 20:13:57 +03:00
Andrey Meshkov
d078851246
gometalinter
2019-01-25 20:13:57 +03:00
Eugene Bujak
4d3f1b83a6
Fix race conditions found by -race
2018-12-29 19:13:00 +03:00
Eugene Bujak
368e2d1ebd
move log wrapper library outside into hmage/golibs/log
2018-12-29 19:12:45 +03:00
Eugene Bujak
d8802a9709
Use new log wrapper and add more functions to it.
2018-12-29 17:37:18 +03:00
Eugene Bujak
86d79ae232
dhcpd -- Remember hostname, for UI.
2018-12-29 16:44:07 +03:00
Eugene Bujak
1b7db49062
DHCPD — don't forget to make Lease fields public.
2018-12-28 20:50:24 +03:00
Eugene Bujak
8b4a1ca713
First implementation of DHCP server, compiles but not tested yet.
2018-12-28 18:28:46 +03:00