Skip to content Skip to main navigation Skip to footer

Fedora linux: 重启/停止/启动(restart/stop/start) DHCPD 服务的命令

在Fedora 18中,我们怎么通过命令行来重启dhcpd服务呢?
DHCP(动态主机配置协议)是一个用于为网络上的独立设备获取网络配置信息的协议,主要包括下面的一些信息:
1.IP地址
2.子网掩码
3.广播地址
4.DNS服务器的IP地址
5.默认的网关地址
Fedora start/stop/restart DHCPD服务(最新版本,Fedora 15之后)
重启dhcpd服务,在终端下输入下面的命令:

# systemctl restart dhcpd.service
 

停止dhcpd服务,输入命令:

# systemctl stop dhcpd.service
 

启动dhcpd服务,输入命令:

# systemctl start dhcpd.service
 
注意:在默认情况下,DHCPD 服务不会在系统启动的时候启动。为了在系统启动的时候自动重启,可以输入下面的命令来实现:
# systemctl enable dhcpd.service
 

Fedora start/stop/restart DHCPD服务(老版本,Fedora 14之前)
重启dhcpd服务,在终端下输入下面的命令:

# service dhcpd restart
 

停止dhcpd服务,输入命令:

# service dhcpd stop
 

启动dhcpd服务,输入命令:

# service dhcpd start
 
注意:在默认情况下,DHCPD 服务不会在系统启动的时候启动。为了在系统启动的时候自动重启,可以输入下面的命令来实现:
# chkconfig dhcpd on
 
0 Comments

There are no comments yet

Leave a comment

Your email address will not be published.