Displaying 1 result from an estimated 1 matches for "eth_vlan_name".
2010 Jul 21
1
[PATCH] Add support for tagged VLAN
...n
                      nic.netmask, nic.broadcast,
                      nic.gateway)
           add_nic(result, nic.mac, iface_name)
+	
+	  # process the vlan tagging
+
+          nic.network.usages.map do |usage|
+	    usage.networks.map do |net|
+	      if net.type == "Vlan"
+	        eth_vlan_name = "#{nic.interface_name}.#{net.number}" 
+                 add_bridge(result, 'none', eth_vlan_name,
+                     nic.boot_protocol, nic.ip_address,
+                     nic.netmask, nic.broadcast,
+                     nic.gateway)
+                 add_vlan(result, eth...