public inbox for pve-devel@lists.proxmox.com
 help / color / mirror / Atom feed
From: "Fabian Grünbichler" <f.gruenbichler@proxmox.com>
To: PVE development discussion <pve-devel@pve.proxmox.com>
Subject: [pve-devel] applied-series: [PATCH docs 1/2] fix #2526: network config: change underscore to dash
Date: Tue, 11 Aug 2020 15:33:43 +0200	[thread overview]
Message-ID: <1597152815.2ayc6cublg.astroid@nora.none> (raw)
In-Reply-To: <20200513144654.31184-1-a.lauterer@proxmox.com>

On May 13, 2020 4:46 pm, Aaron Lauterer wrote:
> The network config examples use the underscore but our tooling
> generates the configs with dashes.
> 
> Signed-off-by: Aaron Lauterer <a.lauterer@proxmox.com>
> ---
> 
>  pve-network.adoc | 80 ++++++++++++++++++++++++------------------------
>  pvecm.adoc       |  6 ++--
>  2 files changed, 43 insertions(+), 43 deletions(-)
> 
> diff --git a/pve-network.adoc b/pve-network.adoc
> index 8f3af0d..1c5ae17 100644
> --- a/pve-network.adoc
> +++ b/pve-network.adoc
> @@ -161,9 +161,9 @@ iface vmbr0 inet static
>          address 192.168.10.2
>          netmask 255.255.255.0
>          gateway 192.168.10.1
> -        bridge_ports eno1
> -        bridge_stp off
> -        bridge_fd 0
> +        bridge-ports eno1
> +        bridge-stp off
> +        bridge-fd 0
>  ----
>  
>  Virtual machines behave as if they were directly connected to the
> @@ -209,9 +209,9 @@ auto vmbr0
>  iface vmbr0 inet static
>          address  203.0.113.17
>          netmask  255.255.255.248
> -        bridge_ports none
> -        bridge_stp off
> -        bridge_fd 0
> +        bridge-ports none
> +        bridge-stp off
> +        bridge-fd 0
>  ----
>  
>  
> @@ -239,9 +239,9 @@ auto vmbr0
>  iface vmbr0 inet static
>          address  10.10.10.1
>          netmask  255.255.255.0
> -        bridge_ports none
> -        bridge_stp off
> -        bridge_fd 0
> +        bridge-ports none
> +        bridge-stp off
> +        bridge-fd 0
>  
>          post-up   echo 1 > /proc/sys/net/ipv4/ip_forward
>          post-up   iptables -t nat -A POSTROUTING -s '10.10.10.0/24' -o eno1 -j MASQUERADE
> @@ -357,18 +357,18 @@ iface bond0 inet static
>        slaves eno1 eno2
>        address  192.168.1.2
>        netmask  255.255.255.0
> -      bond_miimon 100
> -      bond_mode 802.3ad
> -      bond_xmit_hash_policy layer2+3
> +      bond-miimon 100
> +      bond-mode 802.3ad
> +      bond-xmit-hash-policy layer2+3
>  
>  auto vmbr0
>  iface vmbr0 inet static
>          address  10.10.10.2
>          netmask  255.255.255.0
>          gateway  10.10.10.1
> -        bridge_ports eno1
> -        bridge_stp off
> -        bridge_fd 0
> +        bridge-ports eno1
> +        bridge-stp off
> +        bridge-fd 0
>  
>  ----
>  
> @@ -389,18 +389,18 @@ iface eno2 inet manual
>  auto bond0
>  iface bond0 inet manual
>        slaves eno1 eno2
> -      bond_miimon 100
> -      bond_mode 802.3ad
> -      bond_xmit_hash_policy layer2+3
> +      bond-miimon 100
> +      bond-mode 802.3ad
> +      bond-xmit-hash-policy layer2+3
>  
>  auto vmbr0
>  iface vmbr0 inet static
>          address  10.10.10.2
>          netmask  255.255.255.0
>          gateway  10.10.10.1
> -        bridge_ports bond0
> -        bridge_stp off
> -        bridge_fd 0
> +        bridge-ports bond0
> +        bridge-stp off
> +        bridge-fd 0
>  
>  ----
>  
> @@ -474,15 +474,15 @@ iface vmbr0v5 inet static
>          address  10.10.10.2
>          netmask  255.255.255.0
>          gateway  10.10.10.1
> -        bridge_ports eno1.5
> -        bridge_stp off
> -        bridge_fd 0
> +        bridge-ports eno1.5
> +        bridge-stp off
> +        bridge-fd 0
>  
>  auto vmbr0
>  iface vmbr0 inet manual
> -        bridge_ports eno1
> -        bridge_stp off
> -        bridge_fd 0
> +        bridge-ports eno1
> +        bridge-stp off
> +        bridge-fd 0
>  
>  ----
>  
> @@ -502,10 +502,10 @@ iface vmbr0.5 inet static
>  
>  auto vmbr0
>  iface vmbr0 inet manual
> -        bridge_ports eno1
> -        bridge_stp off
> -        bridge_fd 0
> -        bridge_vlan_aware yes
> +        bridge-ports eno1
> +        bridge-stp off
> +        bridge-fd 0
> +        bridge-vlan-aware yes
>  ----
>  
>  The next example is the same setup but a bond is used to
> @@ -523,9 +523,9 @@ iface eno2 inet manual
>  auto bond0
>  iface bond0 inet manual
>        slaves eno1 eno2
> -      bond_miimon 100
> -      bond_mode 802.3ad
> -      bond_xmit_hash_policy layer2+3
> +      bond-miimon 100
> +      bond-mode 802.3ad
> +      bond-xmit-hash-policy layer2+3
>  
>  iface bond0.5 inet manual
>  
> @@ -534,15 +534,15 @@ iface vmbr0v5 inet static
>          address  10.10.10.2
>          netmask  255.255.255.0
>          gateway  10.10.10.1
> -        bridge_ports bond0.5
> -        bridge_stp off
> -        bridge_fd 0
> +        bridge-ports bond0.5
> +        bridge-stp off
> +        bridge-fd 0
>  
>  auto vmbr0
>  iface vmbr0 inet manual
> -        bridge_ports bond0
> -        bridge_stp off
> -        bridge_fd 0
> +        bridge-ports bond0
> +        bridge-stp off
> +        bridge-fd 0
>  
>  ----
>  
> diff --git a/pvecm.adoc b/pvecm.adoc
> index 4bf2f59..2866582 100644
> --- a/pvecm.adoc
> +++ b/pvecm.adoc
> @@ -1256,9 +1256,9 @@ iface vmbr0 inet static
>      address 192.X.Y.57
>      netmask 255.255.250.0
>      gateway 192.X.Y.1
> -    bridge_ports eno1
> -    bridge_stp off
> -    bridge_fd 0
> +    bridge-ports eno1
> +    bridge-stp off
> +    bridge-fd 0
>  
>  # cluster network
>  auto eno2
> -- 
> 2.20.1
> 
> 
> _______________________________________________
> pve-devel mailing list
> pve-devel@pve.proxmox.com
> https://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel
> 
> 




           reply	other threads:[~2020-08-11 13:34 UTC|newest]

Thread overview: expand[flat|nested]  mbox.gz  Atom feed
 [parent not found: <20200513144654.31184-1-a.lauterer@proxmox.com>]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1597152815.2ayc6cublg.astroid@nora.none \
    --to=f.gruenbichler@proxmox.com \
    --cc=pve-devel@pve.proxmox.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal