From: Aline Manera <
ali...@br.ibm.com>
vlan brigdes aren't supported at this time so those interfaces should not be
displayed while creating a network bridge
The supported interfaces for a bridge network are: bare nic, bonding or bridge
device.
Signed-off-by: Aline Manera <
ali...@br.ibm.com>
---
src/kimchi/netinfo.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/kimchi/netinfo.py b/src/kimchi/netinfo.py
index 5a21ff4..c34b96d 100644
--- a/src/kimchi/netinfo.py
+++ b/src/kimchi/netinfo.py
@@ -157,7 +157,7 @@ def is_bare_nic(iface):
# a slave of bond.
# The bridge will not be exposed when all it's port are tap.
def all_favored_interfaces():
- return aggregated_bridges() + bare_nics() + vlans() + bondings()
+ return aggregated_bridges() + bare_nics() + bondings()
def get_interface_type(iface):
--
1.7.10.4