powershell 在Windows Server上打开FireWall端口
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 在Windows Server上打开FireWall端口相关的知识,希望对你有一定的参考价值。
# Incoming Rules
New-NetFirewallRule -Protocol TCP -LocalPort 8000-8100 -Direction Inbound -Action Allow -DisplayName 'Pylon Application Server'
New-NetFirewallRule -Protocol TCP -LocalPort 7009 -Direction Inbound -Action Allow -DisplayName 'Pylon Updater Service'
New-NetFirewallRule -Protocol TCP -LocalPort 7001-7002,8432 -Direction Inbound -Action Allow -DisplayName 'Pylon JSON Service'
New-NetFirewallRule -Protocol TCP -LocalPort 10001 -Direction Inbound -Action Allow -DisplayName 'Pylon Update Service'
New-NetFirewallRule -Protocol TCP -LocalPort 63664 -Direction Inbound -Action Allow -DisplayName 'Infomind SSH Tunnel'
New-NetFirewallRule -Protocol TCP -LocalPort 1433-1434 -Direction Inbound -Action Allow -DisplayName 'MS SQL Server TCP Ports'
New-NetFirewallRule -Protocol UDP -LocalPort 1434 -Direction Inbound -Action Allow -DisplayName 'MS SQL Server UDP Ports'
New-NetFirewallRule -Protocol TCP -LocalPort 9000 -Direction Inbound -Action Allow -DisplayName 'Pylon Fiscal Manager'
New-NetFirewallRule -Program '%ProgramFiles%\Microsoft SQL Server\MSSQL13.IMSQL2016\MSSQL\Binn\sqlservr.exe' -Direction Inbound -Action Allow -DisplayName 'MS SQL Server Application'
New-NetFirewallRule -Program 'C:\epsilon net\Pylon Platform\Poseidon.ServiceFiscalManager.exe' -Direction Inbound -Action Allow -DisplayName 'Pylon Fiscal Manager Application'
# Outgoing Rules
New-NetFirewallRule -Protocol TCP -LocalPort 8000-8100 -Direction Outbound -Action Allow -DisplayName 'Pylon Application Server'
New-NetFirewallRule -Protocol TCP -LocalPort 7009 -Direction Outbound -Action Allow -DisplayName 'Pylon Updater Service'
New-NetFirewallRule -Protocol TCP -LocalPort 7001-7002,8432 -Direction Outbound -Action Allow -DisplayName 'Pylon JSON Service'
New-NetFirewallRule -Protocol TCP -LocalPort 10001 -Direction Outbound -Action Allow -DisplayName 'Pylon Update Service'
New-NetFirewallRule -Protocol TCP -LocalPort 63664 -Direction Outbound -Action Allow -DisplayName 'Infomind SSH Tunnel'
New-NetFirewallRule -Protocol TCP -LocalPort 1433-1434 -Direction Outbound -Action Allow -DisplayName 'MS SQL Server TCP Ports'
New-NetFirewallRule -Protocol UDP -LocalPort 1434 -Direction Outbound -Action Allow -DisplayName 'MS SQL Server UDP Ports'
New-NetFirewallRule -Protocol TCP -LocalPort 9000 -Direction Outbound -Action Allow -DisplayName 'Pylon Fiscal Manager'
New-NetFirewallRule -Program '%ProgramFiles%\Microsoft SQL Server\MSSQL13.IMSQL2016\MSSQL\Binn\sqlservr.exe' -Direction Outbound -Action Allow -DisplayName 'MS SQL Server Application'
New-NetFirewallRule -Program 'C:\epsilon net\Pylon Platform\Poseidon.ServiceFiscalManager.exe' -Direction Outbound -Action Allow -DisplayName 'Pylon Fiscal Manager Application'
以上是关于powershell 在Windows Server上打开FireWall端口的主要内容,如果未能解决你的问题,请参考以下文章
尝试使用PowerShell修改Active Directory
带有 TransferMode.Streamed 的 WCF NetTcpBinding 在 WCF 绑定上使用 TLS 1.2 和 SslProtocols.None 的 Windows Serve
我刚装了双系统win7(用win7 activation 激活了) 和windows serve2008 R2 (用密钥也成功激活了)。
如何在windows 2008上安装powershell
怎么打开windows powershell
windows 2012服务器,sql serve 20112怎么开通1433端口