惠普服务器bios的热键大部分为F2、DEL、F10等,具体型号如下:
一、ProLiant 1系列服务器
二、ProLiant 3系列服务器
三、ProLiant、5系列服务器
四、ProLiant 7系列服务器
五、BladeSystem刀片服务器
using System;using SystemCollectionsGeneric;
using SystemLinq;
using SystemText;
using SystemNet;
namespace BaiduExample
{
class Program
{
static void Main(string[] args)
{
string ServerName = "IBM-FCC9FCEA3BD";//要判断的服务器名称
List<IPAddress> hostList = DnsGetHostByName(ServerName)AddressListToList<IPAddress>();//获取服务器IP集合
List<IPAddress> locallist = DnsGetHostByName("localhost")AddressListToList<IPAddress>();//获取本地IP集合
bool IsLoalIP = false;//初始化是否本地实例,默认为远程实例
foreach (IPAddress localip in locallist)
{
//循环判断服务器IP是否和本地IP有交集,如果有,则为本地实例
if (hostListFind(delegate(IPAddress hostip) { return localipToString()Equals(hostip); }) != null)
{
IsLoalIP = true;//如果有交集,则为本地实例
}
}
ConsoleWriteLine(stringFormat("{0}是{1}数据库实例", ServerName, IsLoalIP "本地" : "远程"));//输出结果
ConsoleRead();
}
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)