添加DHCP服务器到CIITIX-WiFi

向CIITIX-WiFi添加DHCP服务器

操作系统:Linux 2.6.26-2-686
发行:CIITIX-WiFi(1.1)
日期:26/01/2011
作者:yasir

CIITIX-WiFi是您的WiFi热点需求的交钥匙解决方案。 建立在坚实稳定的debian linux上,建立一个安全的(TTLS)WiFi热点距离酒店仅有一分钟的路程。 该Howto将向您展示在CIITIX-WiFi中设置DHCP服务器的一步一步配置。 它在某种意义上是有用的,它将作为单个机器上的CIITIX-WiFi和DHCP服务器的独立解决方案,即DHCP不需要单独的机器。

这里下载CIITIX-WiFi图像。

首先要做的是添加这两行...

deb http://ftp.us.debian.org/debian/ lenny main
deb http://security.debian.org/ lenny main

sources.list文件中使用命令:

# vi /etc/apt/source-list

您也可以使用其他镜像源,这些源在地理位置上靠近您的位置。

sources.list文件中进行更改后,发出以下命令:

# aptitude update -y

安装DHCP服务器。 用于安装的命令是:

# aptitude install dhcp3-server -y

您必须定义您的dhcp将要使用的网络接口。 使用命令:

# vi /etc/default/dhcp3-server

根据您使用的界面,将INTERFACES设置为eth0eth1

INTERFACES="eth0"

现在,您必须使用以下命令定义您使用的子网,其范围,默认网关和dhcpd.conf文件中的其他许多选项:

# vi /etc/dhcp3/dhcpd.conf
ddns-update-style interim;
subnet 172.16.1.0 netmask 255.255.255.0
{
option routers             172.16.1.2; # Gateway Address
option subnet-mask         255.255.255.0;
option domain-name         "yasir.org";
option domain-name-servers 172.16.1.3; # DNS
option netbios-name-servers 172.16.1.5; # WINS
range dynamic-bootp 172.16.1.10 172.16.1.254;  # range for clients.
default-lease-time  43200;
max-lease-time      86400;
}

最后,您需要使用以下命令启动dhcp服务器:

# /etc/init.d/dhcp3-server start

就是这样...现在您不必为dhcp服务器使用单独的机器。

假设您的CIITIX-WiFi服务器本身在其接口上配置了静态IP。 示例如下。

# cat /etc/network/interfaces
auto eth0
iface eth0 inet static
        address 172.16.1.7
        netmask 255.255.255.0
        gateway 172.16.1.2

啦啦!!!

赞(52) 打赏
未经允许不得转载:优客志 » 系统运维
分享到:

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