zoukankan      html  css  js  c++  java
  • MNC

    MNC - Multicast NetCat

    使用nc测试udp多播,总是遇到奇怪的问题,搞的一头雾水。偶然发现了MNC,测试了一下果然好用。

    下载地址:

    https://github.com/marascio/mnc

       MNC - Multicast NetCat
                                ------------------------
    
    1. Introduction
    
    mnc is a simple, one-direction-at-a-time, "netcat"-like application using
    multicast. The aim is to provide a tool for easy debugging and testing when
    setting up a multicast network or host. MNC supports IPv4 and IPv6
    any-source-multicast and single-source-multicast, but depending on your
    platform some of those features may not be available:
           
           L = Listen (Implies IGMP/MLD mupport)
           S = Send
           
           +----------+----------+----------+----------+----------+
           | Platform | IPv4 ASM | IPv4 SSM | IPv6 ASM | IPv6 SSM |
           +----------+----------+----------+----------+----------+
           | *nix     |  L + S   |  L + S   |  L + S   |  L + S   |
           +----------+----------+----------+----------+----------+
           | Win2k    |  L + S   |    S     |   None   |   None   |
           +----------+----------+----------+----------+----------+
           | WinXP    |  L + S   |  L + S   |    S     |    S     |
           +----------+----------+----------+----------+----------+
           | Win2k3   |  L + S   |  L + S   |    S     |    S     |
           +----------+----------+----------+----------+----------+
           
    man doc/mnc.1 for information and help on how to run multicast.
    
    2. Supported platforms
    
    As of September 2004, mnc has been compiled and tested with Linux 2.6.8
    kernels, the BSD KAME stack and Windows XP Profesional. Currently automatic
    interface selection does not work on a KAME-based host and you will need to
    specify the interface when in listening mode.
    
    3. Installing mnc from source on UNIX:
    
    	./configure ; make ; make install
    
    4. Compiling from source on Windows:
    
    nmc is compilable with free utilities available from Microsoft. You need to
    download and install the free (as in beer) MS Visual C++ command-line tools
    from:
    	
    	http://msdn.microsoft.com/visualc/vctoolkit2003/
    
    and the SDK relevant to your platform from:
    
    	http://www.microsoft.com/msdownload/platformsdk/sdkupdate/
    
    You can run a Visual C++ command-line session, and use:
    
    	cl /DWINDOWS=1 /TC /c *.c 
    	link /fixed /out:mnc.exe *.obj ws2_32.lib
    
    to compile a working mnc.exe. The Windows version of MNC does not yet fully
    support IPv6 due to underlying limitation in the Operating System.
    
    5. Reporting problems
    
    Any problems, bugs or suggested features should be mailed to colm
    at apache.org.
    
  • 相关阅读:
    pthread线程内存布局
    用户空间实现线程 内核实现线程 线程的调度
    堆 虚拟内存
    Operating System-Thread(3)用户空间和内核空间实现线程
    Linux进程地址空间与虚拟内存
    虚拟地址
    物理内存,虚拟内存,进程地址空间
    CPU中MMU的作用
    进程地址空间与虚拟存储空间的理解
    虚拟地址空间
  • 原文地址:https://www.cnblogs.com/vc60er/p/4235692.html
Copyright © 2011-2022 走看看