Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ include_directories(
include
tests/include
lib
lib/yamlcpp/include
proxy
proxy/hdrs
proxy/http
Expand Down
1 change: 1 addition & 0 deletions ci/rat-regex.txt
Original file line number Diff line number Diff line change
Expand Up @@ -68,3 +68,4 @@ port\.h
^catch[.]hpp$
^configuru.hpp$
^yamlcpp$
^tests/gold_tests/autest-site/min_cfg$
2 changes: 1 addition & 1 deletion configs/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ nodist_sysconf_DATA = \
dist_sysconf_DATA = \
cache.config.default \
hosting.config.default \
ip_allow.config.default \
ip_allow.yaml.default \
logging.yaml.default \
parent.config.default \
plugin.config.default \
Expand Down
27 changes: 0 additions & 27 deletions configs/ip_allow.config.default

This file was deleted.

81 changes: 81 additions & 0 deletions configs/ip_allow.schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
{
"$schema": "https://github.com/apache/trafficserver/tree/master/configs/ip_allow.schema.json",
"title": "Traffic Server IP Allow Configuration",
"description": "IP ACL configuration file structure. Licensed under Apache V2 https://www.apache.org/licenses/LICENSE-2.0",
"type": "object",
"properties": {
"version": {
"type": "string",
"description": "Configuration format version."
},
"ip_addr_acl": {
"description": "Root tag for IP address ACL configuration",
"type": "array",
"items": {
"$ref": "#/definitions/rule"
}
}
},
"required": [ "ip_addr_acl" ],
"definitions": {
"range": {
"description": "A range of IP addresses in a single family.",
"type": "string"
},
"action": {
"description": "Enforcement action.",
"type": "string",
"enum": [ "allow", "deny" ]
},
"methods": {
"description": "Methods to check.",
"oneOf": [
{
"type": "string",
"description": "Method name"
},
{
"type": "array",
"description": "List of method names.",
"minItems": 1,
"items": {
"type": "string",
"description": "Method name"
}
}
]
},
"rule": {
"description": "Connection ACL.",
"type": "object",
"properties": {
"apply": {
"description": "Where to apply the rule, inbound or outbound.",
"type": "string",
"enum": [ "in", "out" ]
},
"ip_addrs": {
"oneOf": [
{
"$ref": "#/definitions/range"
},
{
"type": "array",
"minItems": 1,
"items": {
"$ref": "#/definitions/range"
}
}
]
},
"action": {
"$ref": "#/definitions/action"
},
"methods": {
"$ref": "#/definitions/methods"
}
},
"required": [ "apply", "ip_addrs", "action" ]
}
}
}
50 changes: 50 additions & 0 deletions configs/ip_allow.yaml.default
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# YAML
#
# ip_allow.config
#
# Documentation:
# https://docs.trafficserver.apache.org/en/latest/admin-guide/files/ip_allow.config.en.html
#
# Rules:
# Each rule is a mapping, with the tags
#
# apply: Either "in" or "out" to apply to inbound and outbound connections respectively.
# ip_addrs: IP address ranges, either a single range or a list of ranges.
# action: "allow" or "deny"
# methods: A method name or sequence of method names. Available methods: GET, CONNECT, DELETE,
# HEAD, OPTIONS, POST, PURGE, PUT, TRACE, PUSH. The special name "ALL" indicates all
# methods and it overrides any other methods.
#
# A rule must have either "src" or "dst" to indicate if the IP addresses apply to inbound connections
# or outbound connections.
#
# The top level tag 'ip_addr_acl' identifies the rule items. Its value must be a rule item or a
# sequence of rule items.
#
# Rules are applied in the order listed starting from the top.
# That means you generally want to append your rules after the ones listed here.
#
# Allow anything on localhost, limit destructive methods elsewhere.
ip_addr_acl:
- apply: in
ip_addrs: 127.0.0.1
action: allow
methods: ALL
- apply: in
ip_addrs: ::1
action: allow
methods: ALL
- apply: in
ip_addrs: 0/0
action: deny
methods:
- PURGE
- PUSH
- DELETE
- apply: in
ip_addrs: ::/0
action: deny
methods:
- PURGE
- PUSH
- DELETE
Loading