@usex/mikrotik-mcp 3.23.0 → 3.25.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.
Files changed (142) hide show
  1. package/dist/cli.js +4703 -2643
  2. package/dist/index.js +4571 -2624
  3. package/dist/ui/aaa.html +21 -0
  4. package/dist/ui/connected-devices.html +21 -0
  5. package/dist/ui/dashboard.html +1 -1
  6. package/dist/ui/firewall-audit.html +3 -3
  7. package/dist/ui/firewall.html +3 -3
  8. package/dist/ui/interfaces.html +3 -3
  9. package/dist/ui/observability.html +44 -44
  10. package/dist/ui/records.html +3 -3
  11. package/package.json +1 -1
  12. package/schemas/README.md +1 -1
  13. package/schemas/tool-catalog.json +4228 -310
  14. package/schemas/tools/aaa_mutate.json +43 -0
  15. package/schemas/tools/add_bfd_configuration.json +4 -0
  16. package/schemas/tools/add_bgp_connection.json +70 -0
  17. package/schemas/tools/add_bgp_template.json +35 -0
  18. package/schemas/tools/add_bridge_port.json +95 -0
  19. package/schemas/tools/add_bridge_vlan.json +7 -0
  20. package/schemas/tools/add_dhcp_client.json +22 -0
  21. package/schemas/tools/add_dns_static.json +20 -0
  22. package/schemas/tools/add_graphing_interface.json +8 -0
  23. package/schemas/tools/add_graphing_queue.json +8 -0
  24. package/schemas/tools/add_graphing_resource.json +8 -0
  25. package/schemas/tools/add_ipv6_dhcp_client.json +12 -0
  26. package/schemas/tools/add_ipv6_nd.json +4 -0
  27. package/schemas/tools/add_ipv6_route.json +10 -0
  28. package/schemas/tools/add_logging_action.json +26 -0
  29. package/schemas/tools/add_netwatch.json +15 -0
  30. package/schemas/tools/add_ospf_area.json +6 -0
  31. package/schemas/tools/add_ospf_area_range.json +3 -0
  32. package/schemas/tools/add_ospf_instance.json +22 -0
  33. package/schemas/tools/add_ospf_interface_template.json +26 -0
  34. package/schemas/tools/add_ovpn_server.json +5 -0
  35. package/schemas/tools/add_pimsm_instance.json +36 -0
  36. package/schemas/tools/add_pimsm_interface_template.json +24 -0
  37. package/schemas/tools/add_radius_server.json +15 -0
  38. package/schemas/tools/add_rip_instance.json +4 -0
  39. package/schemas/tools/add_rip_interface_template.json +8 -0
  40. package/schemas/tools/add_romon_port.json +4 -0
  41. package/schemas/tools/add_route.json +8 -0
  42. package/schemas/tools/add_routing_rule.json +0 -5
  43. package/schemas/tools/add_script.json +4 -0
  44. package/schemas/tools/add_switch_rule.json +13 -0
  45. package/schemas/tools/add_traffic_generator_stream.json +18 -0
  46. package/schemas/tools/add_user_manager_limitation.json +54 -0
  47. package/schemas/tools/add_user_manager_router.json +7 -0
  48. package/schemas/tools/add_user_manager_user.json +8 -0
  49. package/schemas/tools/add_wireguard_peer.json +34 -0
  50. package/schemas/tools/allow_device.json +13 -0
  51. package/schemas/tools/block_device.json +17 -0
  52. package/schemas/tools/create_bridge.json +75 -0
  53. package/schemas/tools/create_certificate.json +20 -0
  54. package/schemas/tools/create_dhcp_network.json +23 -0
  55. package/schemas/tools/create_dhcp_server.json +34 -0
  56. package/schemas/tools/create_eoip_tunnel.json +34 -0
  57. package/schemas/tools/create_filter_rule.json +124 -0
  58. package/schemas/tools/create_gre_tunnel.json +12 -0
  59. package/schemas/tools/create_ipip_tunnel.json +21 -0
  60. package/schemas/tools/create_ipsec_identity.json +22 -1
  61. package/schemas/tools/create_ipsec_peer.json +6 -0
  62. package/schemas/tools/create_ipsec_policy.json +27 -1
  63. package/schemas/tools/create_ipsec_profile.json +4 -0
  64. package/schemas/tools/create_ipsec_proposal.json +5 -1
  65. package/schemas/tools/create_ipv6_dhcp_server.json +12 -0
  66. package/schemas/tools/create_ipv6_filter_rule.json +123 -1
  67. package/schemas/tools/create_ipv6_mangle_rule.json +140 -0
  68. package/schemas/tools/create_ipv6_nat_rule.json +135 -1
  69. package/schemas/tools/create_ipv6_raw_rule.json +52 -0
  70. package/schemas/tools/create_l2tp_client.json +42 -0
  71. package/schemas/tools/create_mangle_rule.json +64 -0
  72. package/schemas/tools/create_nat_rule.json +144 -0
  73. package/schemas/tools/create_ovpn_client.json +22 -0
  74. package/schemas/tools/create_ppp_profile.json +64 -0
  75. package/schemas/tools/create_ppp_secret.json +16 -0
  76. package/schemas/tools/create_pptp_client.json +32 -0
  77. package/schemas/tools/create_queue_type.json +59 -0
  78. package/schemas/tools/create_scheduler.json +4 -0
  79. package/schemas/tools/create_simple_queue.json +4 -0
  80. package/schemas/tools/create_sstp_client.json +46 -0
  81. package/schemas/tools/create_vlan_interface.json +13 -0
  82. package/schemas/tools/create_vxlan_tunnel.json +32 -0
  83. package/schemas/tools/create_wireless_interface.json +74 -0
  84. package/schemas/tools/get_aaa_section.json +21 -0
  85. package/schemas/tools/get_aaa_settings.json +7 -0
  86. package/schemas/tools/get_connected_device.json +16 -0
  87. package/schemas/tools/get_device_traffic.json +13 -0
  88. package/schemas/tools/list_connected_devices.json +27 -0
  89. package/schemas/tools/make_device_static.json +13 -0
  90. package/schemas/tools/manage_radius_user_manager.json +21 -0
  91. package/schemas/tools/remove_device_lease.json +13 -0
  92. package/schemas/tools/reset_configuration.json +4 -0
  93. package/schemas/tools/set_aaa_settings.json +22 -0
  94. package/schemas/tools/set_device_ip.json +17 -0
  95. package/schemas/tools/set_device_label.json +17 -0
  96. package/schemas/tools/set_device_limits.json +25 -0
  97. package/schemas/tools/set_dhcp_client.json +22 -0
  98. package/schemas/tools/set_dns_servers.json +34 -0
  99. package/schemas/tools/set_ip_cloud.json +4 -0
  100. package/schemas/tools/set_ip_service.json +4 -0
  101. package/schemas/tools/set_l2tp_server.json +27 -0
  102. package/schemas/tools/set_neighbor_discovery_settings.json +12 -0
  103. package/schemas/tools/set_ntp_client.json +9 -0
  104. package/schemas/tools/set_ntp_server.json +10 -0
  105. package/schemas/tools/set_ovpn_server.json +5 -0
  106. package/schemas/tools/set_pptp_server.json +8 -0
  107. package/schemas/tools/set_sstp_server.json +32 -0
  108. package/schemas/tools/set_system_clock.json +4 -0
  109. package/schemas/tools/set_user_manager_settings.json +16 -0
  110. package/schemas/tools/update_bfd_configuration.json +3 -0
  111. package/schemas/tools/update_bgp_connection.json +57 -0
  112. package/schemas/tools/update_bridge.json +75 -0
  113. package/schemas/tools/update_dns_static.json +20 -0
  114. package/schemas/tools/update_filter_rule.json +93 -0
  115. package/schemas/tools/update_ipsec_peer.json +5 -0
  116. package/schemas/tools/update_ipsec_profile.json +3 -0
  117. package/schemas/tools/update_ipsec_proposal.json +3 -0
  118. package/schemas/tools/update_ipv6_filter_rule.json +90 -0
  119. package/schemas/tools/update_ipv6_mangle_rule.json +107 -0
  120. package/schemas/tools/update_ipv6_nat_rule.json +99 -0
  121. package/schemas/tools/update_ipv6_nd.json +4 -0
  122. package/schemas/tools/update_ipv6_raw_rule.json +39 -0
  123. package/schemas/tools/update_ipv6_settings.json +29 -0
  124. package/schemas/tools/update_mangle_rule.json +48 -0
  125. package/schemas/tools/update_nat_rule.json +108 -0
  126. package/schemas/tools/update_ospf_instance.json +22 -0
  127. package/schemas/tools/update_ovpn_server.json +5 -0
  128. package/schemas/tools/update_ppp_profile.json +64 -0
  129. package/schemas/tools/update_ppp_secret.json +16 -0
  130. package/schemas/tools/update_queue_type.json +46 -0
  131. package/schemas/tools/update_radius_server.json +13 -0
  132. package/schemas/tools/update_rip_instance.json +4 -0
  133. package/schemas/tools/update_route.json +8 -0
  134. package/schemas/tools/update_routing_rule.json +5 -0
  135. package/schemas/tools/update_simple_queue.json +4 -0
  136. package/schemas/tools/update_sniffer_settings.json +32 -0
  137. package/schemas/tools/update_switch.json +8 -0
  138. package/schemas/tools/update_switch_rule.json +10 -0
  139. package/schemas/tools/update_user_manager_user.json +8 -0
  140. package/schemas/tools/update_vlan_interface.json +13 -0
  141. package/schemas/tools/update_wireguard_peer.json +34 -0
  142. package/schemas/tools/update_wireless_interface.json +91 -0
