Welcome![Sign In][Sign Up]
Location:
Search - ip address of switch

Search list

[Other resourcewe123_QQ_Msgs

Description: QQ群发,此程序实现了不用加好友,直接向QQ号发送信息的功能。 不过QQ的服务器会限制次数,大家可以考虑用一系列(越多越好)的QQ号不断地切换来登陆,必要时可以不断地连接和断开网络,变换IP来解决QQ服务器的限制。-QQ repeated that this procedure will not achieve the increase friend, directly to the QQ, sending information functions. However QQ will limit the number of servers, you may consider using a series of (better) QQ continues to switch to landing, when necessary, continuously connected and disconnected networks, to transform IP address QQ server restrictions.
Platform: | Size: 19250 | Author: 梁诚 | Hits:

[Other resource221315556

Description: 服务器建立方法 1。把mirstart.exe放到盛大的传奇目录下 2。把其他文件放到一个文件夹内,目录结构不要改 3。修改config.ini里面的地址为本机的ip,如果是单机运行客户端和服务器就改成127.0.0.1 4。完成,现在打开mirservertest.exe,点 开始 按钮,出现 线程开始的文字,表示启动成功 5。打开mirstart.exe,在ip地址里面输入运行服务器的那台机器。点启动按钮 目前功能: 只提供了账号注册功能,角色列表是程序的固定值 进入游戏后的人也是程序固定值 进入游戏后只能走,跑,打 游戏内部无任何可用之npc,地图切换口等-a server approach. Mirstart.exe put into a grand legend directory 2. Other documents into a folder, directory structure will not change 3. Config.ini changes inside the address of the machine - ip, in the case of stand-alone operation of the client and server into 127.0.0.1 4. Completion is now open mirservertest.exe point the Start button, there threads start to the letter, said the successful launch five. Open mirstart.exe, ip address inside the importation of those running the server machine. Points start button now functions : providing the only account registration function, role list is the value of fixed procedures entered the game after the procedure is fixed value entered the game after only Walking, Running, playing games without any internal available in 2005/06, maps switch mou
Platform: | Size: 158619 | Author: 王瑞 | Hits:

[Internet-Network一个判断远程主机存活程序代码

Description: 一个判断远程主机存活程序代码(ping) #include #include #include #include #include "winsock.h" #pragma comment(lib,"Ws2_32"); #define SEND_SIZE 32 #define PACKET_SIZE 4096 #define ICMP_ECHO 8 #define ICMP_ECHOREPLY 0 struct icmp { unsigned char icmp_type; unsigned char icmp_code; unsigned short icmp_cksum; unsigned short icmp_id; unsigned short icmp_seq; unsigned long icmp_data; }; struct ip { unsigned char ip_hl:4; unsigned char ip_v:4; unsigned char ip_tos; unsigned short ip_len; unsigned short ip_id; unsigned short ip_off; unsigned char ip_ttl; unsigned char ip_p; unsigned short ip_sum; unsigned long ip_src; unsigned long ip_dst; }; unsigned char sendpacket[PACKET_SIZE]; unsigned char recvpacket[PACKET_SIZE]; struct sockaddr_in dest_addr; struct sockaddr_in from_addr; int sockfd; int pid; unsigned short cal_chksum(unsigned short *addr,int len); int pack(int pack_no); int unpack(unsigned char *buf,int len); void send_packet(void); void recv_packet(void); void main(int argc,char *argv[]) { struct hostent *host; struct protoent *protocol; WSADATA wsaData; int timeout=1000; int SEND_COUNT=4; int i; char *par_host; par_host=argv[argc-1]; //IP赋值 switch(argc) { case 2: break; case 3: if(strcmp(argv[1],"-t")==0) { SEND_COUNT=10000; break; } //fall through default: printf("usage: %s [-t] Host name or IP address\n",argv[0]); exit(1); } if(WSAStartup(0x1010,&wsaData)!=0) { printf("wsastartup error\n"); exit(1); } if( (protocol=getprotobyname("icmp") )==NULL) { printf("getprotobyname error\n"); exit(1); } /* printf("%s\n",protocol->p_name); printf("%s\n",protocol->p_aliases); printf("%d\n",protocol->p_proto); system("pause"); */ if( (sockfd=socket(AF_INET,SOCK_RAW,protocol->p_proto) )<0) { printf("socket error\n"); exit(1); } if(setsockopt(sockfd,SOL_SOCKET,SO_RCVTIMEO,(char*)&timeout,sizeof(timeout))h_length); //resolve address to hostname if(host=gethostbyaddr(host->h_addr,4,PF_INET)) par_host=host->h_name; // //printf("%s\n",par_host); // } else if( dest_addr.sin_addr.s_addr=inet_addr(par_host)==INADDR_NONE) { printf("Unkown host %s\n",par_host); exit(1); } pid=getpid(); /* printf("%d\n",pid); system("pause"); */ printf("Pinging %s [%s]: with %d bytes of data:\n\n",par_host,inet_ntoa(dest_addr.sin_addr),SEND_SIZE); for(i=0;i1) { sum+=*w++; nleft-=2; } if( nleft==1) { *(unsigned char *)(&answer)=*(unsigned char *)w; sum+=answer; } sum=(sum>>16)+(sum&0xffff); sum+=(sum>>16); answer=~sum; return answer; } //打包 int pack(int pack_no) { int packsize; struct icmp *icmp; packsize=8+SEND_SIZE; icmp=(struct icmp*)sendpacket; icmp->icmp_type=ICMP_ECHO; icmp->icmp_code=0; icmp->icmp_cksum=0; icmp->icmp_seq=pack_no; icmp->icmp_id=pid; icmp->icmp_data=GetTickCount(); icmp->icmp_cksum=cal_chksum( (unsigned short *)icmp,packsize); /*校验算法*/ return packsize; } //解包 int unpack(unsigned char *buf,int len) { struct ip *ip; struct icmp *icmp; double rtt; int iphdrlen; ip=(struct ip *)buf; iphdrlen=ip->ip_hl*4; icmp=(struct icmp *)(buf+iphdrlen); if( (icmp->icmp_type==ICMP_ECHOREPLY) && (icmp->icmp_id==pid) ) { len=len-iphdrlen-8; rtt=GetTickCount()-icmp->icmp_data; printf("Reply from %s: bytes=%d time=%.0fms TTL=%d icmp_seq=%u\n", inet_ntoa(from_addr.sin_addr), len, rtt, ip->ip_ttl, icmp->icmp_seq); return 1; } return 0; } //发送 void send_packet() { int packetsize; static int pack_no=0; packetsize=pack(pack_no++); if( sendto(sockfd,(char *)sendpacket,packetsize,0,(struct sockaddr *)&dest_addr,sizeof(dest_addr) )=0) success=unpack(recvpacket,n); else if (WSAGetLastError() == WSAETIMEDOUT) { printf("Request timed out.\n"); return; } }while(!success); } UID5380 帖子239 精华0 积分1289 阅读权限40 来自软件学院 在线时间81 小时 注册时间2006-5-22 最后登录2007-2-24 查看详细资料 TOP
Platform: | Size: 5881 | Author: shuiyuan313 | Hits:

[Game Server Simulator221315556

Description: 服务器建立方法 1。把mirstart.exe放到盛大的传奇目录下 2。把其他文件放到一个文件夹内,目录结构不要改 3。修改config.ini里面的地址为本机的ip,如果是单机运行客户端和服务器就改成127.0.0.1 4。完成,现在打开mirservertest.exe,点 开始 按钮,出现 线程开始的文字,表示启动成功 5。打开mirstart.exe,在ip地址里面输入运行服务器的那台机器。点启动按钮 目前功能: 只提供了账号注册功能,角色列表是程序的固定值 进入游戏后的人也是程序固定值 进入游戏后只能走,跑,打 游戏内部无任何可用之npc,地图切换口等-a server approach. Mirstart.exe put into a grand legend directory 2. Other documents into a folder, directory structure will not change 3. Config.ini changes inside the address of the machine- ip, in the case of stand-alone operation of the client and server into 127.0.0.1 4. Completion is now open mirservertest.exe point the Start button, there threads start to the letter, said the successful launch five. Open mirstart.exe, ip address inside the importation of those running the server machine. Points start button now functions : providing the only account registration function, role list is the value of fixed procedures entered the game after the procedure is fixed value entered the game after only Walking, Running, playing games without any internal available in 2005/06, maps switch mou
Platform: | Size: 158720 | Author: 王瑞 | Hits:

[Other systemswe123_QQ_Msgs

Description: QQ群发,此程序实现了不用加好友,直接向QQ号发送信息的功能。 不过QQ的服务器会限制次数,大家可以考虑用一系列(越多越好)的QQ号不断地切换来登陆,必要时可以不断地连接和断开网络,变换IP来解决QQ服务器的限制。-QQ repeated that this procedure will not achieve the increase friend, directly to the QQ, sending information functions. However QQ will limit the number of servers, you may consider using a series of (better) QQ continues to switch to landing, when necessary, continuously connected and disconnected networks, to transform IP address QQ server restrictions.
Platform: | Size: 19456 | Author: 梁诚 | Hits:

[SNMPnetdisco-0.94_with_mibs.tar

Description: Designed for moderate to large networks, configuration information and connection data for network devices are retrieved and set by SNMP. With Netdisco you can locate the switch port of an end-user system by IP or MAC address. Data is stored using a SQL database for scalability and speed.-Designed for moderate to large networks, configuration information and connection dat a for network devices are retrieved and set by SN MP. With Netdisco you can locate the switch port of an end-user system by IP or MAC address. i Data s stored using a SQL database for an scalability d speed.
Platform: | Size: 6903808 | Author: dl | Hits:

[WEB Codeipmanger

Description: 这是一个IP管理程序,用ASP+ACCESS做的,可以根据需要检索某一段IP,MAC地址,VLAN,本人 在网络中心做事,这个自己做的小程序十分有用,可以记录有问题的电脑,快速找到有问题的电脑 . 登陆账号:xubinxiao 密码:137558569-This is an IP management procedures, ASP ACCESS done. may need to retrieve certain IP, MAC address, VLAN, I work at the network center, they do this small procedure can be extremely useful, there are records of computer, Quick to find the computer. landing account : xubinxiao Password : 137558569
Platform: | Size: 149504 | Author: xubin | Hits:

[SNMPip-monitor

Description: ip监控程序.从三层交换机上读取ip-mac信息,对比数据库信息,如果是非法接入mac地址,找出连接此机器的二层交换机端口,将其关闭。-ip monitoring program. Switch from three read ip- mac information, as compared with database information, If it is illegal access mac address, connecting this machine to identify the port switcher will be closed.
Platform: | Size: 60416 | Author: 杨帆 | Hits:

[Internet-NetworkProject1

Description: 自动设置网关的脚本,使用VBS编写的,可以方便切换网关和IP地址-Automatically set the gateway script, prepared by the use of VBS, it will be convenient to switch gateways and IP Address
Platform: | Size: 12288 | Author: 郭盖 | Hits:

[Windows Developsetip

Description: 一个不错的小程序,支持在windows上快速的切换IP地址。使用之前要把那个“本地连接”重命名为maincon.这个程序会对输入的格式,自动的设置IP地址和dns。也可以设为dhcp方式。对经常要移动的笔记本电脑来说,这个程序很有用。-A good small program to support the windows on the switch IP address quickly. Prior to the use of the
Platform: | Size: 25600 | Author: swigger | Hits:

[Windows DevelopIpCh

Description: 非常简单的一个ip地址修改器,编译完成以后只有100多k,方便于用本本上班、晚上在家,或者在不同网络中经常切换的,记录经常使用的ip,需要用某Ip,设置一下即可-Very simple modification of an ip address, and compiled only after the completion of more than 100 k, convenient to use books to work, at home, or in different networks often switch to record frequently used ip, need to use a Ip, click Settings
Platform: | Size: 3652608 | Author: 季凯 | Hits:

[Software EngineeringTheRedundantWorkingModeBetweenDoubleIndependentEth

Description: 描述了在VxWorks 操作系统下以太网设备工作时的结构层次,介绍在这种结构下以太网卡驱动的工作原 理以及对链路状态进行实时监测的方法. 实现了VxWorks 下多网卡共用单MAC 地址和单IP 地址的功能,并阐明 双网卡协同工作时的多种状态以及状态间的迁移和出现故障后双网卡高速切换原理. 最终以RTL8139 网卡为例, 叙述了双冗余网卡原理的实现过程.-The working laying structure of the Ether Net device is described firstly based on vxWorks which is the real2 time operating system. Then the principle of the Ether Net card and the method of real2time monitoring link route status are introduced and the function of sharing the single MAC address and the single IP address on multiples cards is imple2 mented under the vxWorks. Thirdly , the many status which appear on two Ether Net cards working together and the shift among the status and the fast switch principle between two cards after failure are presented in details. Finally the method of how to use the two Ether Net cards implementing the redundancy function is given by taking the RTL8139 as an example.
Platform: | Size: 116736 | Author: mabeibei | Hits:

[uCOSLWIP_TestOK

Description: 可直接用于Atmel AT91SAM7X256_EK板的简单Web服务器程序, AT91SAM7X256(MAC)+DM9161AE(PHY),Web程序中设定的IP地址192.168.131.200,MAC地址 00-30-6C-00-00-02详见emac_lib.h与ethernetif.c,可在IE浏览器中输入查看,注:MDIX跳线未短接时,PC与EK板均需要通过UTP网线接至交换机,MDIX短接时可用网线直连PC。-Can be used directly Atmel AT91SAM7X256_EK board a simple Web server program, AT91SAM7X256 (MAC)+ DM9161AE (PHY), Web procedure set IP address of 192.168.131.200, MAC address 00-30-6C-00-00-02 see emac_lib.h and ethernetif.c, in IE browser, enter the view, note: MDIX when the jumper is not shorted, PC and EK boards come through UTP cable connected to the switch, MDIX cable shorted available when Direct Connect PC.
Platform: | Size: 1568768 | Author: zxf | Hits:

[Internet-NetworkIPSwitch

Description: 切换电脑IP地址,利用此程序可以快速切换电脑IP地址-Switch IP address of the computer
Platform: | Size: 1003520 | Author: 护理过 | Hits:

[VC/MFCasd

Description: (1) 学会计算机网中主机IP地址和网关地址的设置。 (2) 掌握主机与交换机间连通测试。 (3) 掌握交换机端口参数的设置,熟悉交换机私有地址的设定规则。 -Experiment 1, the basic set of computers and switches 1. Purpose of the experiment (1) Institute of Computer Network in the host IP address and gateway address settings. (2) control the host and switch between connectivity test. (3) master switch port parameter settings, familiar with the switch to set the rules of private addresses. Experiment 1, the basic set of computers and switches 1. Purpose of the experiment (1) Institute of Computer Network in the host IP address and gateway address settings. (2) control the host and switch between connectivity test. (3) master switch port parameter settings, familiar with the switch to set the rules of private addresses.
Platform: | Size: 509952 | Author: 王王 | Hits:

[Shell apiIPSwitchV1.0

Description: C#源码:如果您电脑的IP地址经常要换来换去(比如:笔记本用户在家里需要一套配置,在公司又是一套),每次都要重新设定IP、网关、DNS服务器等一系列的地址,是不是感觉很不方便?“自由人IP切换器”是本人为解决这样问题而设计的。现在把它拿出来与大家共享,免费使用,支持多网卡、多网络,自动保存不同网络设置。可在不同网络间自由切换而不需要重新启动电脑 -C# Source: If your computer' s IP address in exchange for often go (example: notebook users need a set of configuration at home, in the company is set), each time re-set IP, gateway, DNS server, etc. a series of addresses, is not feeling very inconvenient? " Free Man IP switch" is to solve this problem, I designed. Now bring it out and share, free of charge, to support multi-NIC, multi-network, different network settings automatically saved. Can freely switch between different networks without the need to restart your computer
Platform: | Size: 326656 | Author: 郭宇呈 | Hits:

[Internet-NetworkIP-address-of-the-switch

Description: IP地址一键自动切换内外网,IP地址为192.168.1.207 192.168.2.207-IP address automatically switch inside and outside the network, the IP address 192.168.1.207 192.168.2.207
Platform: | Size: 45056 | Author: 张炎坤 | Hits:

[Internet-NetworkIP-address-of-the-switch208

Description: IP地址自动切换内外网,切换IP地址为:192.168.2.208 192.168.1.208-IP address automatically switch between internal and external network switch IP address: 192.168.2.208 192.168.1.208
Platform: | Size: 45056 | Author: 张炎坤 | Hits:

[Internet-NetworkIP-address-of-the-switch209

Description: IP地址自动切换内外网,切换IP地址为:192.168.2.209 192.168.1.209-IP address automatically switch between internal and external network switch IP address: 192.168.2.209 192.168.1.209
Platform: | Size: 45056 | Author: 张炎坤 | Hits:

[Internet-Networkswitch-IP-address

Description: 切换电脑的IP地址,随意在自动获取IP和手动获取IP之间切换。-Switching IP address of the computer, free in automatically obtain IP and manually switch between obtaining IP.
Platform: | Size: 1449984 | Author: 张鑫 | Hits:
« 12 »

CodeBus www.codebus.net