diff options
Diffstat (limited to 'src')
| -rwxr-xr-x | src/conf_mode/interface-bonding.py | 7 | 
1 files changed, 2 insertions, 5 deletions
| diff --git a/src/conf_mode/interface-bonding.py b/src/conf_mode/interface-bonding.py index 01df0e3d2..6092d0732 100755 --- a/src/conf_mode/interface-bonding.py +++ b/src/conf_mode/interface-bonding.py @@ -345,11 +345,8 @@ def apply(bond):              b.del_port(intf)          # ARP link monitoring frequency, reset miimon when arp-montior is inactive -        if bond['arp_mon_intvl'] == 0: -            # reset miimon to default -            b.miimon = 250 -        else: -            b.set_arp_interval(bond['arp_mon_intvl']) +        # this is done inside BondIf automatically +        b.set_arp_interval(bond['arp_mon_intvl'])          # ARP monitor targets need to be synchronized between sysfs and CLI.          # Unfortunately an address can't be send twice to sysfs as this will | 
