@usex/mikrotik-mcp 3.22.0 → 3.24.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +4222 -2660
- package/dist/index.d.ts +15 -4
- package/dist/index.js +4153 -2640
- package/dist/ui/connected-devices.html +21 -0
- package/dist/ui/dashboard.html +2 -1
- package/dist/ui/firewall-audit.html +4 -3
- package/dist/ui/firewall.html +4 -3
- package/dist/ui/interfaces.html +4 -3
- package/dist/ui/observability.html +43 -43
- package/dist/ui/records.html +4 -3
- package/package.json +1 -1
- package/schemas/README.md +1 -1
- package/schemas/tool-catalog.json +3833 -112
- package/schemas/tools/add_bfd_configuration.json +4 -0
- package/schemas/tools/add_bgp_connection.json +70 -0
- package/schemas/tools/add_bgp_template.json +35 -0
- package/schemas/tools/add_bridge_port.json +95 -0
- package/schemas/tools/add_bridge_vlan.json +7 -0
- package/schemas/tools/add_dhcp_client.json +22 -0
- package/schemas/tools/add_dns_static.json +20 -0
- package/schemas/tools/add_graphing_interface.json +8 -0
- package/schemas/tools/add_graphing_queue.json +8 -0
- package/schemas/tools/add_graphing_resource.json +8 -0
- package/schemas/tools/add_ipv6_dhcp_client.json +12 -0
- package/schemas/tools/add_ipv6_nd.json +4 -0
- package/schemas/tools/add_ipv6_route.json +10 -0
- package/schemas/tools/add_logging_action.json +26 -0
- package/schemas/tools/add_netwatch.json +15 -0
- package/schemas/tools/add_ospf_area.json +6 -0
- package/schemas/tools/add_ospf_area_range.json +3 -0
- package/schemas/tools/add_ospf_instance.json +22 -0
- package/schemas/tools/add_ospf_interface_template.json +26 -0
- package/schemas/tools/add_ovpn_server.json +5 -0
- package/schemas/tools/add_pimsm_instance.json +36 -0
- package/schemas/tools/add_pimsm_interface_template.json +24 -0
- package/schemas/tools/add_radius_server.json +15 -0
- package/schemas/tools/add_rip_instance.json +4 -0
- package/schemas/tools/add_rip_interface_template.json +8 -0
- package/schemas/tools/add_romon_port.json +4 -0
- package/schemas/tools/add_route.json +8 -0
- package/schemas/tools/add_routing_rule.json +0 -5
- package/schemas/tools/add_script.json +4 -0
- package/schemas/tools/add_switch_rule.json +13 -0
- package/schemas/tools/add_traffic_generator_stream.json +18 -0
- package/schemas/tools/add_user_manager_limitation.json +54 -0
- package/schemas/tools/add_user_manager_router.json +7 -0
- package/schemas/tools/add_user_manager_user.json +8 -0
- package/schemas/tools/add_wireguard_peer.json +34 -0
- package/schemas/tools/allow_device.json +13 -0
- package/schemas/tools/block_device.json +17 -0
- package/schemas/tools/create_bridge.json +75 -0
- package/schemas/tools/create_certificate.json +20 -0
- package/schemas/tools/create_dhcp_network.json +23 -0
- package/schemas/tools/create_dhcp_server.json +34 -0
- package/schemas/tools/create_eoip_tunnel.json +34 -0
- package/schemas/tools/create_filter_rule.json +124 -0
- package/schemas/tools/create_gre_tunnel.json +12 -0
- package/schemas/tools/create_ipip_tunnel.json +21 -0
- package/schemas/tools/create_ipsec_identity.json +22 -1
- package/schemas/tools/create_ipsec_peer.json +6 -0
- package/schemas/tools/create_ipsec_policy.json +27 -1
- package/schemas/tools/create_ipsec_profile.json +4 -0
- package/schemas/tools/create_ipsec_proposal.json +5 -1
- package/schemas/tools/create_ipv6_dhcp_server.json +12 -0
- package/schemas/tools/create_ipv6_filter_rule.json +123 -1
- package/schemas/tools/create_ipv6_mangle_rule.json +140 -0
- package/schemas/tools/create_ipv6_nat_rule.json +135 -1
- package/schemas/tools/create_ipv6_raw_rule.json +52 -0
- package/schemas/tools/create_l2tp_client.json +42 -0
- package/schemas/tools/create_mangle_rule.json +64 -0
- package/schemas/tools/create_nat_rule.json +144 -0
- package/schemas/tools/create_ovpn_client.json +22 -0
- package/schemas/tools/create_ppp_profile.json +64 -0
- package/schemas/tools/create_ppp_secret.json +16 -0
- package/schemas/tools/create_pptp_client.json +32 -0
- package/schemas/tools/create_queue_type.json +59 -0
- package/schemas/tools/create_scheduler.json +4 -0
- package/schemas/tools/create_simple_queue.json +4 -0
- package/schemas/tools/create_sstp_client.json +46 -0
- package/schemas/tools/create_vlan_interface.json +13 -0
- package/schemas/tools/create_vxlan_tunnel.json +32 -0
- package/schemas/tools/create_wireless_interface.json +74 -0
- package/schemas/tools/get_connected_device.json +16 -0
- package/schemas/tools/get_device_traffic.json +13 -0
- package/schemas/tools/list_connected_devices.json +27 -0
- package/schemas/tools/make_device_static.json +13 -0
- package/schemas/tools/remove_device_lease.json +13 -0
- package/schemas/tools/reset_configuration.json +4 -0
- package/schemas/tools/set_device_ip.json +17 -0
- package/schemas/tools/set_device_label.json +17 -0
- package/schemas/tools/set_dhcp_client.json +22 -0
- package/schemas/tools/set_dns_servers.json +34 -0
- package/schemas/tools/set_ip_cloud.json +4 -0
- package/schemas/tools/set_ip_service.json +4 -0
- package/schemas/tools/set_l2tp_server.json +27 -0
- package/schemas/tools/set_neighbor_discovery_settings.json +12 -0
- package/schemas/tools/set_ntp_client.json +9 -0
- package/schemas/tools/set_ntp_server.json +10 -0
- package/schemas/tools/set_ovpn_server.json +5 -0
- package/schemas/tools/set_pptp_server.json +8 -0
- package/schemas/tools/set_sstp_server.json +32 -0
- package/schemas/tools/set_system_clock.json +4 -0
- package/schemas/tools/set_user_manager_settings.json +16 -0
- package/schemas/tools/update_bfd_configuration.json +3 -0
- package/schemas/tools/update_bgp_connection.json +57 -0
- package/schemas/tools/update_bridge.json +75 -0
- package/schemas/tools/update_dns_static.json +20 -0
- package/schemas/tools/update_filter_rule.json +93 -0
- package/schemas/tools/update_ipsec_peer.json +5 -0
- package/schemas/tools/update_ipsec_profile.json +3 -0
- package/schemas/tools/update_ipsec_proposal.json +3 -0
- package/schemas/tools/update_ipv6_filter_rule.json +90 -0
- package/schemas/tools/update_ipv6_mangle_rule.json +107 -0
- package/schemas/tools/update_ipv6_nat_rule.json +99 -0
- package/schemas/tools/update_ipv6_nd.json +4 -0
- package/schemas/tools/update_ipv6_raw_rule.json +39 -0
- package/schemas/tools/update_ipv6_settings.json +29 -0
- package/schemas/tools/update_mangle_rule.json +48 -0
- package/schemas/tools/update_nat_rule.json +108 -0
- package/schemas/tools/update_ospf_instance.json +22 -0
- package/schemas/tools/update_ovpn_server.json +5 -0
- package/schemas/tools/update_ppp_profile.json +64 -0
- package/schemas/tools/update_ppp_secret.json +16 -0
- package/schemas/tools/update_queue_type.json +46 -0
- package/schemas/tools/update_radius_server.json +13 -0
- package/schemas/tools/update_rip_instance.json +4 -0
- package/schemas/tools/update_route.json +8 -0
- package/schemas/tools/update_routing_rule.json +5 -0
- package/schemas/tools/update_simple_queue.json +4 -0
- package/schemas/tools/update_sniffer_settings.json +32 -0
- package/schemas/tools/update_switch.json +8 -0
- package/schemas/tools/update_switch_rule.json +10 -0
- package/schemas/tools/update_user_manager_user.json +8 -0
- package/schemas/tools/update_vlan_interface.json +13 -0
- package/schemas/tools/update_wireguard_peer.json +34 -0
- package/schemas/tools/update_wireless_interface.json +91 -0
|
@@ -17,6 +17,12 @@
|
|
|
17
17
|
"minimum": -9007199254740991,
|
|
18
18
|
"maximum": 9007199254740991
|
|
19
19
|
},
|
|
20
|
+
"remote_port": {
|
|
21
|
+
"description": "Peer TCP port (remote.port)",
|
|
22
|
+
"type": "integer",
|
|
23
|
+
"minimum": -9007199254740991,
|
|
24
|
+
"maximum": 9007199254740991
|
|
25
|
+
},
|
|
20
26
|
"as": {
|
|
21
27
|
"description": "Local AS number",
|
|
22
28
|
"type": "integer",
|
|
@@ -31,10 +37,20 @@
|
|
|
31
37
|
"description": "Local source address (local.address)",
|
|
32
38
|
"type": "string"
|
|
33
39
|
},
|
|
40
|
+
"local_port": {
|
|
41
|
+
"description": "Local TCP port (local.port)",
|
|
42
|
+
"type": "integer",
|
|
43
|
+
"minimum": -9007199254740991,
|
|
44
|
+
"maximum": 9007199254740991
|
|
45
|
+
},
|
|
34
46
|
"router_id": {
|
|
35
47
|
"description": "Override router-id for this connection",
|
|
36
48
|
"type": "string"
|
|
37
49
|
},
|
|
50
|
+
"cluster_id": {
|
|
51
|
+
"description": "Route-reflector cluster ID (cluster-id)",
|
|
52
|
+
"type": "string"
|
|
53
|
+
},
|
|
38
54
|
"templates": {
|
|
39
55
|
"description": "Template name(s) to inherit settings from",
|
|
40
56
|
"type": "string"
|
|
@@ -58,14 +74,68 @@
|
|
|
58
74
|
"description": "default, force-self, or propagate",
|
|
59
75
|
"type": "string"
|
|
60
76
|
},
|
|
77
|
+
"use_bfd": {
|
|
78
|
+
"description": "Use BFD for fast failure detection (use-bfd)",
|
|
79
|
+
"type": "boolean"
|
|
80
|
+
},
|
|
81
|
+
"tcp_md5_key": {
|
|
82
|
+
"description": "TCP MD5 authentication key (tcp-md5-key)",
|
|
83
|
+
"type": "string"
|
|
84
|
+
},
|
|
85
|
+
"connect": {
|
|
86
|
+
"description": "Actively initiate the TCP session (connect)",
|
|
87
|
+
"type": "boolean"
|
|
88
|
+
},
|
|
89
|
+
"listen": {
|
|
90
|
+
"description": "Accept incoming TCP session (listen)",
|
|
91
|
+
"type": "boolean"
|
|
92
|
+
},
|
|
61
93
|
"input_filter": {
|
|
62
94
|
"description": "Routing filter chain for inbound routes (input.filter)",
|
|
63
95
|
"type": "string"
|
|
64
96
|
},
|
|
97
|
+
"input_accept_nlri": {
|
|
98
|
+
"description": "Address list of accepted NLRI prefixes (input.accept-nlri)",
|
|
99
|
+
"type": "string"
|
|
100
|
+
},
|
|
101
|
+
"input_allow_as": {
|
|
102
|
+
"description": "Number of times own AS may appear in AS-path (input.allow-as)",
|
|
103
|
+
"type": "integer",
|
|
104
|
+
"minimum": -9007199254740991,
|
|
105
|
+
"maximum": 9007199254740991
|
|
106
|
+
},
|
|
107
|
+
"input_ignore_as_path_len": {
|
|
108
|
+
"description": "Ignore AS-path length in best-path selection (input.ignore-as-path-len)",
|
|
109
|
+
"type": "boolean"
|
|
110
|
+
},
|
|
65
111
|
"output_filter": {
|
|
66
112
|
"description": "Routing filter chain for outbound routes (output.filter)",
|
|
67
113
|
"type": "string"
|
|
68
114
|
},
|
|
115
|
+
"output_network": {
|
|
116
|
+
"description": "Address list of networks to originate/advertise (output.network)",
|
|
117
|
+
"type": "string"
|
|
118
|
+
},
|
|
119
|
+
"output_default_originate": {
|
|
120
|
+
"description": "Advertise a default route: never, if-installed, or always (output.default-originate)",
|
|
121
|
+
"type": "string"
|
|
122
|
+
},
|
|
123
|
+
"output_redistribute": {
|
|
124
|
+
"description": "Comma list of route sources to redistribute, e.g. connected,static (output.redistribute)",
|
|
125
|
+
"type": "string"
|
|
126
|
+
},
|
|
127
|
+
"output_as_override": {
|
|
128
|
+
"description": "Replace peer AS in AS-path with local AS (output.as-override)",
|
|
129
|
+
"type": "boolean"
|
|
130
|
+
},
|
|
131
|
+
"output_keep_sent_attributes": {
|
|
132
|
+
"description": "Retain sent path attributes for inspection (output.keep-sent-attributes)",
|
|
133
|
+
"type": "boolean"
|
|
134
|
+
},
|
|
135
|
+
"output_no_client_to_client_reflection": {
|
|
136
|
+
"description": "Disable route-reflector client-to-client reflection (output.no-client-to-client-reflection)",
|
|
137
|
+
"type": "boolean"
|
|
138
|
+
},
|
|
69
139
|
"routing_table": {
|
|
70
140
|
"description": "RIB to install learned routes into",
|
|
71
141
|
"type": "string"
|
|
@@ -16,16 +16,51 @@
|
|
|
16
16
|
"router_id": {
|
|
17
17
|
"type": "string"
|
|
18
18
|
},
|
|
19
|
+
"cluster_id": {
|
|
20
|
+
"description": "Route-reflector cluster ID (cluster-id)",
|
|
21
|
+
"type": "string"
|
|
22
|
+
},
|
|
19
23
|
"address_families": {
|
|
20
24
|
"description": "e.g. \"ip,ipv6\"",
|
|
21
25
|
"type": "string"
|
|
22
26
|
},
|
|
27
|
+
"hold_time": {
|
|
28
|
+
"description": "e.g. \"3m\" or \"180s\"",
|
|
29
|
+
"type": "string"
|
|
30
|
+
},
|
|
31
|
+
"keepalive_time": {
|
|
32
|
+
"type": "string"
|
|
33
|
+
},
|
|
34
|
+
"multihop": {
|
|
35
|
+
"description": "Allow non-directly-connected peers",
|
|
36
|
+
"type": "boolean"
|
|
37
|
+
},
|
|
38
|
+
"nexthop_choice": {
|
|
39
|
+
"description": "default, force-self, or propagate",
|
|
40
|
+
"type": "string"
|
|
41
|
+
},
|
|
42
|
+
"use_bfd": {
|
|
43
|
+
"description": "Use BFD for fast failure detection (use-bfd)",
|
|
44
|
+
"type": "boolean"
|
|
45
|
+
},
|
|
23
46
|
"input_filter": {
|
|
24
47
|
"type": "string"
|
|
25
48
|
},
|
|
26
49
|
"output_filter": {
|
|
27
50
|
"type": "string"
|
|
28
51
|
},
|
|
52
|
+
"output_network": {
|
|
53
|
+
"description": "Address list of networks to originate/advertise (output.network)",
|
|
54
|
+
"type": "string"
|
|
55
|
+
},
|
|
56
|
+
"output_default_originate": {
|
|
57
|
+
"description": "Advertise a default route: never, if-installed, or always (output.default-originate)",
|
|
58
|
+
"type": "string"
|
|
59
|
+
},
|
|
60
|
+
"output_redistribute": {
|
|
61
|
+
"description": "Comma list of route sources to redistribute, e.g. connected,static (output.redistribute)",
|
|
62
|
+
"type": "string"
|
|
63
|
+
},
|
|
29
64
|
"routing_table": {
|
|
30
65
|
"type": "string"
|
|
31
66
|
},
|
|
@@ -23,6 +23,101 @@
|
|
|
23
23
|
"hw": {
|
|
24
24
|
"description": "Use hardware offload for this port",
|
|
25
25
|
"type": "boolean"
|
|
26
|
+
},
|
|
27
|
+
"disabled": {
|
|
28
|
+
"description": "Disable this bridge port",
|
|
29
|
+
"type": "boolean"
|
|
30
|
+
},
|
|
31
|
+
"frame_types": {
|
|
32
|
+
"description": "Accepted frame types on ingress",
|
|
33
|
+
"type": "string",
|
|
34
|
+
"enum": ["admit-all", "admit-only-untagged-and-priority-tagged", "admit-only-vlan-tagged"]
|
|
35
|
+
},
|
|
36
|
+
"ingress_filtering": {
|
|
37
|
+
"description": "Drop ingress frames tagged with a VLAN the port isn't a member of",
|
|
38
|
+
"type": "boolean"
|
|
39
|
+
},
|
|
40
|
+
"tag_stacking": {
|
|
41
|
+
"description": "Force an extra VLAN tag (Q-in-Q) on ingress",
|
|
42
|
+
"type": "boolean"
|
|
43
|
+
},
|
|
44
|
+
"priority": {
|
|
45
|
+
"description": "STP port priority, e.g. '0x80'",
|
|
46
|
+
"type": "string"
|
|
47
|
+
},
|
|
48
|
+
"path_cost": {
|
|
49
|
+
"description": "STP path cost for this port",
|
|
50
|
+
"type": "integer",
|
|
51
|
+
"minimum": -9007199254740991,
|
|
52
|
+
"maximum": 9007199254740991
|
|
53
|
+
},
|
|
54
|
+
"internal_path_cost": {
|
|
55
|
+
"description": "MSTP internal path cost",
|
|
56
|
+
"type": "integer",
|
|
57
|
+
"minimum": -9007199254740991,
|
|
58
|
+
"maximum": 9007199254740991
|
|
59
|
+
},
|
|
60
|
+
"horizon": {
|
|
61
|
+
"description": "Split-horizon group number for forwarding isolation",
|
|
62
|
+
"type": "integer",
|
|
63
|
+
"minimum": -9007199254740991,
|
|
64
|
+
"maximum": 9007199254740991
|
|
65
|
+
},
|
|
66
|
+
"learn": {
|
|
67
|
+
"description": "MAC address learning mode",
|
|
68
|
+
"type": "string",
|
|
69
|
+
"enum": ["auto", "yes", "no"]
|
|
70
|
+
},
|
|
71
|
+
"edge": {
|
|
72
|
+
"description": "STP edge-port setting",
|
|
73
|
+
"type": "string",
|
|
74
|
+
"enum": ["auto", "no", "yes", "no-discover", "yes-discover"]
|
|
75
|
+
},
|
|
76
|
+
"point_to_point": {
|
|
77
|
+
"description": "STP point-to-point link setting",
|
|
78
|
+
"type": "string",
|
|
79
|
+
"enum": ["auto", "yes", "no"]
|
|
80
|
+
},
|
|
81
|
+
"auto_isolate": {
|
|
82
|
+
"description": "Keep port in discarding until a BPDU is received",
|
|
83
|
+
"type": "boolean"
|
|
84
|
+
},
|
|
85
|
+
"bpdu_guard": {
|
|
86
|
+
"description": "Disable the port if it receives a BPDU",
|
|
87
|
+
"type": "boolean"
|
|
88
|
+
},
|
|
89
|
+
"restricted_role": {
|
|
90
|
+
"description": "Exclude port from becoming the root port",
|
|
91
|
+
"type": "boolean"
|
|
92
|
+
},
|
|
93
|
+
"restricted_tcn": {
|
|
94
|
+
"description": "Block topology change notifications from this port",
|
|
95
|
+
"type": "boolean"
|
|
96
|
+
},
|
|
97
|
+
"trusted": {
|
|
98
|
+
"description": "Trust DHCP server replies on this port (DHCP snooping)",
|
|
99
|
+
"type": "boolean"
|
|
100
|
+
},
|
|
101
|
+
"multicast_router": {
|
|
102
|
+
"description": "IGMP-snooping multicast router state",
|
|
103
|
+
"type": "string",
|
|
104
|
+
"enum": ["disabled", "permanent", "temporary-query"]
|
|
105
|
+
},
|
|
106
|
+
"fast_leave": {
|
|
107
|
+
"description": "IGMP-snooping fast leave",
|
|
108
|
+
"type": "boolean"
|
|
109
|
+
},
|
|
110
|
+
"unknown_unicast_flood": {
|
|
111
|
+
"description": "Flood unknown-unicast frames to this port",
|
|
112
|
+
"type": "boolean"
|
|
113
|
+
},
|
|
114
|
+
"unknown_multicast_flood": {
|
|
115
|
+
"description": "Flood unknown-multicast frames to this port",
|
|
116
|
+
"type": "boolean"
|
|
117
|
+
},
|
|
118
|
+
"broadcast_flood": {
|
|
119
|
+
"description": "Flood broadcast frames to this port",
|
|
120
|
+
"type": "boolean"
|
|
26
121
|
}
|
|
27
122
|
},
|
|
28
123
|
"required": ["bridge", "interface"],
|
|
@@ -18,6 +18,13 @@
|
|
|
18
18
|
"untagged": {
|
|
19
19
|
"description": "Comma-separated untagged interfaces",
|
|
20
20
|
"type": "string"
|
|
21
|
+
},
|
|
22
|
+
"comment": {
|
|
23
|
+
"type": "string"
|
|
24
|
+
},
|
|
25
|
+
"disabled": {
|
|
26
|
+
"description": "Disable this VLAN table entry",
|
|
27
|
+
"type": "boolean"
|
|
21
28
|
}
|
|
22
29
|
},
|
|
23
30
|
"required": ["bridge", "vlan_ids"],
|
|
@@ -12,6 +12,12 @@
|
|
|
12
12
|
"description": "Install the received default gateway",
|
|
13
13
|
"type": "boolean"
|
|
14
14
|
},
|
|
15
|
+
"default_route_distance": {
|
|
16
|
+
"description": "Administrative distance of the installed default route",
|
|
17
|
+
"type": "integer",
|
|
18
|
+
"minimum": -9007199254740991,
|
|
19
|
+
"maximum": 9007199254740991
|
|
20
|
+
},
|
|
15
21
|
"use_peer_dns": {
|
|
16
22
|
"default": true,
|
|
17
23
|
"type": "boolean"
|
|
@@ -20,6 +26,22 @@
|
|
|
20
26
|
"default": true,
|
|
21
27
|
"type": "boolean"
|
|
22
28
|
},
|
|
29
|
+
"dhcp_options": {
|
|
30
|
+
"description": "Comma-separated DHCP options to send, e.g. 'hostname,clientid'",
|
|
31
|
+
"type": "string"
|
|
32
|
+
},
|
|
33
|
+
"client_id": {
|
|
34
|
+
"description": "Override the DHCP client identifier sent to the server",
|
|
35
|
+
"type": "string"
|
|
36
|
+
},
|
|
37
|
+
"host_name": {
|
|
38
|
+
"description": "Host name sent to the DHCP server",
|
|
39
|
+
"type": "string"
|
|
40
|
+
},
|
|
41
|
+
"script": {
|
|
42
|
+
"description": "Script run on lease bound/released",
|
|
43
|
+
"type": "string"
|
|
44
|
+
},
|
|
23
45
|
"disabled": {
|
|
24
46
|
"default": false,
|
|
25
47
|
"type": "boolean"
|
|
@@ -6,12 +6,32 @@
|
|
|
6
6
|
"name": {
|
|
7
7
|
"type": "string"
|
|
8
8
|
},
|
|
9
|
+
"type": {
|
|
10
|
+
"description": "Record type, e.g. \"A\", \"AAAA\", \"CNAME\", \"NS\", \"FWD\", \"MX\", \"SRV\", \"TXT\"",
|
|
11
|
+
"type": "string"
|
|
12
|
+
},
|
|
9
13
|
"address": {
|
|
10
14
|
"type": "string"
|
|
11
15
|
},
|
|
12
16
|
"cname": {
|
|
13
17
|
"type": "string"
|
|
14
18
|
},
|
|
19
|
+
"ns": {
|
|
20
|
+
"description": "Name server FQDN for an NS-type record",
|
|
21
|
+
"type": "string"
|
|
22
|
+
},
|
|
23
|
+
"forward_to": {
|
|
24
|
+
"description": "DNS server to forward to for a FWD-type record",
|
|
25
|
+
"type": "string"
|
|
26
|
+
},
|
|
27
|
+
"match_subdomain": {
|
|
28
|
+
"description": "Also match all subdomains of name/regexp",
|
|
29
|
+
"type": "boolean"
|
|
30
|
+
},
|
|
31
|
+
"address_list": {
|
|
32
|
+
"description": "Add resolved addresses to this firewall address-list",
|
|
33
|
+
"type": "string"
|
|
34
|
+
},
|
|
15
35
|
"mx_preference": {
|
|
16
36
|
"type": "integer",
|
|
17
37
|
"minimum": -9007199254740991,
|
|
@@ -14,6 +14,14 @@
|
|
|
14
14
|
},
|
|
15
15
|
"store_on_disk": {
|
|
16
16
|
"type": "boolean"
|
|
17
|
+
},
|
|
18
|
+
"disabled": {
|
|
19
|
+
"description": "Whether the graphing rule is disabled",
|
|
20
|
+
"type": "boolean"
|
|
21
|
+
},
|
|
22
|
+
"comment": {
|
|
23
|
+
"description": "Free-text comment for the rule",
|
|
24
|
+
"type": "string"
|
|
17
25
|
}
|
|
18
26
|
},
|
|
19
27
|
"required": ["interface"],
|
|
@@ -13,6 +13,14 @@
|
|
|
13
13
|
},
|
|
14
14
|
"store_on_disk": {
|
|
15
15
|
"type": "boolean"
|
|
16
|
+
},
|
|
17
|
+
"disabled": {
|
|
18
|
+
"description": "Whether the graphing rule is disabled",
|
|
19
|
+
"type": "boolean"
|
|
20
|
+
},
|
|
21
|
+
"comment": {
|
|
22
|
+
"description": "Free-text comment for the rule",
|
|
23
|
+
"type": "string"
|
|
16
24
|
}
|
|
17
25
|
},
|
|
18
26
|
"required": ["simple_queue"],
|
|
@@ -8,6 +8,14 @@
|
|
|
8
8
|
},
|
|
9
9
|
"store_on_disk": {
|
|
10
10
|
"type": "boolean"
|
|
11
|
+
},
|
|
12
|
+
"disabled": {
|
|
13
|
+
"description": "Whether the graphing rule is disabled",
|
|
14
|
+
"type": "boolean"
|
|
15
|
+
},
|
|
16
|
+
"comment": {
|
|
17
|
+
"description": "Free-text comment for the rule",
|
|
18
|
+
"type": "string"
|
|
11
19
|
}
|
|
12
20
|
},
|
|
13
21
|
"additionalProperties": false
|
|
@@ -44,6 +44,18 @@
|
|
|
44
44
|
"description": "Comma-separated custom DHCP option names",
|
|
45
45
|
"type": "string"
|
|
46
46
|
},
|
|
47
|
+
"use_interface_duid": {
|
|
48
|
+
"description": "Use the interface MAC address to generate the DUID instead of the system DUID",
|
|
49
|
+
"type": "boolean"
|
|
50
|
+
},
|
|
51
|
+
"custom_duid": {
|
|
52
|
+
"description": "Override the DUID with a custom hex value, e.g. '0x00010001...'",
|
|
53
|
+
"type": "string"
|
|
54
|
+
},
|
|
55
|
+
"script": {
|
|
56
|
+
"description": "RouterOS script run on lease bind/release/renew events",
|
|
57
|
+
"type": "string"
|
|
58
|
+
},
|
|
47
59
|
"comment": {
|
|
48
60
|
"type": "string"
|
|
49
61
|
},
|
|
@@ -43,6 +43,16 @@
|
|
|
43
43
|
"vrf_interface": {
|
|
44
44
|
"type": "string"
|
|
45
45
|
},
|
|
46
|
+
"route_tag": {
|
|
47
|
+
"description": "Route tag for matching in routing filters",
|
|
48
|
+
"type": "integer",
|
|
49
|
+
"minimum": -9007199254740991,
|
|
50
|
+
"maximum": 9007199254740991
|
|
51
|
+
},
|
|
52
|
+
"suppress_hw_offload": {
|
|
53
|
+
"description": "Disable hardware offloading for this route",
|
|
54
|
+
"type": "boolean"
|
|
55
|
+
},
|
|
46
56
|
"comment": {
|
|
47
57
|
"type": "string"
|
|
48
58
|
},
|
|
@@ -22,6 +22,10 @@
|
|
|
22
22
|
"minimum": -9007199254740991,
|
|
23
23
|
"maximum": 9007199254740991
|
|
24
24
|
},
|
|
25
|
+
"src_address": {
|
|
26
|
+
"description": "Source address used when sending to remote syslog (target=remote)",
|
|
27
|
+
"type": "string"
|
|
28
|
+
},
|
|
25
29
|
"bsd_syslog": {
|
|
26
30
|
"description": "Use BSD-style syslog format",
|
|
27
31
|
"type": "boolean"
|
|
@@ -32,6 +36,10 @@
|
|
|
32
36
|
"syslog_severity": {
|
|
33
37
|
"type": "string"
|
|
34
38
|
},
|
|
39
|
+
"syslog_time_format": {
|
|
40
|
+
"description": "Syslog timestamp format, e.g. 'bsd' or 'iso8601'",
|
|
41
|
+
"type": "string"
|
|
42
|
+
},
|
|
35
43
|
"disk_file_name": {
|
|
36
44
|
"description": "File name for target=disk",
|
|
37
45
|
"type": "string"
|
|
@@ -41,12 +49,30 @@
|
|
|
41
49
|
"minimum": -9007199254740991,
|
|
42
50
|
"maximum": 9007199254740991
|
|
43
51
|
},
|
|
52
|
+
"disk_file_count": {
|
|
53
|
+
"description": "Number of files used to store log (target=disk)",
|
|
54
|
+
"type": "integer",
|
|
55
|
+
"minimum": -9007199254740991,
|
|
56
|
+
"maximum": 9007199254740991
|
|
57
|
+
},
|
|
58
|
+
"disk_stop_on_full": {
|
|
59
|
+
"description": "Stop saving once disk-lines-per-file is reached (target=disk)",
|
|
60
|
+
"type": "boolean"
|
|
61
|
+
},
|
|
44
62
|
"memory_lines": {
|
|
45
63
|
"description": "Lines kept for target=memory",
|
|
46
64
|
"type": "integer",
|
|
47
65
|
"minimum": -9007199254740991,
|
|
48
66
|
"maximum": 9007199254740991
|
|
49
67
|
},
|
|
68
|
+
"memory_stop_on_full": {
|
|
69
|
+
"description": "Stop saving once memory-lines is reached (target=memory)",
|
|
70
|
+
"type": "boolean"
|
|
71
|
+
},
|
|
72
|
+
"remember": {
|
|
73
|
+
"description": "Keep messages not yet displayed in console (target=memory)",
|
|
74
|
+
"type": "boolean"
|
|
75
|
+
},
|
|
50
76
|
"email_to": {
|
|
51
77
|
"description": "Recipient address for target=email",
|
|
52
78
|
"type": "string"
|
|
@@ -7,6 +7,21 @@
|
|
|
7
7
|
"type": "string",
|
|
8
8
|
"description": "Host to monitor"
|
|
9
9
|
},
|
|
10
|
+
"type": {
|
|
11
|
+
"description": "Probe type: simple, icmp, tcp-conn, or http-get",
|
|
12
|
+
"type": "string",
|
|
13
|
+
"enum": ["simple", "icmp", "tcp-conn", "http-get"]
|
|
14
|
+
},
|
|
15
|
+
"port": {
|
|
16
|
+
"description": "Target port (tcp-conn/http-get types)",
|
|
17
|
+
"type": "integer",
|
|
18
|
+
"minimum": -9007199254740991,
|
|
19
|
+
"maximum": 9007199254740991
|
|
20
|
+
},
|
|
21
|
+
"src_address": {
|
|
22
|
+
"description": "Source address for the probe",
|
|
23
|
+
"type": "string"
|
|
24
|
+
},
|
|
10
25
|
"interval": {
|
|
11
26
|
"description": "Probe interval, e.g. '00:00:10'",
|
|
12
27
|
"type": "string"
|
|
@@ -23,6 +23,12 @@
|
|
|
23
23
|
"description": "Make a totally-stubby/NSSA area (block summary LSAs)",
|
|
24
24
|
"type": "boolean"
|
|
25
25
|
},
|
|
26
|
+
"default_cost": {
|
|
27
|
+
"description": "Cost of the default route an ABR injects into a stub/NSSA area",
|
|
28
|
+
"type": "integer",
|
|
29
|
+
"minimum": -9007199254740991,
|
|
30
|
+
"maximum": 9007199254740991
|
|
31
|
+
},
|
|
26
32
|
"comment": {
|
|
27
33
|
"type": "string"
|
|
28
34
|
},
|
|
@@ -37,6 +37,28 @@
|
|
|
37
37
|
"description": "never, if-installed, or always",
|
|
38
38
|
"type": "string"
|
|
39
39
|
},
|
|
40
|
+
"domain_id": {
|
|
41
|
+
"description": "OSPF domain ID (MPLS VPN PE-CE OSPF)",
|
|
42
|
+
"type": "string"
|
|
43
|
+
},
|
|
44
|
+
"domain_tag": {
|
|
45
|
+
"description": "OSPF domain tag (MPLS VPN PE-CE OSPF)",
|
|
46
|
+
"type": "integer",
|
|
47
|
+
"minimum": -9007199254740991,
|
|
48
|
+
"maximum": 9007199254740991
|
|
49
|
+
},
|
|
50
|
+
"use_dn": {
|
|
51
|
+
"description": "Use/ignore DN bit on OSPF routes (MPLS VPN)",
|
|
52
|
+
"type": "boolean"
|
|
53
|
+
},
|
|
54
|
+
"mpls_te_area": {
|
|
55
|
+
"description": "Area used for MPLS traffic engineering",
|
|
56
|
+
"type": "string"
|
|
57
|
+
},
|
|
58
|
+
"mpls_te_address": {
|
|
59
|
+
"description": "Router address advertised for MPLS TE",
|
|
60
|
+
"type": "string"
|
|
61
|
+
},
|
|
40
62
|
"comment": {
|
|
41
63
|
"type": "string"
|
|
42
64
|
},
|
|
@@ -42,6 +42,32 @@
|
|
|
42
42
|
"description": "e.g. \"40s\"",
|
|
43
43
|
"type": "string"
|
|
44
44
|
},
|
|
45
|
+
"retransmit_interval": {
|
|
46
|
+
"description": "Interval between LSA retransmissions, e.g. \"5s\"",
|
|
47
|
+
"type": "string"
|
|
48
|
+
},
|
|
49
|
+
"transmit_delay": {
|
|
50
|
+
"description": "Estimated LSA transmit delay, e.g. \"1s\"",
|
|
51
|
+
"type": "string"
|
|
52
|
+
},
|
|
53
|
+
"instance_id": {
|
|
54
|
+
"description": "OSPF instance-id carried in hello packets",
|
|
55
|
+
"type": "integer",
|
|
56
|
+
"minimum": -9007199254740991,
|
|
57
|
+
"maximum": 9007199254740991
|
|
58
|
+
},
|
|
59
|
+
"prefix_list": {
|
|
60
|
+
"description": "Prefix-list name filtering which connected networks are advertised",
|
|
61
|
+
"type": "string"
|
|
62
|
+
},
|
|
63
|
+
"vlink_neighbor_id": {
|
|
64
|
+
"description": "Virtual-link remote router-id (type=virtual-link)",
|
|
65
|
+
"type": "string"
|
|
66
|
+
},
|
|
67
|
+
"vlink_transit_area": {
|
|
68
|
+
"description": "Transit area the virtual-link traverses (type=virtual-link)",
|
|
69
|
+
"type": "string"
|
|
70
|
+
},
|
|
45
71
|
"auth": {
|
|
46
72
|
"type": "string",
|
|
47
73
|
"enum": ["simple", "md5", "sha1", "sha256", "sha384", "sha512"]
|
|
@@ -41,6 +41,11 @@
|
|
|
41
41
|
"description": "Comma-separated, e.g. 'aes256-cbc,aes256-gcm'",
|
|
42
42
|
"type": "string"
|
|
43
43
|
},
|
|
44
|
+
"tls_version": {
|
|
45
|
+
"description": "Accepted TLS version",
|
|
46
|
+
"type": "string",
|
|
47
|
+
"enum": ["any", "only-1.2"]
|
|
48
|
+
},
|
|
44
49
|
"max_mtu": {
|
|
45
50
|
"type": "integer",
|
|
46
51
|
"minimum": -9007199254740991,
|
|
@@ -20,6 +20,42 @@
|
|
|
20
20
|
"description": "Static RP-set name, if used",
|
|
21
21
|
"type": "string"
|
|
22
22
|
},
|
|
23
|
+
"ssm_range": {
|
|
24
|
+
"description": "Source-Specific Multicast group range(s) for this instance",
|
|
25
|
+
"type": "string"
|
|
26
|
+
},
|
|
27
|
+
"rp_hash_mask_length": {
|
|
28
|
+
"description": "RP hash mask length for group-to-RP mapping",
|
|
29
|
+
"type": "integer",
|
|
30
|
+
"minimum": -9007199254740991,
|
|
31
|
+
"maximum": 9007199254740991
|
|
32
|
+
},
|
|
33
|
+
"rp_static_override": {
|
|
34
|
+
"description": "Static RP entries override dynamically learned (BSR) RPs",
|
|
35
|
+
"type": "boolean"
|
|
36
|
+
},
|
|
37
|
+
"switch_to_spt": {
|
|
38
|
+
"description": "Switch from the shared (RP) tree to the shortest-path tree",
|
|
39
|
+
"type": "boolean"
|
|
40
|
+
},
|
|
41
|
+
"switch_to_spt_bytes": {
|
|
42
|
+
"description": "Traffic threshold in bytes before switching to the SPT",
|
|
43
|
+
"type": "integer",
|
|
44
|
+
"minimum": -9007199254740991,
|
|
45
|
+
"maximum": 9007199254740991
|
|
46
|
+
},
|
|
47
|
+
"switch_to_spt_interval": {
|
|
48
|
+
"description": "SPT switchover measurement interval, e.g. \"1m\"",
|
|
49
|
+
"type": "string"
|
|
50
|
+
},
|
|
51
|
+
"bsm_forward_back": {
|
|
52
|
+
"description": "Forward bootstrap (BSM) messages back out the receiving interface",
|
|
53
|
+
"type": "boolean"
|
|
54
|
+
},
|
|
55
|
+
"crp_advertise_contained": {
|
|
56
|
+
"description": "Candidate-RP advertises only contained group ranges",
|
|
57
|
+
"type": "boolean"
|
|
58
|
+
},
|
|
23
59
|
"comment": {
|
|
24
60
|
"type": "string"
|
|
25
61
|
},
|