-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathconfig.yaml
76 lines (61 loc) · 2.33 KB
/
config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
######################
## Outbound Traffic ##
######################
outbound:
# If `drop_all_traffic` is set to true, all traffic originating from
# the internet will be dropped.
drop_all_traffic: False
#####################
## Transport Layer ##
#####################
# If `allowed_transport_protocols` is set and has values, the proxy
# will drop any outbound flows using transport protocols not present in the list.
allowed_transport_protocols:
- 0x0006 # TCP
- 0x0011 # UDP
# If `blocked_transport_protocols` is set and has values, the proxy
# will drop any outbound flows using transport protocols present in the list.
blocked_transport_protocols:
- 0x0001 # ICMP
#####################
## Application Layer ##
#####################
# If `allowed_application_ports` is set and has values, the proxy
# will drop any outbound flows using application protocols not present in the list.
allowed_application_ports:
- 443 # HTTPS
- 80 # HTTP
# If `blocked_application_ports` is set and has values, the proxy
# will drop any outbound flows using application protocols present in the list.
blocked_application_ports:
- 53 # DNS
######################
## Inbound Traffic ##
######################
inbound:
# If `drop_all_traffic` is set to true, all traffic originating from
# local networks will be dropped.
drop_all_traffic: False
#####################
## Transport Layer ##
#####################
# If `allowed_transport_protocols` is set and has values, the proxy
# will drop any inbound flows using transport protocols not present in the list.
allowed_transport_protocols:
- 0x0001 # ICMP
- 0x0006 # TCP
# If `blocked_transport_protocols` is set and has values, the proxy
# will drop any inbound flows using transport protocols present in the list.
blocked_transport_protocols:
- 0x0011 # UDP
#####################
## Application Layer ##
#####################
# If `allowed_application_ports` is set and has values, the proxy
# will drop any inbound flows using application protocols not present in the list.
allowed_application_ports:
- 443 # HTTPS
# If `blocked_application_ports` is set and has values, the proxy
# will drop any inbound flows using application protocols present in the list.
blocked_application_ports:
- 80 # HTTP