13 lines
587 B
Plaintext
13 lines
587 B
Plaintext
|
|
New-NetFirewallRule -DisplayName "Galera TCP 3306" -Direction Inbound -LocalPort 3306 -Protocol TCP -Action Allow
|
||
|
|
|
||
|
|
|
||
|
|
# TCP
|
||
|
|
New-NetFirewallRule -DisplayName "Galera TCP 4567" -Direction Inbound -LocalPort 4567 -Protocol TCP -Action Allow
|
||
|
|
|
||
|
|
New-NetFirewallRule -DisplayName "Galera TCP 4568" -Direction Inbound -LocalPort 4568 -Protocol TCP -Action Allow
|
||
|
|
|
||
|
|
New-NetFirewallRule -DisplayName "Galera TCP 4444" -Direction Inbound -LocalPort 4444 -Protocol TCP -Action Allow
|
||
|
|
|
||
|
|
# UDP
|
||
|
|
New-NetFirewallRule -DisplayName "Galera UDP 4567" -Direction Inbound -LocalPort 4567 -Protocol UDP -Action Allow
|