You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ya...@apache.org on 2013/01/31 09:43:04 UTC

[10/12] git commit: refs/heads/network-refactor - IPv6: Fix generated DUID-LL

IPv6: Fix generated DUID-LL

Should be: 00:03:00:01 + <Mac>


Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/f21a0c6f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/f21a0c6f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/f21a0c6f

Branch: refs/heads/network-refactor
Commit: f21a0c6f44ca0a6a44f7a35e88a43c3897e6fe64
Parents: 66ee943
Author: Sheng Yang <sh...@citrix.com>
Authored: Tue Jan 29 21:59:51 2013 -0800
Committer: Sheng Yang <sh...@citrix.com>
Committed: Wed Jan 30 23:48:19 2013 -0800

----------------------------------------------------------------------
 utils/src/com/cloud/utils/net/NetUtils.java |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/f21a0c6f/utils/src/com/cloud/utils/net/NetUtils.java
----------------------------------------------------------------------
diff --git a/utils/src/com/cloud/utils/net/NetUtils.java b/utils/src/com/cloud/utils/net/NetUtils.java
index b81aff6..55d7d90 100755
--- a/utils/src/com/cloud/utils/net/NetUtils.java
+++ b/utils/src/com/cloud/utils/net/NetUtils.java
@@ -1192,7 +1192,7 @@ public class NetUtils {
 
 	//RFC3315, section 9.4
 	public static String getDuidLL(String macAddress) {
-		String duid = "00:03:00:06:" + macAddress;
+		String duid = "00:03:00:01:" + macAddress;
 		return duid;
 	}