嵌入式Linux网络编程(三)——UDP编程模型UDP编程模型:UDP循环服务器模型为:socket(...);
bind(...);
while(1)
{
recvfrom(...);
process(...);
sendto(...);
}server.c代码:#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<unist..
分类:
系统相关 时间:
2016-07-11 01:16:14
阅读次数:
406
查看网络状态命令 ifconfig 启动eth0网卡 ifup eth0 可以单独查看某一块网卡的信息 ifconfig eth0 修改网卡IP地址,Linux所有设备都是以文件存在的,我们要找到网卡的配置文件,Linux默认网卡配置文件在/etc/sysconfig/network-scripts ...
分类:
系统相关 时间:
2016-07-09 18:02:42
阅读次数:
254
原文地址:http://www.linuxidc.com/Linux/2016-06/132393.htm 查看Linux网络参数 ifconfig—-查看网络接口 hostname—-查看主机名 route—-查看路由表 netstat—查看网络连接情况 -a 所有, -n 数字, -r路由表,- ...
分类:
系统相关 时间:
2016-07-08 10:25:53
阅读次数:
332
1./etc/bashrc和/etc/profile区别 http://www.linuxeye.com/Linux/bashrc-profile.html 2.为什么Nginx的性能要比Apache高很多? http://www.linuxeye.com/Linux/2883.html 3.如何选 ...
分类:
系统相关 时间:
2016-07-05 14:11:48
阅读次数:
165
TCP/IP基础UDP提供无连接服务
UDP的数据格式:#ifdef __FAVOR_BSD
struct udphdr {
u_int16_t uh_sport; /* source port */
u_int16_t uh_dport; /* destination port */
u_int16_t...
分类:
系统相关 时间:
2016-07-05 12:24:12
阅读次数:
238
Linux下Socket编程的端口问题( Bind error: Address already in use ) Linux下Socket编程的端口问题( Bind error: Address already in use ) 在进行linux网络编程时,每次修改了源代码并再次编译运行时,常遇到 ...
分类:
系统相关 时间:
2016-07-04 06:28:48
阅读次数:
234
1、systemctlenalbleNetworkManager-wait-online.service由于这个服务没有开启导致下面错误network[798]:Bringinguploopbackinterface:Couldnotloadfile‘/etc/sysconfig/network-scripts/ifcfg-lo‘network[798]:Couldnotloadfile‘/etc/sysconfig/network-scripts/ifcfg-lo‘netw..
分类:
系统相关 时间:
2016-07-01 16:42:11
阅读次数:
174
linux:存放yum源的位置:/etc/yum.repos.d/,该目录下全是一些yum源 一、网络yum源: 如图:下面全部都是yum源,后缀是".repo"都是合法的yum源,默认的是启动的CentOS-Base.repo这个yum源(网络yum源) 要使用CentOS-Base.repo这个 ...
分类:
系统相关 时间:
2016-06-29 12:55:50
阅读次数:
280
http://www.cnblogs.com/digdeep/p/4869010.html 1. TCP/IP模型 我们一般知道OSI的网络参考模型是分为7层:“应表会传网数物”——应用层,表示层,会话层,传输层,网络层,数据链路层,物理层。而实际的Linux网络层协议是参照了OSI标准,但是它实现 ...
分类:
其他好文 时间:
2016-06-25 19:13:26
阅读次数:
1322
1、linux网络防火墙及netfilter基础原理2、netfilter基础原理及iptable入门3、iptable基础框架及扩展匹配4、iptable扩展匹配一、linux防火墙及netfilter基础原理防火墙(Firewall)有主机防火墙和网络防火墙之分、有硬件防火墙和软件防火墙之分。防火墙是工作与主机或网络边缘..
分类:
其他好文 时间:
2016-06-24 22:19:33
阅读次数:
204