1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
(network-configure)=
# How to configure a network
To configure an existing network, use either the [`incus network set`](incus_network_set.md) and [`incus network unset`](incus_network_unset.md) commands (to configure single settings) or the `incus network edit` command (to edit the full configuration).
To configure settings for specific cluster members, add the `--target` flag.
For example, the following command configures a DNS server for a physical network:
```bash
incus network set UPLINK dns.nameservers=8.8.8.8
```
The available configuration options differ depending on the network type.
See {ref}`network-types` for links to the configuration options for each network type.
There are separate commands to configure advanced networking features.
See the following documentation:
- {doc}`/howto/network_acls`
- {doc}`/howto/network_forwards`
- {doc}`/howto/network_integrations`
- {doc}`/howto/network_load_balancers`
- {doc}`/howto/network_zones`
- {doc}`/howto/network_ovn_peers` (OVN only)
|