当前位置: 首页 > 图文教程 > 操作系统 > Unix/Linux > OpenBSD系统 DHCP 多 vlan 配置

Unix/Linux
Linux 备份 恢复方法
Linux玩CS反恐精英的方法
在一个ISO镜像中集成多个不同的linux发行版,可刻盘,可引导
Linux 快捷键使用
Linux DHCP 服务器配置方法介绍
Linux 22端口的修改方法
Linux 记录会话过程的命令
Linux 后台执行程序如何操作?
linux Wget命令来浏览网页的方法
Linux tail命令的巧妙应用
Wine 中文存在很多的乱码怎么解决方法
linux 新手教程之创建锁文件的方法
配置Linux 保证其系统的安全
Linux DHCP协议实现过程
Linux系统下破解SAM密码
linux/unix vi 编辑器用法详解
Linux 误删文件的解决方法
Linux系统下的历史记录删除方法
Red Hat Linux 安全设置指南
Linux基本命令-注销、关机、重启

Unix/Linux 中的 OpenBSD系统 DHCP 多 vlan 配置


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2010-01-15   浏览: 134 ::
收藏到网摘: n/a

4块DLINK 530 ,1个连接Internet,3个内网

    -------------------------------
     |        |            |    |
vr0 连接Internet    vr1 内网交换机1    vr2 内网交换机2    vr3 内网交换机3
59.108.38.*        192.168.1.0/24    192.168.2.0/24    172.16.71.0/24

采用OpenBSD 4.3自带的DHCP

1. /etc/dhcpd.conf
# cat /etc/dhcpd.conf
default-lease-time 36000;
max-lease-time 72000;

option domain-name-servers 59.108.38.195;

#ddns-update-style ad-hoc;
#log-facility local7;


# for admin vr1
shared-network Admin-NET {
    option  domain-name "atyu30.com";
subnet 192.168.1.0 netmask 255.255.255.0 {
        option broadcast-address 192.168.1.255;
        option routers 192.168.1.1;
        range 192.168.1.10 192.168.1.200;
    }
}
# for office vr2
shared-network Office-NET {
subnet 192.168.2.0 netmask 255.255.255.0 {
        option broadcast-address 192.168.2.255;
        option routers 192.168.2.1;
        range 192.168.2.50 192.168.2.150;
    }
}

# for Server vr3
shared-network Server-NET {
subnet 172.16.71.0 netmask 255.255.255.0 {
        option broadcast-address 172.16.71.255;
        option routers 172.16.71.1;
        range 172.16.71.50 172.16.71.150;
    }
}

host Gate-OpenBSD {
next-server 192.168.1.100;
hardware ethernet 00:0E:7B:37:96:6C;
fixed-address 192.168.1.120;
}
}

2.启动
# touch /var/db/dhcpd.leases
# dhcpd vr1 vr2 vr3

3./etc/rc.conf.local

dhcpd_flags="" # for normal use: ""


4./etc/dhcpd.interfaces

#dhcpd的****端口:

# cat /etc/dhcpd.interfaces
# $OpenBSD: dhcpd.interfaces,v 1.1 1998/08/19 04:25:45 form Exp $
#
# List of network interfaces served by dhcpd(8).
#
# ep0
# ed0 le0
# de1
vr1
vr2
vr3