mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 19:51:17 +00:00
Merge pull request #1430 from wkennington/mtu
network-interfaces: Add mtu setting support
This commit is contained in:
commit
3668970f7f
|
@ -58,6 +58,15 @@ let
|
|||
'';
|
||||
};
|
||||
|
||||
mtu = mkOption {
|
||||
default = null;
|
||||
example = 9000;
|
||||
type = types.nullOr types.int;
|
||||
description = ''
|
||||
MTU size for packets leaving the interface. Leave empty to use the default.
|
||||
'';
|
||||
};
|
||||
|
||||
virtual = mkOption {
|
||||
default = false;
|
||||
type = types.bool;
|
||||
|
@ -381,6 +390,11 @@ in
|
|||
echo "setting MAC address to ${i.macAddress}..."
|
||||
ip link set "${i.name}" address "${i.macAddress}"
|
||||
''
|
||||
+ optionalString (i.mtu != null)
|
||||
''
|
||||
echo "setting MTU to ${toString i.mtu}..."
|
||||
ip link set "${i.name}" mtu "${toString i.mtu}"
|
||||
''
|
||||
+ optionalString (i.ipAddress != null)
|
||||
''
|
||||
cur=$(ip -4 -o a show dev "${i.name}" | awk '{print $4}')
|
||||
|
|
Loading…
Reference in a new issue