diff options
Diffstat (limited to 'src/conf_mode/dhcp_relay.py')
-rwxr-xr-x | src/conf_mode/dhcp_relay.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/dhcp_relay.py b/src/conf_mode/dhcp_relay.py index 1b2abed9e..73e0153df 100755 --- a/src/conf_mode/dhcp_relay.py +++ b/src/conf_mode/dhcp_relay.py @@ -95,7 +95,7 @@ def get_config(): # # Available in DHCPv4 mode only: if conf.exists('relay-agents-packets'): - pkt = '-m ' + conf.return_value('relay-agents-packets') + pkt = '-a -m ' + conf.return_value('relay-agents-packets') relay['options'].append(pkt) return relay |