The Customer Access Network (CAN) provides access from outside the customer network to services, non-compute nodes (NCNs), and User Access Nodes (UANs) in the system. This allows for the following:
These nodes and services need an IP address that routes to the customer’s network in order to be accessed from outside the network.
ncn-m001
. Will need to hop through ncn-m001
to get to the rest of the NCNs.ncn-m001
do not have access to services outside of the system (e.g. LDAP, license servers, and more).
ncn-m001
will not have access to services outside of the system.IP addresses are allocated from a single IP subnet that is configured as the can-cidr
value in the csi config init
input. This subnet is further divided into three smaller subnets:
The minimum size for the CAN subnet is /26. The CAN /26 subnet allows for the following:
27 IP addresses for the NCNs, UANs, and Switches.
4 IP addresses for the CAN static service IP addresses.
32 IP addresses for the rest of the external CAN services.
The 32 service IP addresses will be used for the 5 standard customer-access service IP addresses and the remaining 27 IP addresses are for UAI and/or IMS services.
If there are more than 27 IP addresses needed for NCNs, UANs, and switches, and/or more than 32 IP addresses needed for the external CAN services, then the CAN subnet will need to be larger than a /26.
The following variables are defined in the csi config init
input. This example uses values for the /26 layout described above. The can-gateway
value should be an IP address at the end of the range for NCNs, UANs, and switches. For example, the IP address would be 10.102.5.27 using the figure shown above.
linux# csi config init
.
.
.
--can-cidr 10.102.5.0/26
--can-gateway 10.102.5.27
--can-static-pool 10.102.5.28/30
--can-dynamic-pool 10.102.5.32/27
--can-external-dns 10.102.5.29
--system-name testsystem
--site-domain example.com
.
.
.