Networking Forums

Networking Forums > Computer Networking > Windows Networking > DHCP and TAP devices

Reply
Thread Tools Display Modes

DHCP and TAP devices

 
 
=?Utf-8?B?anZhbmRlcnN0ZWx0?=
Guest
Posts: n/a

 
      03-15-2005, 02:57 PM
I have clients with TAP network interfaces, I can get the dhcp information
from the server. the problem is I need one scope for actual network
interfaces, and one scope for TAP network interfaces. the only way to
indentify the TAP devices is that there MAC address starts with 00:FF

here is an example of what I need in a BIND configuration file.


class "test" {
match if substring (hardware, 1, 2) = 00:FF;
}
authoritative;
subnet 172.16.0.0 netmask 255.255.255.0 {
always-broadcast on;
max-lease-time 3600;
default-lease-time 1800;
option domain-name "ezone.net";
option subnet-mask 255.255.255.0;
pool {
deny members of "test";
range 172.16.0.150 172.16.0.254;
option routers 172.16.0.1;
option domain-name-servers 172.16.0.1;
}
pool {
allow members of "test";
range 172.16.0.100 172.16.0.125;
option domain-name-servers 172.16.0.1;
}
}
 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Prevent unauthorized DHCP servers/devices. Barkley Bees Windows Networking 6 07-11-2008 02:47 PM
Finding DHCP (dynamic IP) devices on a subnet Ed J Linux Networking 5 02-14-2007 03:32 PM
2 MN-700 devices Pearl Wireless Networks 0 07-25-2005 11:47 PM
delicate DHCP problem with bridged eth devices KaiRo - Robert Kaiser Linux Networking 6 11-07-2004 10:42 PM
DHCP/DDNS Doesn't Work with Netgear Devices Trouble@Mill Linux Networking 0 03-04-2004 08:13 PM



1 2 3 4 5 6 7 8 9 10 11