Index: tools/gformat.py
===================================================================
--- tools/gformat.py	(revision 13863)
+++ tools/gformat.py	(revision 13883)
@@ -583,4 +583,14 @@
          """ % { 'ifname' : ifname, 'mac' : mac, 'prefix': dhcp_part, 'fixed' : fixed }))
       fixed += 1
+
+    if 'dhcp_fixed' in datadump[iface_key]:
+      for (mac,addr,host) in datadump[iface_key]['dhcp_fixed']:
+        dhcp_out[groupif].append(textwrap.dedent("""\
+            host fixed-%(host)s {
+              hardware ethernet %(mac)s;
+              fixed-address %(addr)s;
+            }
+         """ % { 'host' : host, 'mac' : mac, 'addr' : addr}))
+        
 
     dhcp_out[groupif].append(textwrap.dedent("""\
