服務(wù)器搭建二——DHCP服務(wù)搭建

1.測(cè)試環(huán)境:Centos 6.9

虛擬主機(jī)中安裝
軟件版本:dhcp-4.1.1-53.P1.el6.centos.x86_64

工作原理:

工作原理

2.安裝軟件:

yum list installed|grep dhcp查看是否安裝
yum install -y dhcp安裝dhcp(自動(dòng)安裝版本為4.1.1)

查看安裝和安裝dhcp

也可以使用rpm -qa|grep dhcp查看安裝的情況
Whereis dhcp查看安裝的文件在哪里 /etc/dhcp里面有我們需要的配置文件渤昌。
在/etc/rc.d/init.d/下面的dhcp的腳本 dhcp6 是針對(duì)于IPv6

查看安裝和配置文件
安裝文件
關(guān)于dhcp的文件

3.配置文件

查看配置文件如下圖,發(fā)現(xiàn)默認(rèn)里面什么都沒有走搁,可以參考dhcpd.conf.sample

默認(rèn)配置文件

dhcpd.conf

# Sample configuration file for ISC dhcpd
# option definitions common to all supported networks...
option domain-name "example.org";
option domain-name-servers ns1.example.org, ns2.example.org;
default-lease-time 600; #默認(rèn)租約時(shí)間
max-lease-time 7200;#最大租約時(shí)間
# Use this to enble / disable dynamic dns updates globally.
#ddns-update-style none; # 動(dòng)態(tài)DNS
# If this DHCP server is the official DHCP server for the local
# network, the authoritative directive should be uncommented.
#authoritative;
# Use this to send dhcp log messages to a different log file (you also
# have to hack syslog.conf to complete the redirection).
log-facility local7;
# No service will be given on this subnet, but declaring it helps the
# DHCP server to understand the network topology.
subnet 10.152.187.0 netmask 255.255.255.0 {
}#subnet定義子網(wǎng)
# This is a very basic subnet declaration.
subnet 10.254.239.0 netmask 255.255.255.224 {
range 10.254.239.10 10.254.239.20; # 提供動(dòng)態(tài)IP地址范圍
option routers rtr-239-0-1.example.org, rtr-239-0-2.example.org; #默認(rèn)網(wǎng)關(guān)
}
# This declaration allows BOOTP clients to get dynamic addresses,
# which we don't really recommend.
subnet 10.254.239.32 netmask 255.255.255.224 {
range dynamic-bootp 10.254.239.40 10.254.239.60;
option broadcast-address 10.254.239.31;
option routers rtr-239-32-1.example.org;
}
# A slightly different configuration for an internal subnet.
subnet 10.5.5.0 netmask 255.255.255.224 {
range 10.5.5.26 10.5.5.30;
option domain-name-servers ns1.internal.example.org; #域名服務(wù)器
option domain-name "internal.example.org";#域名選項(xiàng)
option routers 10.5.5.1;#默認(rèn)網(wǎng)關(guān)
option broadcast-address 10.5.5.31;#廣播地址選項(xiàng)
default-lease-time 600;
max-lease-time 7200;
}
# Hosts which require special configuration options can be listed in
# host statements. If no address is specified, the address will be
# allocated dynamically (if possible), but the host-specific information
# will still come from the host declaration.
host passacaglia { #為客戶端指定主機(jī)名稱
hardware ethernet 0:0:c0:5d:bd:95;
filename "vmunix.passacaglia";
server-name "toccata.fugue.com";
}
# Fixed IP addresses can also be specified for hosts. These addresses
# should not also be listed as being available for dynamic assignment.
# Hosts for which fixed IP addresses have been specified can boot using
# BOOTP or DHCP. Hosts for which no fixed address is specified can only
# be booted with DHCP, unless there is an address range on the subnet
# to which a BOOTP client is connected which has the dynamic-bootp flag
# set.
host fantasia {
hardware ethernet 08:00:07:26:c0:a5;
fixed-address fantasia.fugue.com;
}
# You can declare a class of clients and then do address allocation
# based on that. The example below shows a case where all clients
# in a certain class get addresses on the 10.17.224/24 subnet, and all
# other clients get addresses on the 10.0.29/24 subnet.
class "foo" {
match if substring (option vendor-class-identifier, 0, 4) = "SUNW";
}
shared-network 224-29 {#把多個(gè)子網(wǎng)定義在一個(gè)超級(jí)作用域內(nèi)
subnet 10.17.224.0 netmask 255.255.255.0 {
option routers rtr-224.example.org;
}
subnet 10.0.29.0 netmask 255.255.255.0 {
option routers rtr-29.example.org;
}
pool { # 地址池 未知客戶端選擇的地址范圍
allow members of "foo";
range 10.17.224.10 10.17.224.250;
}
pool {#已知的客戶端從下面的地址池選擇IP
deny members of "foo";
range 10.0.29.10 10.0.29.230;
}#
}

特別說明

參考的配置文件是不能直接使用的独柑,需要根據(jù)需要修改里面的IP地址,否則直接運(yùn)行文件私植,dhcp服務(wù)是會(huì)報(bào)錯(cuò)的忌栅。具體配置文件的使用,需要根據(jù)手冊(cè)曲稼,幫助文件來進(jìn)行設(shè)置索绪。

