mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-11-13 00:50:38 -05:00
Add changes in firewall rules to debugd configuration README
Signed-off-by: Malte Poll <mp@edgeless.systems>
This commit is contained in:
parent
7619e1dee7
commit
aec0e09237
1 changed files with 23 additions and 8 deletions
31
README.md
31
README.md
|
|
@ -149,25 +149,32 @@ See this example on what the possible settings are and how to setup the constell
|
||||||
"Name": "coordinator",
|
"Name": "coordinator",
|
||||||
"Description": "Coordinator default port",
|
"Description": "Coordinator default port",
|
||||||
"Protocol": "tcp",
|
"Protocol": "tcp",
|
||||||
"Port": 9000
|
"FromPort": 9000
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Name": "wireguard",
|
"Name": "wireguard",
|
||||||
"Description": "WireGuard default port",
|
"Description": "WireGuard default port",
|
||||||
"Protocol": "udp",
|
"Protocol": "udp",
|
||||||
"Port": 51820
|
"FromPort": 51820
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Name": "ssh",
|
"Name": "ssh",
|
||||||
"Description": "SSH",
|
"Description": "SSH",
|
||||||
"Protocol": "tcp",
|
"Protocol": "tcp",
|
||||||
"Port": 22
|
"FromPort": 22
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "nodeport",
|
||||||
|
"Description": "NodePort",
|
||||||
|
"Protocol": "tcp",
|
||||||
|
"FromPort": 30000,
|
||||||
|
"ToPort": 32767
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Name": "debugd",
|
"Name": "debugd",
|
||||||
"Description": "debugd default port",
|
"Description": "debugd default port",
|
||||||
"Protocol": "tcp",
|
"Protocol": "tcp",
|
||||||
"Port": 4000
|
"FromPort": 4000
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
@ -181,28 +188,36 @@ See this example on what the possible settings are and how to setup the constell
|
||||||
"Description": "Coordinator default port",
|
"Description": "Coordinator default port",
|
||||||
"Protocol": "tcp",
|
"Protocol": "tcp",
|
||||||
"IPRange": "0.0.0.0/0",
|
"IPRange": "0.0.0.0/0",
|
||||||
"Port": 9000
|
"FromPort": 9000
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Name": "wireguard",
|
"Name": "wireguard",
|
||||||
"Description": "WireGuard default port",
|
"Description": "WireGuard default port",
|
||||||
"Protocol": "udp",
|
"Protocol": "udp",
|
||||||
"IPRange": "0.0.0.0/0",
|
"IPRange": "0.0.0.0/0",
|
||||||
"Port": 51820
|
"FromPort": 51820
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Name": "ssh",
|
"Name": "ssh",
|
||||||
"Description": "SSH",
|
"Description": "SSH",
|
||||||
"Protocol": "tcp",
|
"Protocol": "tcp",
|
||||||
"IPRange": "0.0.0.0/0",
|
"IPRange": "0.0.0.0/0",
|
||||||
"Port": 22
|
"FromPort": 22
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Name": "nodeport",
|
||||||
|
"Description": "NodePort",
|
||||||
|
"Protocol": "tcp",
|
||||||
|
"IPRange": "0.0.0.0/0",
|
||||||
|
"FromPort": 30000,
|
||||||
|
"ToPort": 32767
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Name": "debugd",
|
"Name": "debugd",
|
||||||
"Description": "debugd default port",
|
"Description": "debugd default port",
|
||||||
"Protocol": "tcp",
|
"Protocol": "tcp",
|
||||||
"IPRange": "0.0.0.0/0",
|
"IPRange": "0.0.0.0/0",
|
||||||
"Port": 4000
|
"FromPort": 4000
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue