Vladimir_Akhmarov
Jan 10, 2024Cirrus
What is the proper way to define GTM regions
Hello!
According to Bug ID https://cdn.f5.com/product/bugtracker/ID1040153.html we should "not put mixed subnets in one region"
Who knows what is the correct way to define region records with mixed subnets?
Option 1
gtm region Option1_region {
region-members {
subnet 10.0.0.0/8 { }
subnet 172.16.0.0/12 { }
subnet 192.168.0.0/16 { }
}
}
Option 2
gtm region RFC1918_10_region {
region-members {
subnet 10.0.0.0/8 { }
}
}
gtm region RFC1918_172_region {
region-members {
subnet 172.16.0.0/12 { }
}
}
gtm region RFC1918_192_region {
region-members {
subnet 192.168.0.0/16 { }
}
}
gtm region Option2_region {
region-members {
region /Common/RFC1918_10_region { }
region /Common/RFC1918_172_region { }
region /Common/RFC1918_192_region { }
}
}