内网环境,linux服务器与windows服务器互通问题排查解决过程

本文涉及的产品
云防火墙,500元 1000GB
简介: 内网环境,linux服务器与windows服务器互通问题排查解决过程

背景

  1. 在内网环境的linux服务器上部署了一个应用,这个应用监听了一个端口。
  2. 在内网环境的另一台windows服务器上,访问linux服务器上的应用访问不了。

问题分析与解决

  1. 在windows服务器上,使用命令 telnet 192.168.1.2 7095 ,发现不能连接。但是单独ping 192.168.1.2这个ip是通的。
  2. 检查linux服务器上是否设置了防火墙,使用如下命令:

查看防火墙列表:

firewall-cmd --list-all

果然设置了防火墙,随后将新部署的应用端口添加到防火墙列表中,使用如下命令:

#添加端口号

firewall-cmd --permanent --add-port=7095/tcp

#刷新

firewall-cmd --reload

3. 如此操作之后,在windows上能正常访问linux服务器上的应用程序。

扩展

在windows服务器上部署相应的应用,如果开启了防火墙,也要设置相应的出站与入站规则,以便其他应用能够访问。

目录
相关文章
|
1月前
|
网络协议 Windows
Windows Server 2019 DHCP服务器搭建
Windows Server 2019 DHCP服务器搭建
|
1月前
|
网络协议 Windows
Windows Server 2003 DHCP服务器搭建
Windows Server 2003 DHCP服务器搭建
|
1月前
|
网络协议 定位技术 Windows
Windows Server 2019 DNS服务器搭建
Windows Server 2019 DNS服务器搭建
|
1月前
|
Apache 数据中心 Windows
将网站迁移到阿里云Windows系统云服务器,访问该站点提示连接被拒绝,如何处理?
将网站迁移到阿里云Windows系统云服务器,访问该站点提示连接被拒绝,如何处理?
|
1月前
|
域名解析 缓存 网络协议
Windows系统云服务器自定义域名解析导致网站无法访问怎么解决?
Windows系统云服务器自定义域名解析导致网站无法访问怎么解决?
|
1月前
|
弹性计算 安全 Windows
通过远程桌面连接Windows服务器提示“由于协议错误,会话将被中断,请重新连接到远程计算机”错误怎么办?
通过远程桌面连接Windows服务器提示“由于协议错误,会话将被中断,请重新连接到远程计算机”错误怎么办?
|
1月前
|
弹性计算 数据安全/隐私保护 Windows
阿里云国际版无法远程连接Windows服务器的排查方法
阿里云国际版无法远程连接Windows服务器的排查方法
|
1月前
|
网络协议 文件存储 Windows
Windows Server 2019 FTP服务器搭建
Windows Server 2019 FTP服务器搭建
|
1月前
|
网络协议 Windows
Windows Server 2019 Web服务器搭建
Windows Server 2019 Web服务器搭建
|
6月前
|
弹性计算 网络安全 Apache
windows server2012服务器下PHPstudy配置ssl证书(https配置)
windows server2012服务器下PHPstudy配置ssl证书(https配置)
179 0