-
Notifications
You must be signed in to change notification settings - Fork 186
/
openshift_xinetd_example.conf
50 lines (47 loc) · 1.32 KB
/
openshift_xinetd_example.conf
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
# Reference: https://linux.die.net/man/5/xinetd.conf
# The `IPv4` flag means that the `bind` value is in IPv4 format. `redirect` values can still be in IPv6 format.
service openshift-api
{
flags = IPv4
bind = <IPv4_Host_IP>
disable = no
type = UNLISTED
socket_type = stream
protocol = tcp
user = root
wait = no
redirect = <IPv6_API_Address> 6443
port = 6443
only_from = 0.0.0.0/0
per_source = UNLIMITED
}
service openshift-ingress-ssl
{
flags = IPv4
bind = <IPv4_Host_IP>
disable = no
type = UNLISTED
socket_type = stream
protocol = tcp
user = root
wait = no
redirect = <IPv6_Ingress_Address> 443
port = 443
only_from = 0.0.0.0/0
per_source = UNLIMITED
}
service openshift-ingress
{
flags = IPv4
bind = <IPv4_Host_IP>
disable = no
type = UNLISTED
socket_type = stream
protocol = tcp
user = root
wait = no
redirect = <IPv6_Ingress_Address> 80
port = 8080
only_from = 0.0.0.0/0
per_source = UNLIMITED
}