@@ -24,6 +24,10 @@
24
24
  "certificate": {
25
25
  "description": "Certificate name (for TLS services)",
26
26
  "type": "string"
27
+ },
28
+ "vrf": {
29
+ "description": "VRF the service is bound to (default 'main')",
30
+ "type": "string"
27
31
  }
28
32
  },
29
33
  "required": ["name"],
@@ -31,6 +31,33 @@
31
31
  "type": "integer",
32
32
  "minimum": -9007199254740991,
33
33
  "maximum": 9007199254740991
34
+ },
35
+ "mrru": {
36
+ "description": "Max receive reconstructed unit for MRRU (multilink)",
37
+ "type": "integer",
38
+ "minimum": -9007199254740991,
39
+ "maximum": 9007199254740991
40
+ },
41
+ "keepalive_timeout": {
42
+ "description": "Seconds before an idle tunnel is considered down",
43
+ "type": "integer",
44
+ "minimum": -9007199254740991,
45
+ "maximum": 9007199254740991
46
+ },
47
+ "max_sessions": {
48
+ "description": "Maximum simultaneous client sessions",
49
+ "type": "integer",
50
+ "minimum": -9007199254740991,
51
+ "maximum": 9007199254740991
52
+ },
53
+ "one_session_per_host": {
54
+ "description": "Allow only one active session per host",
55
+ "type": "boolean"
56
+ },
57
+ "caller_id_type": {
58
+ "description": "Caller ID format: ip-address or number",
59
+ "type": "string",
60
+ "enum": ["ip-address", "number"]
34
61
  }
