Home Linux Central_Management Cobbler
Add a system

cobbler system add --name=<systemName> --profile=<profileName>

cobbler system add --name=$FULLNAME --profile=$PROFILE --interface=$INTERFACE --mac=$MAC --ip-address=$IPADDRESS --subnet=$SUBNET --dns-name=$FULLNAME --static=1  --gateway=$GATEWAY --hostname=$FULLNAME --name-servers="$NAMESERVERS"


List a system

cobbler system list
cobbler system report --name=<systemName>


Set static network for a system

cobbler system edit --name=<systemName> --interface=eth0 --mac=12:34:56:78:9a:bc --ip-address=10.0.0.2 --netmask=255.255.255.0 --static=1 --dns-name=<systemName>.<domain>
cobbler system edit --name=<systemName> --gateway=10.0.0.1 --hostname=<systemName>.<domain>

may need to run cobbler sync  for the new dhcp settings to be applied  when adding a system with a static ip.

List systems associated to a profile

cobber system find --profile=<profileName>


Disable netboot after install

cobber system edit --name=<system-name> --netboot-enabled=no