dhcp的简单配置


#------------------------------------------------------------------------------------------------------dhcp的简单配置

所需包

dhcp-3.0pl1-23
dhcp-devel-3.0pl1-23
安装包使用的命令
rpm -ivh [路径][包名]

安装完包后,可以使用locate或者whereis命令查找dhcpd.conf.sample的路径
之后使用cp [路径]dhcpd.conf.sample /var/dhcpd.conf
使用vi dhcpd.conf对此文件进行如下修改
修改完后通过service dhcpd start 来启动dhcpd服务
此时服务器端已配置完成



#dhcpd.conf
ddns-update-style interim;
ignore client-updates;

subnet 192.168.58.0 netmask 255.255.255.0 {
#将子网改为192.168.58.0 掩码为255.255.255.0


# --- default gateway

#--------------------------------须修改start
option routers 192.168.58.11;#默认路由
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.58.255;#广播地址
option domain-name-servers 192.168.58.11;#域名服务器地址
range dynamic-bootp 192.168.58.128 192.168.58.254;#分配地址的范围
#--------------------------------须修改end

#--------------------------------须看情况修改start 
option nis-domain "domain.org";
option domain-name "domain.org";
default-lease-time 21600;
max-lease-time 43200;
option time-offset -18000; # Eastern Standard Time
#--------------------------------须看情况修改end

# option ntp-servers 192.168.1.1;
# option netbios-name-servers 192.168.1.1;
# --- Selects point-to-point node (default is hybrid). Don't change this unless
# -- you understand Netbios very well
# option netbios-node-type 2;



# we want the nameserver to appear at a fixed address
host ns {
next-server marvin.redhat.com;
hardware ethernet 12:34:56:78:AB:CD;
fixed-address 207.175.42.254;

}


#-------------------------------------------------------------------------------------------------------至此服务器端已经配置完成

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值