@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
|
@@ -23,6 +23,14 @@
|
|
|
23
23
|
"type": "integer",
|
|
24
24
|
"minimum": -9007199254740991,
|
|
25
25
|
"maximum": 9007199254740991
|
|
26
|
+
},
|
|
27
|
+
"mrru": {
|
|
28
|
+
"description": "Max packet size for MP reassembly, or 'disabled'",
|
|
29
|
+
"type": "string"
|
|
30
|
+
},
|
|
31
|
+
"keepalive_timeout": {
|
|
32
|
+
"description": "Keepalive timeout in seconds, or 'disabled'",
|
|
33
|
+
"type": "string"
|
|
26
34
|
}
|
|
27
35
|
},
|
|
28
36
|
"additionalProperties": false
|
|
@@ -28,6 +28,38 @@
|
|
|
28
28
|
},
|
|
29
29
|
"verify_client_certificate": {
|
|
30
30
|
"type": "boolean"
|
|
31
|
+
},
|
|
32
|
+
"pfs": {
|
|
33
|
+
"description": "Enable Perfect Forward Secrecy",
|
|
34
|
+
"type": "boolean"
|
|
35
|
+
},
|
|
36
|
+
"force_aes": {
|
|
37
|
+
"description": "Require clients to use AES ciphers",
|
|
38
|
+
"type": "boolean"
|
|
39
|
+
},
|
|
40
|
+
"max_mtu": {
|
|
41
|
+
"description": "Maximum transmission unit",
|
|
42
|
+
"type": "integer",
|
|
43
|
+
"minimum": -9007199254740991,
|
|
44
|
+
"maximum": 9007199254740991
|
|
45
|
+
},
|
|
46
|
+
"max_mru": {
|
|
47
|
+
"description": "Maximum receive unit",
|
|
48
|
+
"type": "integer",
|
|
49
|
+
"minimum": -9007199254740991,
|
|
50
|
+
"maximum": 9007199254740991
|
|
51
|
+
},
|
|
52
|
+
"mrru": {
|
|
53
|
+
"description": "Max receive reconstructed unit for MP",
|
|
54
|
+
"type": "integer",
|
|
55
|
+
"minimum": -9007199254740991,
|
|
56
|
+
"maximum": 9007199254740991
|
|
57
|
+
},
|
|
58
|
+
"keepalive_timeout": {
|
|
59
|
+
"description": "Seconds before an idle connection is considered down",
|
|
60
|
+
"type": "integer",
|
|
61
|
+
"minimum": -9007199254740991,
|
|
62
|
+
"maximum": 9007199254740991
|
|
31
63
|
}
|
|
32
64
|
},
|
|
33
65
|
"additionalProperties": false
|
|
@@ -11,6 +11,22 @@
|
|
|
11
11
|
"description": "TLS certificate name for RADIUS over TLS",
|
|
12
12
|
"type": "string"
|
|
13
13
|
},
|
|
14
|
+
"radsec_certificate": {
|
|
15
|
+
"description": "Certificate name for RadSec (RADIUS over TLS)",
|
|
16
|
+
"type": "string"
|
|
17
|
+
},
|
|
18
|
+
"accounting_port": {
|
|
19
|
+
"description": "UDP port for RADIUS accounting",
|
|
20
|
+
"type": "integer",
|
|
21
|
+
"minimum": -9007199254740991,
|
|
22
|
+
"maximum": 9007199254740991
|
|
23
|
+
},
|
|
24
|
+
"authentication_port": {
|
|
25
|
+
"description": "UDP port for RADIUS authentication",
|
|
26
|
+
"type": "integer",
|
|
27
|
+
"minimum": -9007199254740991,
|
|
28
|
+
"maximum": 9007199254740991
|
|
29
|
+
},
|
|
14
30
|
"use_profiles": {
|
|
15
31
|
"description": "Enable the profile/payment subsystem",
|
|
16
32
|
"type": "boolean"
|
|
@@ -15,6 +15,11 @@
|
|
|
15
15
|
"minimum": -9007199254740991,
|
|
16
16
|
"maximum": 9007199254740991
|
|
17
17
|
},
|
|
18
|
+
"remote_port": {
|
|
19
|
+
"type": "integer",
|
|
20
|
+
"minimum": -9007199254740991,
|
|
21
|
+
"maximum": 9007199254740991
|
|
22
|
+
},
|
|
18
23
|
"as": {
|
|
19
24
|
"type": "integer",
|
|
20
25
|
"minimum": -9007199254740991,
|
|
@@ -26,9 +31,17 @@
|
|
|
26
31
|
"local_address": {
|
|
27
32
|
"type": "string"
|
|
28
33
|
},
|
|
34
|
+
"local_port": {
|
|
35
|
+
"type": "integer",
|
|
36
|
+
"minimum": -9007199254740991,
|
|
37
|
+
"maximum": 9007199254740991
|
|
38
|
+
},
|
|
29
39
|
"router_id": {
|
|
30
40
|
"type": "string"
|
|
31
41
|
},
|
|
42
|
+
"cluster_id": {
|
|
43
|
+
"type": "string"
|
|
44
|
+
},
|
|
32
45
|
"address_families": {
|
|
33
46
|
"type": "string"
|
|
34
47
|
},
|
|
@@ -41,12 +54,56 @@
|
|
|
41
54
|
"multihop": {
|
|
42
55
|
"type": "boolean"
|
|
43
56
|
},
|
|
57
|
+
"nexthop_choice": {
|
|
58
|
+
"type": "string"
|
|
59
|
+
},
|
|
60
|
+
"use_bfd": {
|
|
61
|
+
"type": "boolean"
|
|
62
|
+
},
|
|
63
|
+
"tcp_md5_key": {
|
|
64
|
+
"type": "string"
|
|
65
|
+
},
|
|
66
|
+
"connect": {
|
|
67
|
+
"type": "boolean"
|
|
68
|
+
},
|
|
69
|
+
"listen": {
|
|
70
|
+
"type": "boolean"
|
|
71
|
+
},
|
|
44
72
|
"input_filter": {
|
|
45
73
|
"type": "string"
|
|
46
74
|
},
|
|
75
|
+
"input_accept_nlri": {
|
|
76
|
+
"type": "string"
|
|
77
|
+
},
|
|
78
|
+
"input_allow_as": {
|
|
79
|
+
"type": "integer",
|
|
80
|
+
"minimum": -9007199254740991,
|
|
81
|
+
"maximum": 9007199254740991
|
|
82
|
+
},
|
|
83
|
+
"input_ignore_as_path_len": {
|
|
84
|
+
"type": "boolean"
|
|
85
|
+
},
|
|
47
86
|
"output_filter": {
|
|
48
87
|
"type": "string"
|
|
49
88
|
},
|
|
89
|
+
"output_network": {
|
|
90
|
+
"type": "string"
|
|
91
|
+
},
|
|
92
|
+
"output_default_originate": {
|
|
93
|
+
"type": "string"
|
|
94
|
+
},
|
|
95
|
+
"output_redistribute": {
|
|
96
|
+
"type": "string"
|
|
97
|
+
},
|
|
98
|
+
"output_as_override": {
|
|
99
|
+
"type": "boolean"
|
|
100
|
+
},
|
|
101
|
+
"output_keep_sent_attributes": {
|
|
102
|
+
"type": "boolean"
|
|
103
|
+
},
|
|
104
|
+
"output_no_client_to_client_reflection": {
|
|
105
|
+
"type": "boolean"
|
|
106
|
+
},
|
|
50
107
|
"routing_table": {
|
|
51
108
|
"type": "string"
|
|
52
109
|
},
|
|
@@ -27,6 +27,81 @@
|
|
|
27
27
|
"type": "integer",
|
|
28
28
|
"minimum": -9007199254740991,
|
|
29
29
|
"maximum": 9007199254740991
|
|
30
|
+
},
|
|
31
|
+
"ageing_time": {
|
|
32
|
+
"description": "Host table entry timeout, e.g. '5m'",
|
|
33
|
+
"type": "string"
|
|
34
|
+
},
|
|
35
|
+
"arp": {
|
|
36
|
+
"description": "ARP resolution mode",
|
|
37
|
+
"type": "string",
|
|
38
|
+
"enum": ["disabled", "enabled", "proxy-arp", "reply-only", "local-proxy-arp"]
|
|
39
|
+
},
|
|
40
|
+
"arp_timeout": {
|
|
41
|
+
"description": "ARP entry timeout, e.g. '30s' or 'auto'",
|
|
42
|
+
"type": "string"
|
|
43
|
+
},
|
|
44
|
+
"auto_mac": {
|
|
45
|
+
"description": "Automatically pick the bridge MAC from a member port",
|
|
46
|
+
"type": "boolean"
|
|
47
|
+
},
|
|
48
|
+
"admin_mac": {
|
|
49
|
+
"description": "Static bridge MAC address (requires auto_mac=false)",
|
|
50
|
+
"type": "string"
|
|
51
|
+
},
|
|
52
|
+
"priority": {
|
|
53
|
+
"description": "STP/RSTP bridge priority, e.g. '0x8000'",
|
|
54
|
+
"type": "string"
|
|
55
|
+
},
|
|
56
|
+
"ether_type": {
|
|
57
|
+
"description": "Service VLAN (S-tag) EtherType when VLAN filtering",
|
|
58
|
+
"type": "string",
|
|
59
|
+
"enum": ["0x8100", "0x88a8", "0x9100"]
|
|
60
|
+
},
|
|
61
|
+
"pvid": {
|
|
62
|
+
"description": "Bridge-level default port VLAN ID",
|
|
63
|
+
"type": "integer",
|
|
64
|
+
"minimum": 1,
|
|
65
|
+
"maximum": 4094
|
|
66
|
+
},
|
|
67
|
+
"frame_types": {
|
|
68
|
+
"description": "Default accepted frame types for ports",
|
|
69
|
+
"type": "string",
|
|
70
|
+
"enum": ["admit-all", "admit-only-untagged-and-priority-tagged", "admit-only-vlan-tagged"]
|
|
71
|
+
},
|
|
72
|
+
"ingress_filtering": {
|
|
73
|
+
"description": "Default ingress VLAN filtering for ports",
|
|
74
|
+
"type": "boolean"
|
|
75
|
+
},
|
|
76
|
+
"dhcp_snooping": {
|
|
77
|
+
"description": "Enable DHCP snooping",
|
|
78
|
+
"type": "boolean"
|
|
79
|
+
},
|
|
80
|
+
"igmp_snooping": {
|
|
81
|
+
"description": "Enable IGMP/MLD snooping",
|
|
82
|
+
"type": "boolean"
|
|
83
|
+
},
|
|
84
|
+
"fast_forward": {
|
|
85
|
+
"description": "Enable Fast Forward optimization",
|
|
86
|
+
"type": "boolean"
|
|
87
|
+
},
|
|
88
|
+
"mvrp": {
|
|
89
|
+
"description": "Enable Multiple VLAN Registration Protocol",
|
|
90
|
+
"type": "boolean"
|
|
91
|
+
},
|
|
92
|
+
"forward_delay": {
|
|
93
|
+
"description": "STP forward delay timer, e.g. '15s'",
|
|
94
|
+
"type": "string"
|
|
95
|
+
},
|
|
96
|
+
"max_message_age": {
|
|
97
|
+
"description": "STP maximum message age, e.g. '20s'",
|
|
98
|
+
"type": "string"
|
|
99
|
+
},
|
|
100
|
+
"transmit_hold_count": {
|
|
101
|
+
"description": "STP transmit hold count",
|
|
102
|
+
"type": "integer",
|
|
103
|
+
"minimum": -9007199254740991,
|
|
104
|
+
"maximum": 9007199254740991
|
|
30
105
|
}
|
|
31
106
|
},
|
|
32
107
|
"required": ["name"],
|
|
@@ -9,12 +9,32 @@
|
|
|
9
9
|
"name": {
|
|
10
10
|
"type": "string"
|
|
11
11
|
},
|
|
12
|
+
"type": {
|
|
13
|
+
"description": "Record type, e.g. \"A\", \"AAAA\", \"CNAME\", \"NS\", \"FWD\", \"MX\", \"SRV\", \"TXT\"",
|
|
14
|
+
"type": "string"
|
|
15
|
+
},
|
|
12
16
|
"address": {
|
|
13
17
|
"type": "string"
|
|
14
18
|
},
|
|
15
19
|
"cname": {
|
|
16
20
|
"type": "string"
|
|
17
21
|
},
|
|
22
|
+
"ns": {
|
|
23
|
+
"description": "Name server FQDN for an NS-type record",
|
|
24
|
+
"type": "string"
|
|
25
|
+
},
|
|
26
|
+
"forward_to": {
|
|
27
|
+
"description": "DNS server to forward to for a FWD-type record",
|
|
28
|
+
"type": "string"
|
|
29
|
+
},
|
|
30
|
+
"match_subdomain": {
|
|
31
|
+
"description": "Also match all subdomains of name/regexp",
|
|
32
|
+
"type": "boolean"
|
|
33
|
+
},
|
|
34
|
+
"address_list": {
|
|
35
|
+
"description": "Add resolved addresses to this firewall address-list",
|
|
36
|
+
"type": "string"
|
|
37
|
+
},
|
|
18
38
|
"mx_preference": {
|
|
19
39
|
"type": "integer",
|
|
20
40
|
"minimum": -9007199254740991,
|
|
@@ -51,6 +51,99 @@
|
|
|
51
51
|
"tcp_flags": {
|
|
52
52
|
"type": "string"
|
|
53
53
|
},
|
|
54
|
+
"src_mac_address": {
|
|
55
|
+
"type": "string"
|
|
56
|
+
},
|
|
57
|
+
"in_interface_list": {
|
|
58
|
+
"type": "string"
|
|
59
|
+
},
|
|
60
|
+
"out_interface_list": {
|
|
61
|
+
"type": "string"
|
|
62
|
+
},
|
|
63
|
+
"port": {
|
|
64
|
+
"type": "string"
|
|
65
|
+
},
|
|
66
|
+
"connection_mark": {
|
|
67
|
+
"type": "string"
|
|
68
|
+
},
|
|
69
|
+
"packet_mark": {
|
|
70
|
+
"type": "string"
|
|
71
|
+
},
|
|
72
|
+
"routing_mark": {
|
|
73
|
+
"type": "string"
|
|
74
|
+
},
|
|
75
|
+
"connection_type": {
|
|
76
|
+
"type": "string"
|
|
77
|
+
},
|
|
78
|
+
"connection_bytes": {
|
|
79
|
+
"type": "string"
|
|
80
|
+
},
|
|
81
|
+
"connection_limit": {
|
|
82
|
+
"type": "string"
|
|
83
|
+
},
|
|
84
|
+
"connection_rate": {
|
|
85
|
+
"type": "string"
|
|
86
|
+
},
|
|
87
|
+
"content": {
|
|
88
|
+
"type": "string"
|
|
89
|
+
},
|
|
90
|
+
"dscp": {
|
|
91
|
+
"type": "string"
|
|
92
|
+
},
|
|
93
|
+
"layer7_protocol": {
|
|
94
|
+
"type": "string"
|
|
95
|
+
},
|
|
96
|
+
"packet_size": {
|
|
97
|
+
"type": "string"
|
|
98
|
+
},
|
|
99
|
+
"ipsec_policy": {
|
|
100
|
+
"type": "string"
|
|
101
|
+
},
|
|
102
|
+
"ttl": {
|
|
103
|
+
"type": "string"
|
|
104
|
+
},
|
|
105
|
+
"nth": {
|
|
106
|
+
"type": "string"
|
|
107
|
+
},
|
|
108
|
+
"time": {
|
|
109
|
+
"type": "string"
|
|
110
|
+
},
|
|
111
|
+
"random": {
|
|
112
|
+
"type": "string"
|
|
113
|
+
},
|
|
114
|
+
"tcp_mss": {
|
|
115
|
+
"type": "string"
|
|
116
|
+
},
|
|
117
|
+
"fragment": {
|
|
118
|
+
"type": "boolean"
|
|
119
|
+
},
|
|
120
|
+
"src_address_type": {
|
|
121
|
+
"type": "string"
|
|
122
|
+
},
|
|
123
|
+
"dst_address_type": {
|
|
124
|
+
"type": "string"
|
|
125
|
+
},
|
|
126
|
+
"hotspot": {
|
|
127
|
+
"type": "string"
|
|
128
|
+
},
|
|
129
|
+
"icmp_options": {
|
|
130
|
+
"type": "string"
|
|
131
|
+
},
|
|
132
|
+
"priority": {
|
|
133
|
+
"type": "string"
|
|
134
|
+
},
|
|
135
|
+
"jump_target": {
|
|
136
|
+
"type": "string"
|
|
137
|
+
},
|
|
138
|
+
"reject_with": {
|
|
139
|
+
"type": "string"
|
|
140
|
+
},
|
|
141
|
+
"address_list": {
|
|
142
|
+
"type": "string"
|
|
143
|
+
},
|
|
144
|
+
"address_list_timeout": {
|
|
145
|
+
"type": "string"
|
|
146
|
+
},
|
|
54
147
|
"comment": {
|
|
55
148
|
"type": "string"
|
|
56
149
|
},
|
|
@@ -57,6 +57,96 @@
|
|
|
57
57
|
"tcp_flags": {
|
|
58
58
|
"type": "string"
|
|
59
59
|
},
|
|
60
|
+
"port": {
|
|
61
|
+
"type": "string"
|
|
62
|
+
},
|
|
63
|
+
"icmp_options": {
|
|
64
|
+
"type": "string"
|
|
65
|
+
},
|
|
66
|
+
"connection_mark": {
|
|
67
|
+
"type": "string"
|
|
68
|
+
},
|
|
69
|
+
"connection_type": {
|
|
70
|
+
"type": "string"
|
|
71
|
+
},
|
|
72
|
+
"connection_bytes": {
|
|
73
|
+
"type": "string"
|
|
74
|
+
},
|
|
75
|
+
"connection_limit": {
|
|
76
|
+
"type": "string"
|
|
77
|
+
},
|
|
78
|
+
"connection_rate": {
|
|
79
|
+
"type": "string"
|
|
80
|
+
},
|
|
81
|
+
"packet_mark": {
|
|
82
|
+
"type": "string"
|
|
83
|
+
},
|
|
84
|
+
"routing_mark": {
|
|
85
|
+
"type": "string"
|
|
86
|
+
},
|
|
87
|
+
"packet_size": {
|
|
88
|
+
"type": "string"
|
|
89
|
+
},
|
|
90
|
+
"dscp": {
|
|
91
|
+
"type": "string"
|
|
92
|
+
},
|
|
93
|
+
"ingress_priority": {
|
|
94
|
+
"type": "string"
|
|
95
|
+
},
|
|
96
|
+
"priority": {
|
|
97
|
+
"type": "string"
|
|
98
|
+
},
|
|
99
|
+
"src_mac_address": {
|
|
100
|
+
"type": "string"
|
|
101
|
+
},
|
|
102
|
+
"src_address_type": {
|
|
103
|
+
"type": "string"
|
|
104
|
+
},
|
|
105
|
+
"dst_address_type": {
|
|
106
|
+
"type": "string"
|
|
107
|
+
},
|
|
108
|
+
"tcp_mss": {
|
|
109
|
+
"type": "string"
|
|
110
|
+
},
|
|
111
|
+
"headers": {
|
|
112
|
+
"type": "string"
|
|
113
|
+
},
|
|
114
|
+
"tls_host": {
|
|
115
|
+
"type": "string"
|
|
116
|
+
},
|
|
117
|
+
"content": {
|
|
118
|
+
"type": "string"
|
|
119
|
+
},
|
|
120
|
+
"nth": {
|
|
121
|
+
"type": "string"
|
|
122
|
+
},
|
|
123
|
+
"random": {
|
|
124
|
+
"type": "string"
|
|
125
|
+
},
|
|
126
|
+
"time": {
|
|
127
|
+
"type": "string"
|
|
128
|
+
},
|
|
129
|
+
"dst_limit": {
|
|
130
|
+
"type": "string"
|
|
131
|
+
},
|
|
132
|
+
"ipsec_policy": {
|
|
133
|
+
"type": "string"
|
|
134
|
+
},
|
|
135
|
+
"per_connection_classifier": {
|
|
136
|
+
"type": "string"
|
|
137
|
+
},
|
|
138
|
+
"jump_target": {
|
|
139
|
+
"type": "string"
|
|
140
|
+
},
|
|
141
|
+
"reject_with": {
|
|
142
|
+
"type": "string"
|
|
143
|
+
},
|
|
144
|
+
"address_list": {
|
|
145
|
+
"type": "string"
|
|
146
|
+
},
|
|
147
|
+
"address_list_timeout": {
|
|
148
|
+
"type": "string"
|
|
149
|
+
},
|
|
60
150
|
"comment": {
|
|
61
151
|
"type": "string"
|
|
62
152
|
},
|
|
@@ -33,6 +33,98 @@
|
|
|
33
33
|
"out_interface": {
|
|
34
34
|
"type": "string"
|
|
35
35
|
},
|
|
36
|
+
"in_interface_list": {
|
|
37
|
+
"type": "string"
|
|
38
|
+
},
|
|
39
|
+
"out_interface_list": {
|
|
40
|
+
"type": "string"
|
|
41
|
+
},
|
|
42
|
+
"src_address_list": {
|
|
43
|
+
"description": "Negate with \"!name\"",
|
|
44
|
+
"type": "string"
|
|
45
|
+
},
|
|
46
|
+
"dst_address_list": {
|
|
47
|
+
"description": "Negate with \"!name\"",
|
|
48
|
+
"type": "string"
|
|
49
|
+
},
|
|
50
|
+
"src_address_type": {
|
|
51
|
+
"type": "string"
|
|
52
|
+
},
|
|
53
|
+
"dst_address_type": {
|
|
54
|
+
"type": "string"
|
|
55
|
+
},
|
|
56
|
+
"src_mac_address": {
|
|
57
|
+
"type": "string"
|
|
58
|
+
},
|
|
59
|
+
"port": {
|
|
60
|
+
"type": "string"
|
|
61
|
+
},
|
|
62
|
+
"connection_state": {
|
|
63
|
+
"type": "string"
|
|
64
|
+
},
|
|
65
|
+
"connection_type": {
|
|
66
|
+
"type": "string"
|
|
67
|
+
},
|
|
68
|
+
"connection_bytes": {
|
|
69
|
+
"type": "string"
|
|
70
|
+
},
|
|
71
|
+
"connection_limit": {
|
|
72
|
+
"type": "string"
|
|
73
|
+
},
|
|
74
|
+
"connection_rate": {
|
|
75
|
+
"type": "string"
|
|
76
|
+
},
|
|
77
|
+
"per_connection_classifier": {
|
|
78
|
+
"type": "string"
|
|
79
|
+
},
|
|
80
|
+
"tcp_flags": {
|
|
81
|
+
"type": "string"
|
|
82
|
+
},
|
|
83
|
+
"tcp_mss": {
|
|
84
|
+
"type": "string"
|
|
85
|
+
},
|
|
86
|
+
"icmp_options": {
|
|
87
|
+
"type": "string"
|
|
88
|
+
},
|
|
89
|
+
"packet_size": {
|
|
90
|
+
"type": "string"
|
|
91
|
+
},
|
|
92
|
+
"dscp": {
|
|
93
|
+
"type": "string"
|
|
94
|
+
},
|
|
95
|
+
"priority": {
|
|
96
|
+
"type": "string"
|
|
97
|
+
},
|
|
98
|
+
"ingress_priority": {
|
|
99
|
+
"type": "string"
|
|
100
|
+
},
|
|
101
|
+
"ipsec_policy": {
|
|
102
|
+
"type": "string"
|
|
103
|
+
},
|
|
104
|
+
"nth": {
|
|
105
|
+
"type": "string"
|
|
106
|
+
},
|
|
107
|
+
"random": {
|
|
108
|
+
"type": "string"
|
|
109
|
+
},
|
|
110
|
+
"time": {
|
|
111
|
+
"type": "string"
|
|
112
|
+
},
|
|
113
|
+
"hop_limit": {
|
|
114
|
+
"type": "string"
|
|
115
|
+
},
|
|
116
|
+
"content": {
|
|
117
|
+
"type": "string"
|
|
118
|
+
},
|
|
119
|
+
"headers": {
|
|
120
|
+
"type": "string"
|
|
121
|
+
},
|
|
122
|
+
"limit": {
|
|
123
|
+
"type": "string"
|
|
124
|
+
},
|
|
125
|
+
"dst_limit": {
|
|
126
|
+
"type": "string"
|
|
127
|
+
},
|
|
36
128
|
"connection_mark": {
|
|
37
129
|
"type": "string"
|
|
38
130
|
},
|
|
@@ -57,6 +149,21 @@
|
|
|
57
149
|
"new_hop_limit": {
|
|
58
150
|
"type": "string"
|
|
59
151
|
},
|
|
152
|
+
"new_mss": {
|
|
153
|
+
"type": "string"
|
|
154
|
+
},
|
|
155
|
+
"new_priority": {
|
|
156
|
+
"type": "string"
|
|
157
|
+
},
|
|
158
|
+
"jump_target": {
|
|
159
|
+
"type": "string"
|
|
160
|
+
},
|
|
161
|
+
"sniff_target": {
|
|
162
|
+
"type": "string"
|
|
163
|
+
},
|
|
164
|
+
"sniff_target_port": {
|
|
165
|
+
"type": "string"
|
|
166
|
+
},
|
|
60
167
|
"passthrough": {
|
|
61
168
|
"type": "boolean"
|
|
62
169
|
},
|