35
62
  },
36
63
  "additionalProperties": false
@@ -19,6 +19,18 @@
19
19
  "lldp_med_net_policy_vlan": {
20
20
  "description": "LLDP-MED network-policy VLAN, e.g. \"auto\" or a VLAN id.",
21
21
  "type": "string"
22
+ },
23
+ "lldp_mac_phy_config": {
24
+ "description": "Include the IEEE 802.3 MAC/PHY Configuration/Status TLV in LLDP frames.",
25
+ "type": "boolean"
26
+ },
27
+ "lldp_max_frame_size": {
28
+ "description": "Include the Maximum Frame Size TLV in LLDP frames.",
29
+ "type": "boolean"
30
+ },
31
+ "lldp_vlan_info": {
32
+ "description": "Include the Port VLAN ID and VLAN Name TLVs in LLDP frames.",
33
+ "type": "boolean"
22
34
  }
23
35
  },
24
36
  "additionalProperties": false
@@ -10,6 +10,15 @@
10
10
  "servers": {
11
11
  "description": "Comma-separated NTP server list",
12
12
  "type": "string"
13
+ },
14
+ "mode": {
15
+ "description": "NTP client operating mode",
16
+ "type": "string",
17
+ "enum": ["unicast", "broadcast", "multicast", "manycast"]
18
+ },
19
+ "vrf": {
20
+ "description": "VRF the NTP client operates in (e.g. 'main')",
21
+ "type": "string"
13
22
  }
