# Provisioning Pod Network Routes Pods scheduled to a node receive an IP address from the node's Pod CIDR range. At this point pods can not communicate with other pods running on different nodes due to missing network [routes]. In this lab you will create a route for each worker node that maps the node's Pod CIDR range to the node's internal IP address. > There are [other ways] to implement the Kubernetes networking model. ## The Routing Table In this section you will gather the information required to create routes in the `kubernetes-the-hard-way` VPC network. Print the internal IP address and Pod CIDR range for each worker instance: ```bash { NODE_0_IP=$(grep node01 machines.txt | cut -d " " -f 1) NODE_0_SUBNET=$(grep node01 machines.txt | cut -d " " -f 4) NODE_1_IP=$(grep node02 machines.txt | cut -d " " -f 1) NODE_1_SUBNET=$(grep node02 machines.txt | cut -d " " -f 4) } ``` ```bash ssh vagrant@controlplane <