Changes between Version 1 and Version 2 of TipAndDoc/network/dhcpd
- Timestamp:
- Jul 2, 2009 9:15:51 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TipAndDoc/network/dhcpd
v1 v2 2 2 3 3 = DHCPd = 4 * 標準はISC DHCPd 5 * Ubuntuでは「udhcpd」という組み込み機器向け由来のDHCPdも選択できる。 6 7 * [http://www.linux.or.jp/JM/html/dhcp2/man5/dhcpd.conf.5.html Manpage of dhcpd.conf] 4 8 5 9 = Ubuntu = … … 7 11 * clientは標準ではdhcp3-client 8 12 13 == configure == 14 * /etc/default/dhcp3-server 15 {{{ 16 # On what interfaces should the DHCP server (dhcpd) serve DHCP requests? 17 # Separate multiple interfaces with spaces, e.g. "eth0 eth1". 18 INTERFACES="" 19 }}} 20 * ListenするIFを指定 21 * /etc/dhcp3/dhcpd.conf についてはman dhcpd.conf 22 9 23 = CentOS = 10 24 * yum install dhcp 11 25 * clientは標準ではdhclient 26 27 == configure == 28 * /etc/sysconfig/dhcpd 29 {{{ 30 # Command line options here 31 DHCPDARGS= 32 }}} 33 * /etc/dhcpd.conf についてはman dhcpd.conf