Skip to content

Commit 4640b82

Browse files
author
Sheng Yang
committed
IPv6: Fix generated DUID-LL
Should be: 00:03:00:01 + <Mac>
1 parent f9a68e7 commit 4640b82

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

utils/src/com/cloud/utils/net/NetUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1193,7 +1193,7 @@ public static String getIp6FromRange(String ip6Range) {
11931193

11941194
//RFC3315, section 9.4
11951195
public static String getDuidLL(String macAddress) {
1196-
String duid = "00:03:00:06:" + macAddress;
1196+
String duid = "00:03:00:01:" + macAddress;
11971197
return duid;
11981198
}
11991199

0 commit comments

Comments
 (0)