Forum Discussion

M_2's avatar
M_2
Icon for Altocumulus rankAltocumulus
Jun 05, 2017

Is it possible to add IPV6 address in bigip data-group ?

Hi Team,

 

I am maintaining a IPv4 address data-group which is used to allow access for specific sites in bigip. Is it possible to allow IPV6 also to the same data-group ? Does data-group supports IPV6 ?

 

-SAM

 

1 Reply

  • I'm positive that it should work - article

    Testing and it does accepts in same data-group

    create ltm data-group internal testingipv6 type ip records add { 2001:db8:abcd:0012::0/64 {} }
    
    list ltm data-group internal testingipv6 
    
    ltm data-group internal testingipv6 {
        records {
            2001:db8:abcd:12::/64 { }
        }
        type ip
    }
    
    
    modify ltm data-group internal testingipv6 records add { 64.12.96.0/19 { } }
    
    list ltm data-group internal testingipv6 
    
    ltm data-group internal testingipv6 {
        records {
            64.12.96.0/19 { }
            2001:db8:abcd:12::/64 { }
        }
        type ip
    }