Networking Forums

Networking Forums > Computer Networking > Linux Networking > dhcp with fixed IP with option agent.circuit-id

Reply
Thread Tools Display Modes

dhcp with fixed IP with option agent.circuit-id

 
 
Milan
Guest
Posts: n/a

 
      06-23-2005, 08:09 AM
Hi!

One of our clients wants to assing fixed IP address to a client which
spefied distinct agent.circuit-id option which they receive from router.

Is it possble to use this kind of way to assing fixed IP to the clients?

They are also consifreing using LDAP to connect user with specific IP
address.

Below is sample of the config to see how they try to implement it.

Thanks for any help in andvance.
Milan

################################################## ############################################3
subnet 10.100.0.0 netmask 255.255.0.0 {
option routers 10.100.0.1;
default-lease-time 300;
max-lease-time 600;
option domain-name-servers 127.0.0.1;
# range 10.100.0.100 10.100.0.200;

class "t13" {
match if (option agent.circuit-id = "GigabitEthernet 4/0.100102:102")
and (option vendor-class-identifier = "i3 micro HAG");
}

pool {
allow members of "t13";
range 10.100.0.205 10.100.0.205;
}

class "t14" {
match if (option agent.circuit-id = "GigabitEthernet 4/0.100102:102")
and (option vendor-class-identifier = "udhcp 0.9.9-pre");
}

pool {
allow members of "t14";
range 10.100.0.206 10.100.0.206;
}

class "t12" {
match if option agent.circuit-id = "GigabitEthernet 4/0.100102:102";
}

pool {
allow members of "t12";
range 10.100.0.202 10.100.0.202;
}
 
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
DHCP Relay Agent and NAT Boris Windows Networking 1 03-03-2008 02:49 AM
DHCPd with Option 82 and fixed-host statement Alexander Nesterov Linux Networking 0 12-24-2007 08:51 PM
How DHCP decide which scope to give thourgh dhcp relay agent? cs Windows Networking 3 01-04-2007 03:48 AM
DHCP relay agent Daniel Vojvoda Windows Networking 0 12-22-2003 10:59 AM
DHCP relay agent =?Utf-8?B?VG9tYXogS29uY2Fu?= Windows Networking 1 11-24-2003 01:44 PM



1 2 3 4 5 6 7 8 9 10 11