-
It would appear another solution would be to configure DHPC and DNS to hand out these requests. I'm not sure if that's practical to setup DNS in our labs case, but sounds like it would work.
I just remembered this as well which helps dhcp/dns in handing out hostnames:
http://www.mail-archive.com/centos@centos.org/msg38041.html.
2009-07-09 20:10:20 UTC in Clonezilla
-
I gave that a try a couple of times but so far the only thing that has worked for me was:
#!/bin/bash
golden_image_name="node1"
golden_image_ip="192.168.1.5"
mac_address=`ifconfig|grep eth1|awk '{print $5}'`
echo $mac_address
case "$mac_address" in
'00:1E:C9:XS:XS:XS')
new_hostname=server1;
new_ip=192.168.1.6
;;
'00:1E:C9:X2:X2:X2'...
2009-07-07 20:30:21 UTC in Clonezilla
-
Thanks and appears to work.
I'm guessing i'll write a script that queries the mac address and based on that will determine proper hostname IP for multiple systems.
Any future plans of an auto-generated script for us linux cluster folk?.
2009-07-02 17:10:57 UTC in Clonezilla
-
Thanks and appears to work.
I'm guessing i'll write a script that queries the mac address and based on that will determine proper hostname IP for multiple systems.
Any future plans of an auto-generated script for us linux cluster folk?.
2009-07-02 15:54:50 UTC in Clonezilla
-
Hello,
Here is what I am trying to do and tell me if there is a way to automatically set the hostnames on Disked (not diskless) nodes after a clonezilla "golden image" (like system imager use to do). The issue I'm having is that after I clone to a new node (disked) the old hostname appears on the new node.
Here is the scenario:
CentOS 5.3 on all systems
DRBL on...
2009-07-02 14:33:57 UTC in Diskless Remote Boot in Linux (DRBL)
-
Hello,
Here is what I am trying to do and tell me if there is a way to automatically set the hostnames on Disked (not diskless) nodes after a clonezilla "golden image" (like system imager use to do). The issue I'm having is that after I clone to a new node (disked) the old hostname appears on the new node.
Here is the scenario:
CentOS 5.3 on all systems
DRBL on...
2009-07-01 15:12:13 UTC in Clonezilla