Thank you so much Merek, That fixed my issue... :-)
--jim -----Original Message----- From: [email protected] [mailto:[email protected]] On Behalf Of [email protected] Sent: Wednesday, September 08, 2010 2:46 PM To: [email protected] Subject: RE: Cobbler DHCP Entry with DNS IP Address Lookup Sure, just change the /etc/cobbler/dhcp.template. Here is my: #for dhcp_tag in $dhcp_tags.keys(): ## group could be subnet if your dhcp tags line up with your subnets ## or really any valid dhcpd.conf construct ... if you only use the ## default dhcp tag in cobbler, the group block can be deleted for a ## flat configuration # group for Cobbler DHCP tag: $dhcp_tag group { #for mac in $dhcp_tags[$dhcp_tag].keys(): #set iface = $dhcp_tags[$dhcp_tag][$mac] next-server $iface.next_server; filename "$iface.filename"; #if $iface.gateway: option routers $iface.gateway; #end if host $iface.hostname { hardware ethernet $mac; option host-name "$iface.hostname"; fixed-address $iface.hostname; } #end for } #end for This will create an entry based on dhcp_keys. If you don't use those. Just remove the "for" loop. Marek Dohojda 720-308-8622 77 68 6f 20 69 73 20 4a 6f 68 6e 20 47 61 6c 74 3f 0d 0a -----Original Message----- From: [email protected] [mailto:[email protected]] On Behalf Of McEvoy, James Sent: Wednesday, September 08, 2010 3:09 PM To: [email protected] Subject: Cobbler DHCP Entry with DNS IP Address Lookup Can cobbler be configured so that it will create dhcp entries in the following format so that DNS can be responsible for assigning the IP addresses? I have control of dhcp but not dns. host kamp { hardware ethernet 00:16:d4:c0:58:d0; fixed-address kamp.example.com; } I have not used python and just started looking at the BeginnersGuide so please give detail if I need to modify any code.... --jim _______________________________________________ cobbler mailing list [email protected] https://fedorahosted.org/mailman/listinfo/cobbler _______________________________________________ cobbler mailing list [email protected] https://fedorahosted.org/mailman/listinfo/cobbler
