1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-08-23 13:49:28 +03:00

Bump version 4.7.80

This commit is contained in:
Jaime Melis
2014-07-14 10:14:08 +02:00
parent cb11d68b04
commit 98115791da
9 changed files with 15 additions and 9 deletions

View File

@ -372,7 +372,7 @@ public:
*/
static string code_version()
{
return "4.6.0"; // bump version
return "4.7.80"; // bump version
}
/**

View File

@ -21,7 +21,7 @@ require 'tmpdir'
DEFAULTS={
:version => "4.6.0",
:version => "4.7.80",
:date => Time.now.strftime("%Y-%m-%d"),
:dependencies => []
}

View File

@ -50,7 +50,7 @@ end
module CloudClient
# OpenNebula version
VERSION = '4.6.0'
VERSION = '4.7.80'
# #########################################################################
# Default location for the authentication file

View File

@ -1 +1 @@
4.6.0
4.7.80

View File

@ -32,7 +32,7 @@ public class OneSystem
private static final String GROUP_QUOTA_INFO = "groupquota.info";
private static final String GROUP_QUOTA_UPDATE = "groupquota.update";
public static final String VERSION = "4.6.0";
public static final String VERSION = "4.7.80";
public OneSystem(Client client)
{

View File

@ -56,5 +56,5 @@ require 'opennebula/system'
module OpenNebula
# OpenNebula version
VERSION = '4.6.0'
VERSION = '4.7.80'
end

View File

@ -93,7 +93,7 @@
</div>
</div>
<div id="footer" class="text-center large-10 columns right">
<a href="http://opennebula.org" target="_blank">OpenNebula 4.6.0</a> by <a href="http://c12g.com" target="_blank">C12G Labs</a>.
<a href="http://opennebula.org" target="_blank">OpenNebula 4.7.80</a> by <a href="http://c12g.com" target="_blank">C12G Labs</a>.
</div>
<div class="large-12 columns" id="dialogs"></div>
</div>

View File

@ -26,7 +26,7 @@
<div id="footer" style="overflow:visible;">
<a href="http://opennebula.org" target="_blank">OpenNebula 4.6.0</a> by <a href="http://c12g.com" target="_blank">C12G Labs</a>.
<a href="http://opennebula.org" target="_blank">OpenNebula 4.7.80</a> by <a href="http://c12g.com" target="_blank">C12G Labs</a>.
</div>
</body>
</html>

View File

@ -48,6 +48,9 @@ class OpenvSwitchVLAN < OpenNebulaNetwork
tag_trunk_vlans
end
# Prevent ARP Cache Poisining
arp_cache_poisoning
# Prevent Mac-spoofing
mac_spoofing
@ -101,9 +104,12 @@ class OpenvSwitchVLAN < OpenNebulaNetwork
end
end
def mac_spoofing
def arp_cache_poisoning
add_flow("in_port=#{port},arp,dl_src=#{@nic[:mac]}",:drop,45000)
add_flow("in_port=#{port},arp,dl_src=#{@nic[:mac]},nw_src=#{@nic[:ip]}",:normal,46000)
end
def mac_spoofing
add_flow("in_port=#{port},dl_src=#{@nic[:mac]}",:normal,40000)
add_flow("in_port=#{port}",:drop,39000)
end