LINUX.ORG.RU
ФорумAdmin

Проблема с dhcpd...


0

0

Ситуация следующая: У меня есть DHCP сервер (Internet Software Consortium DHCP Server V3.0pl1), он должен раздавать адреса клиентам в различных сегментах сети (через relay agent`ов), причем адресные пространства разных сегментов могут пересекаться (при выходе в Интернет используется NAT, сегменты между собой не взаимодействуют, используется option 82 для определения сегмента).

Вот кусок конфигурационного файла: class "class-1" { match option agent.remote-id; } subclass "class-1" "customer-1@isp.net";

class "class-2" { match option agent.remote-id; } subclass "class-2" "customer-2@isp.net";

subnet 10.18.1.0 netmask 255.255.255.0 { ping-check off; pool { allow members of "class-1"; range 10.18.1.248 10.18.1.249; option broadcast-address 10.18.1.255; option routers 10.18.1.1; option domain-name "customer-1.isp.net"; } pool { allow members of "class-2"; range 10.18.1.248 10.18.1.249; option broadcast-address 10.18.1.255; option routers 10.18.1.1; option domain-name "customer-2.isp.net"; } }

В этом случае получается, что адреса получают только клиенты class-1...

Где я неправ? Помогите...

anonymous

Конфига плохо отображается...
class "class-1" {
        match option agent.remote-id;
        }
subclass "class-1" "customer-1@isp.net";

class "class-2" {
        match option agent.remote-id;
        }
subclass "class-2" "customer-2@isp.net";

subnet 10.18.1.0 netmask 255.255.255.0 {
        ping-check off;
        pool {
                allow members of "class-1";
                range 10.18.1.248 10.18.1.249;
                option broadcast-address 10.18.1.255;
                option routers 10.18.1.1;
                option domain-name "customer-1.isp.net";
                }
        pool {
                allow members of "class-2";
                range 10.18.1.248 10.18.1.249;
                option broadcast-address 10.18.1.255;
                option routers 10.18.1.1;
                option domain-name "customer-2.isp.net";
                }
}

anonymous
()
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.