Remove the requirement that DHCP messages have to be broadcasted.
DHCP requests are most often sent via broadcast but can be directed
towards a specific DHCP server. For example 'dhclient' takes '-s <server>'
as a command line parameter thus allowing DHCP requests to be sent to a
specific DHCP server.
virBufferAsprintf(&buf,
CMD_DEF("$EBT -t nat -A %s"
- " -s %s -d Broadcast "
+ " -s %s"
" -p ipv4 --ip-protocol udp"
- " --ip-src 0.0.0.0 --ip-dst 255.255.255.255"
" --ip-sport 68 --ip-dport 67"
" -j ACCEPT") CMD_SEPARATOR
CMD_EXEC