I know this not needed, but is useful information to people using this system.
This Ascent configuration is using the CIDR system.
More can be found here: Classless Inter-Domain Routing - Wikipedia, the free encyclopedia
Dedicated IPs:
If you wish to use a 1 single, whole IP like 192.168.1.3, you would use this configuration:
Code:
AllowedIPs = "192.168.1.3/32">
AllowedModIPs = "192.168.1.3/32">
IP ranges 0.0.0.*:
If you wish to use an IP range, such as 192.168.1.1-192.168.1.256 (192.168.1.*), you would use this configuration:
Code:
AllowedIPs = "192.168.1.0/24">
AllowedModIPs = "192.168.1.0/24">
IP ranges 0.0.*.*:
If you wish to use an IP range, such as 192.168.1.1-192.168.256.256 (192.168.*.*), you would use this configuration:
Code:
AllowedIPs = "192.168.0.0/11">
AllowedModIPs = "192.168.0.0/11">
IP ranges 0.*.*.*:
If you wish to use an IP range, such as 192.1.1.1-192.256.256.256 (192.*.*.*), you would use this configuration:
Code:
AllowedIPs = "192.0.0.0/8">
AllowedModIPs = "192.0.0.0/8">
More than 1 IP:
If you wish to use more than 1 IP, you would use this configuration and the IP system above:
Code:
AllowedIPs = "192.168.1.3/32, 192.0.0.0/8">
AllowedModIPs = "192.168.1.3/32, 192.0.0.0/8">