ifconfig常用用法: ifconfig : 查看主机激活状态的网络接口情况; 输出结果中:lo 是表示主机的回坏地址,eth0 表示第一块网卡, 其中 HWaddr 表示网卡的物理地址(MAC地址); inet addr 用来表示网卡的IP地址,Bcast表示广播地址,Mask表示掩码地址 i ...
分类:
其他好文 时间:
2020-12-11 12:34:47
阅读次数:
19
#include "stdio.h" #include "stdint.h" #include "windows.h" #include "ws2tcpip.h" void main(void) { struct sockaddr_in sa; char str[INET_ADDRSTRLEN]; ...
分类:
Web程序 时间:
2020-09-09 19:04:36
阅读次数:
51
#!/bin/bash ipv4=`ifconfig eth0 | grep 'inet addr'|awk -F ":" '{print $2}'|awk '{print$1}'` ipv6=`ifconfig eth0 | grep 'inet6 addr'|awk -F "/" '{print ...
分类:
其他好文 时间:
2020-07-21 13:46:58
阅读次数:
61
高并发负载均衡实验 描述 node1 [root@MDNode01 ~]# ifconfig eth0 Link encap:Ethernet HWaddr 00:0C:29:BF:3A:BE inet addr:192.168.25.50 Bcast:192.168.25.255 Mask:255 ...
分类:
其他好文 时间:
2020-07-12 22:44:57
阅读次数:
82
异步I/O 所谓异步I/O,是指以事件触发的机制来对I/O操作进行处理;与多进程和多线程技术相比,异步I/O技术的最大优势是系统开销小,系统不必创建进程/线程,也不必维护这些进程/线程,从而减少了系统的开销。 1 /** 2 client.c 3 */ 4 #include <stdio.h> 5 ...
分类:
其他好文 时间:
2020-06-21 10:00:26
阅读次数:
44
先上脚本文件 #!/bin/bash #check MySQL_Slave Status #crontab time 00:10 MYSQLIP=`ifconfig eth0|grep "inet addr" | awk -F[:" "]+ '{print $4}'` STATUS=$(mysql ...
分类:
数据库 时间:
2020-05-14 19:03:06
阅读次数:
72
centos6最小化安装时没有setup,此时虚拟机是没法上网的,因为系统安装时默认网卡是关闭的 ifconfig查看网卡信息,显示没有网卡 lo Link encap:Local Loopback inet addr:127.0.0.1 Mask:255.0.0.0 inet6 addr: ::1 ...
分类:
其他好文 时间:
2020-04-18 13:33:04
阅读次数:
72
环境:VS2019 场景:NET_SERVER.sin_addr.S_un.S_addr = inet_addr(Send_IP);编译时提示错误 错误:C4996 'inet_addr': Use inet_pton() or InetPton() instead or define _WINSO ...
分类:
编程语言 时间:
2020-04-07 13:08:29
阅读次数:
112
本次实验要求: 请将Socket API编程接口、系统调用机制及内核中系统调用相关源代码、 socket相关系统调用的内核处理函数结合起来分析,并在X86 64环境下Linux5.0以上的内核中进一步跟踪验证。 Socket API编程接口: C语言中的Socket API就是一种涉及系统调用的AP ...
分类:
其他好文 时间:
2019-12-19 18:56:56
阅读次数:
73
``` IP: 适用于 eth0 inet addr: IP的情况 ping .vivo_fj_ip.q734y5p2.dnslog58.top ping ip. .kiwe2t.dnslog.cn 适用于 eth0 IP的情况 ping .vivo_fj_ip.q734y5p2.dnslog58. ...
分类:
其他好文 时间:
2019-12-06 09:34:39
阅读次数:
167