mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
989772c9ac
had both lines: Author: ... WWW: .... So standardize on that, and move them to the end of the file when necessary. Also fix some more whitespace, and remove more "signature tags" of varying forms, like -- name, etc. s/AUTHOR/Author/ A few other various formatting issues
28 lines
998 B
Plaintext
28 lines
998 B
Plaintext
A light-weight DHCP Relay Agent.
|
|
|
|
Why not the ISC DHCP Relay Agent?
|
|
|
|
- If your RA has multiple interfaces, you get multiple requests for
|
|
each request:
|
|
|
|
DHCPREQUEST for 10.199.14.216 from 00:10:dc:d1:e6:39 (foo) via 10.199.14.1
|
|
DHCPACK on 10.199.14.216 to 00:10:dc:d1:e6:39 (foo) via 10.199.14.1
|
|
DHCPREQUEST for 10.199.14.216 from 00:10:dc:d1:e6:39 (foo) via 10.10.3.5: wrong network.
|
|
DHCPNAK on 10.199.14.216 to 00:10:dc:d1:e6:39 via 10.10.3.5
|
|
|
|
This RA sends only one request, coming with the IP address of the
|
|
LAN the request came from.
|
|
|
|
- If your RA has multiple interfaces, the outgoing interfaces to
|
|
the WAN needs to be active in the DHCP relay otherwise answers
|
|
are not picked up.
|
|
|
|
This RA uses a unicast socket for returning answers.
|
|
|
|
- If your RA has non-ethernet interfaces (GIF-tunnels for example,
|
|
which VPN back to the central network), the answers are not picked
|
|
up by the RA.
|
|
|
|
Author: Edwin Groothuis <edwin@mavetju.org>
|
|
WWW: http://www.mavetju.org/networking/
|