From 88dc5ff26d11dce3d17f25e39d553536582d025b Mon Sep 17 00:00:00 2001 From: Vaerh Date: Fri, 22 Sep 2023 20:52:16 +0300 Subject: [PATCH] docs: Fix arp option list --- routeros/provider_schema_helpers.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/routeros/provider_schema_helpers.go b/routeros/provider_schema_helpers.go index 2032c0cf..302dd8f6 100644 --- a/routeros/provider_schema_helpers.go +++ b/routeros/provider_schema_helpers.go @@ -112,11 +112,11 @@ var ( Optional: true, Default: "enabled", Description: `Address Resolution Protocol mode: - disabled - the interface will not use ARP - enabled - the interface will use ARP - local-proxy-arp - the router performs proxy ARP on the interface and sends replies to the same interface - proxy-arp - the router performs proxy ARP on the interface and sends replies to other interfaces - reply-only - the interface will only reply to requests originated from matching IP address/MAC address combinations which are entered as static entries in the ARP table. No dynamic entries will be automatically stored in the ARP table. Therefore for communications to be successful, a valid static entry must already exist.`, + * disabled - the interface will not use ARP + * enabled - the interface will use ARP + * local-proxy-arp - the router performs proxy ARP on the interface and sends replies to the same interface + * proxy-arp - the router performs proxy ARP on the interface and sends replies to other interfaces + * reply-only - the interface will only reply to requests originated from matching IP address/MAC address combinations which are entered as static entries in the ARP table. No dynamic entries will be automatically stored in the ARP table. Therefore for communications to be successful, a valid static entry must already exist.`, ValidateFunc: validation.StringInSlice([]string{"disabled", "enabled", "local-proxy-arp", "proxy-arp", "reply-only"}, false), }