4.DDNS功能

動(dòng)態(tài)域名服務(wù):將用戶的動(dòng)態(tài)的IP地址映射到一個(gè)固定IP地址的域名解析服務(wù)上。現(xiàn)在有些路由器支持DDNS功能可以用來在自己家庭網(wǎng)絡(luò)構(gòu)建網(wǎng)站躯肌,而不用租用專用的網(wǎng)絡(luò)空間商和IP地址

5.客戶端租約數(shù)據(jù)庫(kù)文件

dhcpd.lease里面存儲(chǔ)是已經(jīng)分發(fā)的IP地址
可以使用配置文件中的lease-file-name語(yǔ)句改變dhcpd.leases文件的位置和名稱
格式:lease IP地址{statements......}

6.DHCP中繼代理

使用命令dhcrelay 實(shí)現(xiàn)中繼代理的功能者春,具體命令格式

dhcrelay命令格式

Server0 設(shè)置的是代理要訪問到的DHCP服務(wù)器破衔。

配置DHCP中繼代理
vi /etc/sysconfig/dhcrealy

在里面輸入:
INTERFACES="eth1" DHCPSERVERS="192.168.1.251"(IP地址根據(jù)自己的配置填寫)
開啟DHCP中繼代理服務(wù)器的IPV4轉(zhuǎn)發(fā):
可以在兩個(gè)地方開啟:
vi /etc/sysctl.conf
將“net.ipv4.ip_forward = 0”改成“net.ipv4.ip_forward = 1”

IPv4轉(zhuǎn)發(fā)

執(zhí)行sysctl –p命令使剛開啟的IPV4轉(zhuǎn)發(fā)功能生效清女。

IPv4轉(zhuǎn)發(fā)

② echo 1 > /proc/sys/net/ipv4/ip_forward

啟動(dòng)DHCP中繼代理服務(wù)
dhcrelay 192.168.1.251

啟動(dòng)中繼代理

service dhcrelay start chkconfig --level 35 dhcrelay on

說明:dhcp的配置文件如果沒有配置好是無法啟動(dòng)服務(wù)的,因此應(yīng)該首先寫配置文件晰筛,然后在啟動(dòng)服務(wù)

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末嫡丙,一起剝皮案震驚了整個(gè)濱河市拴袭,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌曙博,老刑警劉巖拥刻,帶你破解...
    沈念sama閱讀 212,383評(píng)論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異父泳,居然都是意外死亡般哼,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,522評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門惠窄,熙熙樓的掌柜王于貴愁眉苦臉地迎上來蒸眠,“玉大人,你說我怎么就攤上這事杆融±憧ǎ” “怎么了?”我有些...
    開封第一講書人閱讀 157,852評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵脾歇,是天一觀的道長(zhǎng)蒋腮。 經(jīng)常有香客問我,道長(zhǎng)藕各,這世上最難降的妖魔是什么池摧? 我笑而不...
    開封第一講書人閱讀 56,621評(píng)論 1 284
  • 正文 為了忘掉前任,我火速辦了婚禮激况,結(jié)果婚禮上险绘,老公的妹妹穿的比我還像新娘。我一直安慰自己誉碴,他們只是感情好宦棺,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,741評(píng)論 6 386
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著黔帕,像睡著了一般代咸。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上成黄,一...
    開封第一講書人閱讀 49,929評(píng)論 1 290
  • 那天呐芥,我揣著相機(jī)與錄音,去河邊找鬼奋岁。 笑死思瘟,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的闻伶。 我是一名探鬼主播滨攻,決...
    沈念sama閱讀 39,076評(píng)論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來了光绕?” 一聲冷哼從身側(cè)響起女嘲,我...
    開封第一講書人閱讀 37,803評(píng)論 0 268
  • 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎诞帐,沒想到半個(gè)月后欣尼,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,265評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡停蕉,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,582評(píng)論 2 327
  • 正文 我和宋清朗相戀三年愕鼓,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片慧起。...
    茶點(diǎn)故事閱讀 38,716評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡拒啰,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出完慧,到底是詐尸還是另有隱情谋旦,我是刑警寧澤,帶...
    沈念sama閱讀 34,395評(píng)論 4 333
  • 正文 年R本政府宣布屈尼,位于F島的核電站册着,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏脾歧。R本人自食惡果不足惜甲捏,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,039評(píng)論 3 316
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望鞭执。 院中可真熱鬧司顿,春花似錦、人聲如沸兄纺。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,798評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)估脆。三九已至钦奋,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間疙赠,已是汗流浹背付材。 一陣腳步聲響...
    開封第一講書人閱讀 32,027評(píng)論 1 266
  • 我被黑心中介騙來泰國(guó)打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留圃阳,地道東北人厌衔。 一個(gè)月前我還...
    沈念sama閱讀 46,488評(píng)論 2 361
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像捍岳,于是被迫代替她去往敵國(guó)和親富寿。 傳聞我的和親對(duì)象是個(gè)殘疾皇子睬隶,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,612評(píng)論 2 350

推薦閱讀更多精彩內(nèi)容