Configuring IPv6 Address Ranges

Use the following configuration to configure the IPv6 address ranges:

configure 
   ipam  
      address-pool pool_name 
         vrf-name string 
         ipv6 
            address-range start_ipv6_address end_ipv6_address 
            commit 

NOTES:

  • ipam : Enters the IPAM configuration mode.

  • address -pool pool_name : Configures the address pool configuration. pool_name must be the name of the address pool.

  • vrf-name string : Configures the VRF name of the pool.

  • ipv6 : Enters the IPv6 mode of the pool.

  • address-range start_ipv6_address end_ipv6_address : Configures the IPv6 range. start_ipv6_address specifies the starting IPv6 address. end_ipv6_address specifies the ending IPv6 address.

The following is a sample configuration:

configure
   ipam 
      address-pool p1
         vrf-name one
         ipv6
            address-range 1::1 1::1000
            address-range 2::1 2::1000