-`mbits``(int: required)` - Specifies the bandwidth required in MBits.
-`port`<code>([Port](#port-parameters): nil)</code> - Specifies a port
allocation and can be used to specify both dynamic ports and reserved ports.
### `port` Parameters
-`static``(int: nil)` - Specifies the static port to allocate. If omitted, a dynamic port is chosen. We **do not recommend** using static ports, except
for `system` or specialized jobs like load balancers.
The label assigned to the port is used to identify the port in service
discovery, and used in the name of the environment variable that indicates
which port your application should bind to. For example:
```hcl
port "foo" {}
```
When the task starts, it will be passed the following environment variables:
-<tt>NOMAD_IP_foo</tt> - The IP to bind on for the given port label.
-<tt>NOMAD_PORT_foo</tt> - The port value for the given port label.
-<tt>NOMAD_ADDR_foo</tt> - A combined <tt>ip:port</tt> that can be used for convenience.
The label of the port is just text - it has no special meaning to Nomad.
## `network` Examples
The following examples only show the `network` stanzas. Remember that the