diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-09-24 18:56:05 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2019-09-24 21:53:25 +0200 |
commit | 09f4553ffdbf3c35696f08118d75793db33cb59b (patch) | |
tree | 8944db754488689314f5cec66cde65aba4de1642 /src/conf_mode/interface-bonding.py | |
parent | 48e5ad611bc63575eb1150024939d04eb62cf400 (diff) | |
download | vyos-1x-09f4553ffdbf3c35696f08118d75793db33cb59b.tar.gz vyos-1x-09f4553ffdbf3c35696f08118d75793db33cb59b.zip |
Python/ifconfig: T1557: refactor Interface 'arp_cache_tmo' property to set_set_arp_cache_tmo()
Diffstat (limited to 'src/conf_mode/interface-bonding.py')
-rwxr-xr-x | src/conf_mode/interface-bonding.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/interface-bonding.py b/src/conf_mode/interface-bonding.py index 0b6ac14a6..0fd19ce1e 100755 --- a/src/conf_mode/interface-bonding.py +++ b/src/conf_mode/interface-bonding.py @@ -380,7 +380,7 @@ def apply(bond): # Bonding transmit hash policy b.xmit_hash_policy = bond['hash_policy'] # configure ARP cache timeout in milliseconds - b.arp_cache_tmp = bond['ip_arp_cache_tmo'] + b.set_arp_cache_tmo(bond['ip_arp_cache_tmo']) # Enable proxy-arp on this interface b.set_proxy_arp(bond['ip_proxy_arp']) # Enable private VLAN proxy ARP on this interface |