Debian und Ubuntu Integration: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Thomas (Diskussion | Beiträge) |
Thomas (Diskussion | Beiträge) |
||
| Zeile 7: | Zeile 7: | ||
ovs_type OVSBridge | ovs_type OVSBridge | ||
</pre> | </pre> | ||
| + | *auto is necessary to allow an automatic start (Ubuntu 16.04 using systemd) | ||
| + | *allow-ovs is the marker for an Openvswitch bridge. The bridge name follows, here vmbr-int | ||
| + | *iface is the well known /etc/network/interfaces identifier to start an interface configuration | ||
| + | *ovs_type defines the interface type for ovs. OVSBridge identifies an Openvswitch bridge | ||
=Links= | =Links= | ||
*http://docs.openvswitch.org/en/latest/tutorials/ovs-advanced/ | *http://docs.openvswitch.org/en/latest/tutorials/ovs-advanced/ | ||
Version vom 12. Oktober 2017, 10:57 Uhr
!!!/etc/network/interface!!!
Define a bridge
auto vmbr-int allow-ovs vmbr-int iface vmbr-int inet manual ovs_type OVSBridge
- auto is necessary to allow an automatic start (Ubuntu 16.04 using systemd)
- allow-ovs is the marker for an Openvswitch bridge. The bridge name follows, here vmbr-int
- iface is the well known /etc/network/interfaces identifier to start an interface configuration
- ovs_type defines the interface type for ovs. OVSBridge identifies an Openvswitch bridge