1.如果是DELL服务器,一般有2-4个网口,那么所有的网口都把网线插到交换机上:2.DELL安装ESXI系统,根据不同的DELL硬件,要安装不同的ESXI版本.原则上越高版本,支持的硬件越多向下兼容:3.网络设置,第一个网口为管理IP,并配置IP为192.168.x.x,vlan id为88(举个例子,这个随意,但是这个vlan id必须跟你的PC是路由可达的.):4.交换机配置四个网口均为trunk口,并允许通过任何vlan id port link-type trunk port tru
1.查看主机信息 # more /etc/hosts # Do not remove the following line, or various programs # that require network functionality will fail. 127.0.0.1 xyn-redhat localhost.localdomain localhost 2.查看进程 # ps -aux|grep java //显示所有进程名中包含java字符串的进
#!/usr/bin/python3 import socket sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) result = sock.connect_ex(('10.10.130.111',8080)) if 0 == result: print("Port is open") else: print("Port is not open,return code:%s" % result)