I have ISC-DHCP config file:
class "AMINET130 mboot" {
match if (substring( option vendor-encapsulated-options, 2, 9)="AMINET130") and (substring( option vendor-encapsulated-options, 13, 5)="mboot");
vendor-option-space AMINO;
option AMINO.address 239.255.10.98;
option AMINO.port 5500;
}
class "AMINET130 upgrd" {
match if (substring( option vendor-encapsulated-options,2,9)="aminet130") and (substring( option vendor-encapsulated-options,13,5)="upgrd");
vendor-option-space AMINO;
option AMINO.address 239.255.10.99;
option AMINO.port 5500;
}
class "AMINET130 fisys" {
match if (option vendor-class-identifier="Aminoaminet130fisys") or ((substring( option vendor-encapsulated-options, 2, 9)="aminet130") and (substring(option vendor-encapsulated-options, 13, 5)="fisys"));
vendor-option-space AMINO;
option AMINO.dindex 13;
option AMINO.dindex_min 12;
option AMINO.address 239.255.10.99;
option AMINO.port 5500;
option AMINO.timezone "Europe/Moscow";
I know, that I need use option 43 at Cisco DHCP server, but how can I encode all of this options?