|
@@ -122,26 +122,36 @@ func GetIfaceAddr(name string) (net.Addr, []net.Addr, error) {
|
|
|
return addrs4[0], addrs6, nil
|
|
|
}
|
|
|
|
|
|
-// GenerateRandomMAC returns a new 6-byte(48-bit) hardware address (MAC)
|
|
|
-func GenerateRandomMAC() net.HardwareAddr {
|
|
|
+func genMAC(ip net.IP) net.HardwareAddr {
|
|
|
hw := make(net.HardwareAddr, 6)
|
|
|
// The first byte of the MAC address has to comply with these rules:
|
|
|
// 1. Unicast: Set the least-significant bit to 0.
|
|
|
// 2. Address is locally administered: Set the second-least-significant bit (U/L) to 1.
|
|
|
- // 3. As "small" as possible: The veth address has to be "smaller" than the bridge address.
|
|
|
hw[0] = 0x02
|
|
|
// The first 24 bits of the MAC represent the Organizationally Unique Identifier (OUI).
|
|
|
// Since this address is locally administered, we can do whatever we want as long as
|
|
|
// it doesn't conflict with other addresses.
|
|
|
hw[1] = 0x42
|
|
|
- // Randomly generate the remaining 4 bytes (2^32)
|
|
|
- _, err := rand.Read(hw[2:])
|
|
|
- if err != nil {
|
|
|
- return nil
|
|
|
+ // Fill the remaining 4 bytes based on the input
|
|
|
+ if ip == nil {
|
|
|
+ rand.Read(hw[2:])
|
|
|
+ } else {
|
|
|
+ copy(hw[2:], ip.To4())
|
|
|
}
|
|
|
return hw
|
|
|
}
|
|
|
|
|
|
+// GenerateRandomMAC returns a new 6-byte(48-bit) hardware address (MAC)
|
|
|
+func GenerateRandomMAC() net.HardwareAddr {
|
|
|
+ return genMAC(nil)
|
|
|
+}
|
|
|
+
|
|
|
+// GenerateMACFromIP returns a locally administered MAC address where the 4 least
|
|
|
+// significant bytes are derived from the IPv4 address.
|
|
|
+func GenerateMACFromIP(ip net.IP) net.HardwareAddr {
|
|
|
+ return genMAC(ip)
|
|
|
+}
|
|
|
+
|
|
|
// GenerateRandomName returns a new name joined with a prefix. This size
|
|
|
// specified is used to truncate the randomly generated value
|
|
|
func GenerateRandomName(prefix string, size int) (string, error) {
|