c671ceee05
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@909 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
77 lines
2.2 KiB
Plaintext
77 lines
2.2 KiB
Plaintext
=head1 NAME
|
|
|
|
B<makedhcp> - Creates new dhcp configuration files and updates live dhcp configuration using omapi.
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
B<makedhcp> [-n]>
|
|
|
|
B<makedhcp> [-a]
|
|
|
|
B<makedhcp> [-a] [-d]
|
|
|
|
B<makedhcp> [-d] I<noderange>
|
|
|
|
B<makedhcp> I<noderange> [B<-s> I<statements>]
|
|
|
|
B<makedhcp> I<[h|--help]>
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
The B<makedhcp> command with the B<-n> option will create a dhcpd.conf file to allow xCAT to manage
|
|
the DHCP configuration, including certain general parameters such as a dynamic range and omapi configuration.
|
|
With a noderange, makedhcp will inject configuration data pertinent to the specified nodes that immediately
|
|
takes effect without a reset.
|
|
|
|
The B<makedhcp> command with the B<-a> option will create a dhcpd.leases file for all nodes. If the B<-d> flag is used with the B<-a> flag then it will delete all nodes dhcp service host definitions.
|
|
|
|
The B<makedhcp> B<-d> flag followed with a <noderange> will delete the dhcp server host definitons for the noderange.
|
|
|
|
The B<makedhcp> command also uses the following attributes from the xCAT database: B<site.xcatservers>,
|
|
B<site.dhcpinterfaces>, B<site.domain>,
|
|
B<networks.dynamicrange>, B<networks.dhcpserver>
|
|
|
|
|
|
=head1 OPTIONS
|
|
|
|
B<-h> Display usage message.
|
|
|
|
B<-n> Create a new dhcpd.conf file.
|
|
|
|
B<-a> Define all nodes to the dhcp server.
|
|
|
|
B<-a> <-d> Delete all defined nodes to the dhcp server.
|
|
|
|
B<-d> <noderange> Delete all defined nodes in the noderange to the dhcp server.
|
|
|
|
B<-s> For the input noderange, the argument will be interpreted like dhcpd.conf text.
|
|
|
|
|
|
=head1 RETURN VALUE
|
|
|
|
0 The command completed successfully.
|
|
|
|
1 An error has occurred.
|
|
|
|
=head1 EXAMPLES
|
|
|
|
1. The following example, will cause dhcp on the next request to set root-path appropriately for only node5. Note some characters (e.g. ") must be doubly escaped (once for the shell, and once for the OMAPI layer).
|
|
|
|
I<makedhcp node5 -s 'option root-path \"172.16.0.1:/install/freebsd6.2/x86_64\";'>
|
|
|
|
2. The following example, will update the dhcpd.conf file.
|
|
|
|
I<makedhcp -n>
|
|
|
|
|
|
2. The following example, will define all nodes to the dhcp server.
|
|
|
|
I<makedhcp -a>
|
|
|
|
|
|
=head1 NOTES
|
|
|
|
This command is part of the xCAT software product.
|
|
|