14
23
  },
15
24
  "additionalProperties": false
@@ -19,6 +19,16 @@
19
19
  "broadcast_address": {
20
20
  "description": "Broadcast address for NTP broadcasts",
21
21
  "type": "string"
22
+ },
23
+ "use_local_clock": {
24
+ "description": "Serve time from the device's local clock as reference",
25
+ "type": "boolean"
26
+ },
27
+ "local_clock_stratum": {
28
+ "description": "Stratum advertised when using the local clock (1-15)",
29
+ "type": "integer",
30
+ "minimum": -9007199254740991,
31
+ "maximum": 9007199254740991
22
32
  }
23
33
  },
24
34
  "additionalProperties": false
@@ -35,6 +35,11 @@
35
35
  "type": "string",
36
36
  "enum": ["tcp", "udp"]
37
37
  },
38
+ "tls_version": {
39
+ "description": "Accepted TLS version",
40
+ "type": "string",
41
+ "enum": ["any", "only-1.2"]
42
+ },
38
43
  "default_profile": {
39
44
  "type": "string"
40
45
  },
@@ -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
@@ -14,6 +14,10 @@
14
14
  "time": {
15
15
  "description": "e.g. '13:45:00'",
16
16
  "type": "string"
17
+ },
18
+ "time_zone_autodetect": {
19
+ "description": "Auto-detect the time zone from the public IP",
20
+ "type": "boolean"
17
21
  }
18
22
  },
19
23
  "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"
@@ -24,6 +24,9 @@
24
24
  "minimum": -9007199254740991,
25
25
  "maximum": 9007199254740991
26
26
  },
27
+ "forbid_bfd": {
28
+ "type": "boolean"
29
+ },
27
30
  "comment": {
28
31
  "type": "string"
29
32
  },
@@ -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
  },
@@ -23,6 +23,11 @@
23
23
  "local_address": {
24
24
  "type": "string"
25
25
  },
26
+ "port": {
27
+ "type": "integer",
28
+ "minimum": -9007199254740991,
29
+ "maximum": 9007199254740991
30
+ },
26
31
  "passive": {
27
32
  "type": "boolean"
28
33
  },
@@ -19,6 +19,9 @@
19
19
  "hash_algorithm": {
20
20
  "type": "string"
21
21
  },
22
+ "prf_algorithm": {
23
+ "type": "string"
24
+ },
22
25
  "lifetime": {
23
26
  "type": "string"
24
27
  },
@@ -21,6 +21,9 @@
21
21
  },
22
22
  "lifetime": {
23
23
  "type": "string"
24
+ },
25
+ "disabled": {
26
+ "type": "boolean"
24
27
  }
25
28
  },
26
29
  "required": ["name"],
@@ -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
  },