looking for the mode set I need to change the DHCP server to test on ip VLANS (not the MAC VLANS in zoneconfig.)
currently, the mode is set for single scope so I can not assign DHCP addresses and only have DNS through dhcpd when placing the vlan dhcp entry in dhcpd,conf.local.
DHCP on IP VLANs on a revised version of zoneconf.cgi I’ve been working on when I was away. Which I am going to publish it on git hub and share the link to in the developer’s email.
After creating your commit of the changes then run
git format-patch -n -o path/to/store/patch
and you will get a correctly formatted patch to send. n is for the number of patches to be sent in the set. If it is a single patch then it would be -1, it the patch set consists of 3 different patches then it would be -3
and then run
git send-email path/to/where/patch/was/stored
You will need to enter the appropriate info for send-email into the git config files you have so that the patch is sent to the correct location via whatever mail server you utilise.
For example you will need the entry
[sendemail]
to = development@lists.ipfire.org
in your repo git config file and
[user]
name = Your name
email = Your email address registered with the mailing list
[sendemail]
smtpencryption = ssl
smtpserver = submissions.ipfire.org
smtpserverport = 465
smtpuser = your IPFire People user name
smtppass = “your IPFire People password”
in your global .gitconfig file.
The above is based what I have in those files and it works.