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), }