en:dpi:bras_bng:ip_pool:ipv4:isc_cfg_opt125 [Документация VAS Experts]

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
en:dpi:bras_bng:ip_pool:ipv4:isc_cfg_opt125 [2023/10/13 13:54] – удалено - внешнее изменение (Дата неизвестна) 127.0.0.1en:dpi:bras_bng:ip_pool:ipv4:isc_cfg_opt125 [2024/09/26 15:29] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +
 +Configuration example for option 125 (''dhcp_poolname_opt=2''):
 +<code>
 +   # Declare the architecture of opt125 for VASExperts
 +option space VASEX code width 1 length width 1;
 +option VASEX.poolname code 1 = string;
 +option space vivso code width 4 length width 1;
 +option vivso.VASEX code 43823 = encapsulate VASEX;
 +option vivso.iana code 0 = string;
 +option op125 code 125 = encapsulate vivso;
 +
 +shared-network MyShare {
 +    # Declare the pool class "my-pool1"
 +    class "dhcp-pool1" {
 +        match if option VASEX.poolname = "my-pool1";
 +    }
 +    # Declare the pool class "my-pool2"
 +    class "dhcp-pool2" {
 +        match if option VASEX.poolname = "my-pool2";
 +    }
 +
 +    # ...
 +
 +    # pool "my-pool1"
 +    subnet 10.250.130.0 netmask 255.255.255.0 {
 +       option routers 10.250.130.1;
 + pool {
 +     allow members of "dhcp-pool1";
 +     range 10.250.130.2 10.250.130.250;
 + }
 +    }
 +
 +    # pool "my-pool2"
 +    subnet 10.250.140.0 netmask 255.255.255.0 {
 +       option routers 10.250.140.1;
 +       pool {
 +     allow members of "dhcp-pool2";
 +     range 10.250.140.2 10.250.140.250;
 + }
 +    }
 +
 +    # ...
 +}
 +</code>