-
Notifications
You must be signed in to change notification settings - Fork 0
/
attls.txt
116 lines (101 loc) · 2.39 KB
/
attls.txt
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
TTLSRule ServerRule
{
LocalAddr ALL
RemoteAddr ALL
LocalPortRange 12345
Direction Inbound
TTLSGroupActionRef ServerGroupAction
TTLSEnvironmentActionRef ServerEnvironmentAction
TTLSConnectionActionRef ServerConnectionAction
}
TTLSGroupAction ServerGroupAction
{
TTLSEnabled On
}
TTLSEnvironmentAction ServerEnvironmentAction
{
HandshakeRole Server
EnvironmentUserInstance 0
TTLSEnvironmentAdvancedParmsRef EnvironmentAdvancedParms
TTLSKeyringParmsRef Keyring
}
TTLSKeyringParms Keyring
{
Keyring RINGID
}
TTLSEnvironmentAdvancedParms EnvironmentAdvancedParms
{
ApplicationControlled Off
Renegotiation Disabled
SSLv2 Off
SSLv3 Off
TLSv1 Off
TLSv1.1 Off
TLSv1.2 On
TLSv1.3 On
}
TTLSConnectionAction ServerConnectionAction
{
HandshakeRole Server
TTLSCipherParmsRef CipherParms
TTLSConnectionAdvancedParmsRef ConnectionAdvancedParms
}
TTLSConnectionAdvancedParms ConnectionAdvancedParms
{
ApplicationControlled Off
ServerCertificateLabel sercCert
SecondaryMap Off
}
TTLSCipherParms CipherParms
{
V3CipherSuites TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256
V3CipherSuites TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384
V3CipherSuites TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
V3CipherSuites TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384
V3CipherSuites TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
V3CipherSuites TLS_AES_128_GCM_SHA256
V3CipherSuites TLS_AES_256_GCM_SHA384
V3CipherSuites TLS_CHACHA20_POLY1305_SHA256
}
TTLSRule ClientRule
{
RemotePortRange 12340-12345
Jobname MYJOB*
Direction Outbound
TTLSGroupActionRef ClientGroupAction
TTLSEnvironmentActionRef ClientEnvironmentAction
TTLSConnectionActionRef ClientConnectionAction
}
TTLSEnvironmentAction ClientEnvironmentAction
{
HandshakeRole Client
TTLSKeyringParmsRef Keyring
TTLSCipherParmsRef CipherParms
TTLSEnvironmentAdvancedParmsRef EnvironmentAdvancedParms
}
TTLSGroupAction ClientGroupAction
{
TTLSEnabled ON
}
TTLSConnectionAction ClientConnectionAction
{
HandshakeRole Client
TTLSCipherParmsRef CipherParms
TTLSConnectionAdvancedParmsRef ConnectionAdvancedParms
}
TTLSConnectionAdvancedParms ConnectionAdvancedParms
{
CertificateLabel clientCert
}
TTLSEnvironmentAction ServerEnvironmentAction
{
HandshakeRole ServerWithClientAuth
}
TTLSEnvironmentAdvancedParms EnvironmentAdvancedParms
{
ClientAuthType Full
}
TTLSConnectionAction ServerConnectionAction
{
HandshakeRole ServerWithClientAuth
}