]> git.proxmox.com Git - pve-docs.git/blobdiff - pve-network.adoc
fix typos and whitespace all around
[pve-docs.git] / pve-network.adoc
index 102bb8ed1e23ed72e33d8107ed9f888230a7a334..beb69ae47a2d82f7516741c6a8fb60a8a49e920b 100644 (file)
@@ -41,7 +41,7 @@ We currently use the following naming conventions for device names:
 
 * New Ethernet devices: en*, systemd network interface names.
 
-* Lagacy Ethernet devices: eth[N], where 0 ≤ N (`eth0`, `eth1`, ...)
+* Legacy Ethernet devices: eth[N], where 0 ≤ N (`eth0`, `eth1`, ...)
 They are available when Proxmox VE has been updated by an earlier version.
 
 * Bridge names: vmbr[N], where 0 ≤ N ≤ 4094 (`vmbr0` - `vmbr4094`)
@@ -54,20 +54,13 @@ They are available when Proxmox VE has been updated by an earlier version.
 This makes it easier to debug networks problems, because the device
 names implies the device type.
 
+
 Systemd Network Interface Names
 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
-Two character prefixes based on the type of interface:
-
-* en — Enoernet
-
-* sl — serial line IP (slip)
-
-* wl — wlan
-
-* ww — wwan
-
-The next characters depence on the device driver and the fact which schema matches first.
+Systemd uses the two character prefix 'en' for Ethernet network
+devices. The next characters depends on the device driver and the fact
+which schema matches first.
 
 * o<index>[n<phys_port_name>|d<dev_port>] — devices on board
 
@@ -77,19 +70,20 @@ The next characters depence on the device driver and the fact which schema match
 
 * x<MAC> — device by MAC address
 
-The most common patterns are
+The most common patterns are:
 
 * eno1 — is the first on board NIC
 
 * enp3s0f1 — is the NIC on pcibus 3 slot 0 and use the NIC function 1.
 
-For more information see link:https://github.com/systemd/systemd/blob/master/src/udev/udev-builtin-net_id.c#L20[Systemd Network Interface Names]
+For more information see https://www.freedesktop.org/wiki/Software/systemd/PredictableNetworkInterfaceNames/[Predictable Network Interface Names].
+
 
 Default Configuration using a Bridge
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 The installation program creates a single bridge named `vmbr0`, which
-is connected to the first ethernet card `eno0`. The corresponding
+is connected to the first Ethernet card `eno0`. The corresponding
 configuration in `/etc/network/interfaces` looks like this:
 
 ----
@@ -143,6 +137,7 @@ iface eno1 inet static
         address  192.168.10.2
         netmask  255.255.255.0
         gateway  192.168.10.1
+        post-up echo 1 > /proc/sys/net/ipv4/ip_forward
         post-up echo 1 > /proc/sys/net/ipv4/conf/eno1/proxy_arp
 
 
@@ -167,7 +162,7 @@ auto lo
 iface lo inet loopback
 
 auto eno0
-#real IP adress 
+#real IP address
 iface eno1 inet static
         address  192.168.10.2
         netmask  255.255.255.0
@@ -302,7 +297,7 @@ iface eno1 inet manual
 iface eno2 inet manual
 
 auto bond0
-iface bond0 inet maunal
+iface bond0 inet manual
       slaves eno1 eno2
       bond_miimon 100
       bond_mode 802.3ad
@@ -321,5 +316,5 @@ iface vmbr0 inet static
 
 ////
 TODO: explain IPv6 support?
-TODO: explan OVS
+TODO: explain OVS
 ////