diff options
author | Tom Gundersen <teg@jklm.no> | 2014-06-14 15:38:35 +0200 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2014-06-14 15:38:35 +0200 |
commit | 96c907429e3224289fd360b8d9c8fdc573f4363b (patch) | |
tree | 846d558be89fc1f989fe9096cb0a5e2aabed4365 /src/network/networkd-netdev-gperf.gperf | |
parent | d9876a527f62e85c3c972bc5f45ad872cb4958c1 (diff) |
networkd: netdev - allow setting MACAddress in .netdev files
It may sometimes be necessary to specify the MAC address of a netdev.
Let us set the correct one from the get-go, rather than having the
kernel generate a random one, and then change it after.
Diffstat (limited to 'src/network/networkd-netdev-gperf.gperf')
-rw-r--r-- | src/network/networkd-netdev-gperf.gperf | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/network/networkd-netdev-gperf.gperf b/src/network/networkd-netdev-gperf.gperf index dff0ae6a16..82cc8583dc 100644 --- a/src/network/networkd-netdev-gperf.gperf +++ b/src/network/networkd-netdev-gperf.gperf @@ -23,6 +23,7 @@ NetDev.Description, config_parse_string, 0, NetDev.Name, config_parse_ifname, 0, offsetof(NetDev, ifname) NetDev.Kind, config_parse_netdev_kind, 0, offsetof(NetDev, kind) NetDev.MTUBytes, config_parse_iec_size, 0, offsetof(NetDev, mtu) +NetDev.MACAddress, config_parse_hwaddr, 0, offsetof(NetDev, mac) VLAN.Id, config_parse_uint64, 0, offsetof(NetDev, vlanid) MACVLAN.Mode, config_parse_macvlan_mode, 0, offsetof(NetDev, macvlan_mode) Tunnel.Local, config_parse_tunnel_address, 0, offsetof(NetDev, tunnel_local) @@ -31,3 +32,4 @@ Tunnel.TOS, config_parse_unsigned, 0, Tunnel.TTL, config_parse_unsigned, 0, offsetof(NetDev, tunnel_ttl) Tunnel.DiscoverPathMTU, config_parse_bool, 0, offsetof(NetDev, tunnel_pmtudisc) Peer.Name, config_parse_ifname, 0, offsetof(NetDev, ifname_peer) +Peer.MACAddress, config_parse_hwaddr, 0, offsetof(NetDev, mac_peer) |