Jamie Hannaford | 686c496 | 2014-09-23 10:46:20 +0200 | [diff] [blame] | 1 | // Package subnets contains functionality for working with Neutron subnet |
| 2 | // resources. A subnet represents an IP address block that can be used to |
| 3 | // assign IP addresses to virtual instances. Each subnet must have a CIDR and |
| 4 | // must be associated with a network. IPs can either be selected from the whole |
| 5 | // subnet CIDR or from allocation pools specified by the user. |
| 6 | // |
| 7 | // A subnet can also have a gateway, a list of DNS name servers, and host routes. |
| 8 | // This information is pushed to instances whose interfaces are associated with |
| 9 | // the subnet. |
Jamie Hannaford | 89f9af2 | 2014-09-17 12:21:48 +0200 | [diff] [blame] | 10 | package subnets |