네트워크 NAT (network address translator) 구현
*필*
다운로드
장바구니
소개글
100%돌아가구요, 충남대 ㄱㅅㅇ교수님 수업의 NAT입니다. 속도도 엄청 빠르구요.제가 실행화면을 캡쳐 해 놓은 것이 없어서 첨부하지 못했는데요, 절대 사기 아닙니다.
아래는 UI를 캡쳐 했습니다. 인터페이스를 지정하고 gogo 버튼 누르면 실행됩니다.
FTP 까지 되는거 확인했습니다. 인터넷 연결도 되고 동영상 시청해봤습니다.
참고로 WpdPack을 포함시켜야 된다는 것은 알고 있죠? [도구]->[옵션]->VC++ 디렉토리에서 포함파일과 라이브러리파일을 각각 추가시켜주시면 됩니다.
열공 ~
목차
1. 과제개요2. 과제 요구사항
3. 배경기술
4. 구현
5. 프로젝트 설계
6. 결과물
본문내용
1.2. 과제 요구 사항i. Dynamic NAT( RFC 1631 참조)
- TCP protocol 구현.
- TCP checksum & IP checksum 알고리즘 구현
- TCP checksum 경우에는 TCP header와 pseudo header를 고려해야 함
- IP checksum경우에는 IP packet header를 고려해야 함
ii. UI
- NAT table
iii. NAT 구현
- NAT application layer
- 변환되는 포트 번호는 well-known 0~1024 를 제외한 32비트 번호
- 생성
: 새로운 연결 요청 packet이 수신되면 인터넷 IP 주소와 새로운 port번호를 할당하여 packet의 TCP/IP 필드와 함께 NAT table에 저장.
- 삭제
<중 략>
FTP 를 위한 변화
FTP는 21번의 well-known port를 가지고 있기 때문에 static으로 21번의 포트를 할당 해 준다. 192.168.111.1번의 host를 서버로 정하자면 srcip를 192.168.111.1, private port와 public port를 21로 entry를 추가하면 외부에서 들어올 때 destination port가 21번이므로 테이블에서 port를 검색하면 source address와 private port를 얻을 수 있다. 이것으로 변환하여 보내면 응답이 온다. 이 패킷이 외부로 나갈때는 source port를 임시포트로 바꾸고 source address를 NAT의 외부IP로 변환되어 나간다. 임시포트는 static으로 박아둔 21번이므로 변함없이 나간다.
참고 자료
없음압축파일 내 파일목록
A4_hw03_doc.hwp
NAT.zip
WpdPack/docs/html/annotated.html
WpdPack/docs/html/classes.html
WpdPack/docs/html/daemon_8h.html
WpdPack/docs/html/daemon_8h_source.html
WpdPack/docs/html/deprecated.html
WpdPack/docs/html/doxygen.png
WpdPack/docs/html/doxygen__groups_8txt.html
WpdPack/docs/html/dump.gif
WpdPack/docs/html/encoding.gif
WpdPack/docs/html/fileconf_8h.html
WpdPack/docs/html/fileconf_8h_source.html
WpdPack/docs/html/files.html
WpdPack/docs/html/ftv2blank.png
WpdPack/docs/html/ftv2doc.png
WpdPack/docs/html/ftv2folderclosed.png
WpdPack/docs/html/ftv2folderopen.png
WpdPack/docs/html/ftv2lastnode.png
WpdPack/docs/html/ftv2link.png
WpdPack/docs/html/ftv2mlastnode.png
WpdPack/docs/html/ftv2mnode.png
WpdPack/docs/html/ftv2node.png
WpdPack/docs/html/ftv2plastnode.png
WpdPack/docs/html/ftv2pnode.png
WpdPack/docs/html/ftv2vertline.png
WpdPack/docs/html/funcs_2pcap_8h.html
WpdPack/docs/html/funcs_2pcap_8h_source.html
WpdPack/docs/html/functions.html
WpdPack/docs/html/functions_vars.html
WpdPack/docs/html/globals.html
WpdPack/docs/html/globals_0x62.html
WpdPack/docs/html/globals_0x63.html
WpdPack/docs/html/globals_0x64.html
WpdPack/docs/html/globals_0x65.html
WpdPack/docs/html/globals_0x66.html
WpdPack/docs/html/globals_0x67.html
WpdPack/docs/html/globals_0x68.html
WpdPack/docs/html/globals_0x69.html
WpdPack/docs/html/globals_0x6a.html
WpdPack/docs/html/globals_0x6b.html
WpdPack/docs/html/globals_0x6d.html
WpdPack/docs/html/globals_0x6e.html
WpdPack/docs/html/globals_0x6f.html
WpdPack/docs/html/globals_0x70.html
WpdPack/docs/html/globals_0x72.html
WpdPack/docs/html/globals_0x73.html
WpdPack/docs/html/globals_0x74.html
WpdPack/docs/html/globals_0x75.html
WpdPack/docs/html/globals_defs.html
WpdPack/docs/html/globals_enum.html
WpdPack/docs/html/globals_eval.html
WpdPack/docs/html/globals_func.html
WpdPack/docs/html/globals_type.html
WpdPack/docs/html/globals_vars.html
WpdPack/docs/html/group__compilation.html
WpdPack/docs/html/group__internals.html
WpdPack/docs/html/group__language.html
WpdPack/docs/html/group__NPF.html
WpdPack/docs/html/group__NPF__code.html
WpdPack/docs/html/group__NPF__include.html
WpdPack/docs/html/group__NPF__ioctl.html
WpdPack/docs/html/group__NPF__jitter.html
WpdPack/docs/html/group__packetapi.html
WpdPack/docs/html/group__remote.html
WpdPack/docs/html/group__remotefunc.html
WpdPack/docs/html/group__remote__auth__methods.html
WpdPack/docs/html/group__remote__open__flags.html
WpdPack/docs/html/group__remote__pri__func.html
WpdPack/docs/html/group__remote__pri__struct.html
WpdPack/docs/html/group__remote__samp__methods.html
WpdPack/docs/html/group__remote__source__ID.html
WpdPack/docs/html/group__remote__source__string.html
WpdPack/docs/html/group__remote__struct.html
WpdPack/docs/html/group__wpcap.html
WpdPack/docs/html/group__wpcapfunc.html
WpdPack/docs/html/group__wpcapsamps.html
WpdPack/docs/html/group__wpcap__def.html
WpdPack/docs/html/group__wpcap__tut.html
WpdPack/docs/html/group__wpcap__tut1.html
WpdPack/docs/html/group__wpcap__tut2.html
WpdPack/docs/html/group__wpcap__tut3.html
WpdPack/docs/html/group__wpcap__tut4.html
WpdPack/docs/html/group__wpcap__tut5.html
WpdPack/docs/html/group__wpcap__tut6.html
WpdPack/docs/html/group__wpcap__tut7.html
WpdPack/docs/html/group__wpcap__tut8.html
WpdPack/docs/html/group__wpcap__tut9.html
WpdPack/docs/html/incs_2pcap_8h.html
WpdPack/docs/html/incs_2pcap_8h_source.html
WpdPack/docs/html/index.hhc
WpdPack/docs/html/index.hhk
WpdPack/docs/html/index.hhp
WpdPack/docs/html/index.html
WpdPack/docs/html/internals-arch.gif
WpdPack/docs/html/ioctls_8h.html
WpdPack/docs/html/ioctls_8h_source.html
WpdPack/docs/html/jitter_8h.html
WpdPack/docs/html/jitter_8h_source.html
WpdPack/docs/html/main.html
WpdPack/docs/html/main_8txt.html
WpdPack/docs/html/modules.html
WpdPack/docs/html/npf-dump.gif
WpdPack/docs/html/npf-ndis.gif
WpdPack/docs/html/npf-npf.gif
WpdPack/docs/html/Packet_8h.html
WpdPack/docs/html/Packet_8h_source.html
WpdPack/docs/html/pages.html
WpdPack/docs/html/pcap-remote_8h.html
WpdPack/docs/html/pcap-remote_8h_source.html
WpdPack/docs/html/remote-ext_8h.html
WpdPack/docs/html/remote-ext_8h_source.html
WpdPack/docs/html/rpcapd_8h.html
WpdPack/docs/html/rpcapd_8h_source.html
WpdPack/docs/html/stats.gif
WpdPack/docs/html/stats_wpcap.gif
WpdPack/docs/html/structactivehosts.html
WpdPack/docs/html/structactive__pars.html
WpdPack/docs/html/structbinary__stream.html
WpdPack/docs/html/structdaemon__slpars.html
WpdPack/docs/html/structJIT__BPF__Filter.html
WpdPack/docs/html/structPacketHeader.html
WpdPack/docs/html/structpacket__file__header.html
WpdPack/docs/html/structpcap__addr.html
WpdPack/docs/html/structpcap__file__header.html
WpdPack/docs/html/structpcap__if.html
WpdPack/docs/html/structpcap__pkthdr.html
WpdPack/docs/html/structpcap__rmtauth.html
WpdPack/docs/html/structpcap__samp.html
WpdPack/docs/html/structpcap__send__queue.html
WpdPack/docs/html/structpcap__stat.html
WpdPack/docs/html/structrpcap__auth.html
WpdPack/docs/html/structrpcap__filter.html
WpdPack/docs/html/structrpcap__filterbpf__insn.html
WpdPack/docs/html/structrpcap__findalldevs__if.html
WpdPack/docs/html/structrpcap__findalldevs__ifaddr.html
WpdPack/docs/html/structrpcap__header.html
WpdPack/docs/html/structrpcap__openreply.html
WpdPack/docs/html/structrpcap__pkthdr.html
WpdPack/docs/html/structrpcap__sampling.html
WpdPack/docs/html/structrpcap__startcapreply.html
WpdPack/docs/html/structrpcap__startcapreq.html
WpdPack/docs/html/structrpcap__stats.html
WpdPack/docs/html/structsf__pkthdr.html
WpdPack/docs/html/struct__DEVICE__EXTENSION.html
WpdPack/docs/html/struct__INTERNAL__REQUEST.html
WpdPack/docs/html/struct__OPEN__INSTANCE.html
WpdPack/docs/html/struct__PACKET__OID__DATA.html
WpdPack/docs/html/struct__PACKET__RESERVED.html
WpdPack/docs/html/struct____CPU__Private__Data.html
WpdPack/docs/html/style.css
WpdPack/docs/html/tabs.css
WpdPack/docs/html/tab_b.gif
WpdPack/docs/html/tab_l.gif
WpdPack/docs/html/tab_r.gif
WpdPack/docs/html/tree.html
WpdPack/docs/html/utils_8h.html
WpdPack/docs/html/utils_8h_source.html
WpdPack/docs/html/Win32-Extensions_8h.html
WpdPack/docs/html/Win32-Extensions_8h_source.html
WpdPack/docs/html/win32-svc_8h.html
WpdPack/docs/html/win32-svc_8h_source.html
WpdPack/docs/html/winpcap.gif
WpdPack/docs/html/winpcap_small.gif
WpdPack/docs/html/wpcap__remote_8htm.html
WpdPack/docs/html/wpcap__remote_8htm_source.html
WpdPack/docs/html/wpcap__tut1_8txt.html
WpdPack/docs/html/wpcap__tut2_8txt.html
WpdPack/docs/html/wpcap__tut3_8txt.html
WpdPack/docs/html/wpcap__tut4_8txt.html
WpdPack/docs/html/wpcap__tut5_8txt.html
WpdPack/docs/html/wpcap__tut6_8txt.html
WpdPack/docs/html/wpcap__tut7_8txt.html
WpdPack/docs/html/wpcap__tut8_8txt.html
WpdPack/docs/html/wpcap__tut9_8txt.html
WpdPack/docs/html/wpcap__tut_8txt.html
WpdPack/docs/WinPcap_docs.html
WpdPack/Examples-pcap/basic_dump/basic_dump.c
WpdPack/Examples-pcap/basic_dump/basic_dump.dsp
WpdPack/Examples-pcap/basic_dump/basic_dump.dsw
WpdPack/Examples-pcap/basic_dump/basic_dump.vcproj
WpdPack/Examples-pcap/basic_dump/basic_dump.vcproj.MYCOM.Administrator.user
WpdPack/Examples-pcap/basic_dump/GNUmakefile
WpdPack/Examples-pcap/basic_dump_ex/basic_dump_ex.c
WpdPack/Examples-pcap/basic_dump_ex/basic_dump_ex.dsp
WpdPack/Examples-pcap/basic_dump_ex/basic_dump_ex.dsw
WpdPack/Examples-pcap/basic_dump_ex/basic_dump_ex.vcproj
WpdPack/Examples-pcap/basic_dump_ex/basic_dump_ex.vcproj.MYCOM.Administrator.user
WpdPack/Examples-pcap/basic_dump_ex/GNUmakefile
WpdPack/Examples-pcap/GNUmakefile
WpdPack/Examples-pcap/iflist/GNUmakefile
WpdPack/Examples-pcap/iflist/iflist.c
WpdPack/Examples-pcap/iflist/iflist.dsp
WpdPack/Examples-pcap/iflist/iflist.dsw
WpdPack/Examples-pcap/iflist/iflist.vcproj
WpdPack/Examples-pcap/iflist/iflist.vcproj.MYCOM.Administrator.user
WpdPack/Examples-pcap/MakeaAll.dsw
WpdPack/Examples-pcap/MakeaAll.ncb
WpdPack/Examples-pcap/MakeaAll.sln
WpdPack/Examples-pcap/MakeaAll.suo
WpdPack/Examples-pcap/pcap_filter/GNUmakefile
WpdPack/Examples-pcap/pcap_filter/Makefile.unix
WpdPack/Examples-pcap/pcap_filter/pcap_filter.c
WpdPack/Examples-pcap/pcap_filter/pcap_filter.dsp
WpdPack/Examples-pcap/pcap_filter/pcap_filter.dsw
WpdPack/Examples-pcap/pcap_filter/pcap_filter.vcproj
WpdPack/Examples-pcap/pcap_filter/pcap_filter.vcproj.MYCOM.Administrator.user
WpdPack/Examples-pcap/pktdump_ex/GNUmakefile
WpdPack/Examples-pcap/pktdump_ex/pktdump_ex.c
WpdPack/Examples-pcap/pktdump_ex/pktdump_ex.dsp
WpdPack/Examples-pcap/pktdump_ex/pktdump_ex.dsw
WpdPack/Examples-pcap/pktdump_ex/pktdump_ex.vcproj
WpdPack/Examples-pcap/pktdump_ex/pktdump_ex.vcproj.MYCOM.Administrator.user
WpdPack/Examples-pcap/readfile/GNUmakefile
WpdPack/Examples-pcap/readfile/readfile.c
WpdPack/Examples-pcap/readfile/readfile.dsp
WpdPack/Examples-pcap/readfile/readfile.dsw
WpdPack/Examples-pcap/readfile/readfile.vcproj
WpdPack/Examples-pcap/readfile/readfile.vcproj.MYCOM.Administrator.user
WpdPack/Examples-pcap/readfile_ex/GNUmakefile
WpdPack/Examples-pcap/readfile_ex/readfile_ex.c
WpdPack/Examples-pcap/readfile_ex/readfile_ex.dsp
WpdPack/Examples-pcap/readfile_ex/readfile_ex.dsw
WpdPack/Examples-pcap/readfile_ex/readfile_ex.vcproj
WpdPack/Examples-pcap/readfile_ex/readfile_ex.vcproj.MYCOM.Administrator.user
WpdPack/Examples-pcap/savedump/GNUmakefile
WpdPack/Examples-pcap/savedump/savedump.c
WpdPack/Examples-pcap/savedump/savedump.dsp
WpdPack/Examples-pcap/savedump/savedump.dsw
WpdPack/Examples-pcap/savedump/savedump.vcproj
WpdPack/Examples-pcap/savedump/savedump.vcproj.MYCOM.Administrator.user
WpdPack/Examples-pcap/sendpack/GNUmakefile
WpdPack/Examples-pcap/sendpack/sendpack.c
WpdPack/Examples-pcap/sendpack/sendpack.dsp
WpdPack/Examples-pcap/sendpack/sendpack.dsw
WpdPack/Examples-pcap/sendpack/sendpack.vcproj
WpdPack/Examples-pcap/sendpack/sendpack.vcproj.MYCOM.Administrator.user
WpdPack/Examples-pcap/UDPdump/GNUmakefile
WpdPack/Examples-pcap/UDPdump/udpdump.c
WpdPack/Examples-pcap/UDPdump/UDPdump.dsp
WpdPack/Examples-pcap/UDPdump/UDPdump.dsw
WpdPack/Examples-pcap/UDPdump/UDPdump.vcproj
WpdPack/Examples-pcap/UDPdump/UDPdump.vcproj.MYCOM.Administrator.user
WpdPack/Examples-pcap/UpgradeLog.XML
WpdPack/Examples-pcap/_UpgradeReport_Files/UpgradeReport.css
WpdPack/Examples-pcap/_UpgradeReport_Files/UpgradeReport.xslt
WpdPack/Examples-pcap/_UpgradeReport_Files/UpgradeReport_Minus.gif
WpdPack/Examples-pcap/_UpgradeReport_Files/UpgradeReport_Plus.gif
WpdPack/Examples-remote/iflist/iflist.c
WpdPack/Examples-remote/iflist/iflist.dsp
WpdPack/Examples-remote/iflist/iflist.dsw
WpdPack/Examples-remote/iflist/iflist.vcproj
WpdPack/Examples-remote/iflist/iflist.vcproj.MYCOM.Administrator.user
WpdPack/Examples-remote/MakeaAll.dsw
WpdPack/Examples-remote/MakeAll.ncb
WpdPack/Examples-remote/MakeAll.sln
WpdPack/Examples-remote/MakeAll.suo
WpdPack/Examples-remote/misc/basic_dump.c
WpdPack/Examples-remote/misc/basic_dump.dsp
WpdPack/Examples-remote/misc/basic_dump.vcproj
WpdPack/Examples-remote/misc/basic_dump.vcproj.MYCOM.Administrator.user
WpdPack/Examples-remote/misc/basic_dump_ex.c
WpdPack/Examples-remote/misc/basic_dump_ex.dsp
WpdPack/Examples-remote/misc/basic_dump_ex.vcproj
WpdPack/Examples-remote/misc/basic_dump_ex.vcproj.MYCOM.Administrator.user
WpdPack/Examples-remote/misc/MakeaAll.dsw
WpdPack/Examples-remote/misc/MakeAll.sln
WpdPack/Examples-remote/misc/readfile.c
WpdPack/Examples-remote/misc/readfile.dsp
WpdPack/Examples-remote/misc/readfile.vcproj
WpdPack/Examples-remote/misc/readfile.vcproj.MYCOM.Administrator.user
WpdPack/Examples-remote/misc/readfile_ex.c
WpdPack/Examples-remote/misc/readfile_ex.dsp
WpdPack/Examples-remote/misc/readfile_ex.vcproj
WpdPack/Examples-remote/misc/readfile_ex.vcproj.MYCOM.Administrator.user
WpdPack/Examples-remote/misc/savedump.c
WpdPack/Examples-remote/misc/savedump.dsp
WpdPack/Examples-remote/misc/savedump.vcproj
WpdPack/Examples-remote/misc/savedump.vcproj.MYCOM.Administrator.user
WpdPack/Examples-remote/misc/sendpack.c
WpdPack/Examples-remote/misc/sendpack.dsp
WpdPack/Examples-remote/misc/sendpack.vcproj
WpdPack/Examples-remote/misc/sendpack.vcproj.MYCOM.Administrator.user
WpdPack/Examples-remote/PacketDriver/GetMacAddress/GetMacAddress.c
WpdPack/Examples-remote/PacketDriver/GetMacAddress/GetMacAddress.dsp
WpdPack/Examples-remote/PacketDriver/GetMacAddress/GetMacAddress.vcproj
WpdPack/Examples-remote/PacketDriver/GetMacAddress/GetMacAddress.vcproj.MYCOM.Administrator.user
WpdPack/Examples-remote/PacketDriver/readme.txt
WpdPack/Examples-remote/PacketDriver/TestPacketCapture/TestPacketCapture.c
WpdPack/Examples-remote/PacketDriver/TestPacketCapture/TestPacketCapture.dsp
WpdPack/Examples-remote/PacketDriver/TestPacketCapture/TestPacketCapture.vcproj
WpdPack/Examples-remote/PacketDriver/TestPacketCapture/TestPacketCapture.vcproj.MYCOM.Administrator.user
WpdPack/Examples-remote/PacketDriver/TestPacketSend/TestPacketSend.c
WpdPack/Examples-remote/PacketDriver/TestPacketSend/TestPacketSend.dsp
WpdPack/Examples-remote/PacketDriver/TestPacketSend/TestPacketSend.vcproj
WpdPack/Examples-remote/PacketDriver/TestPacketSend/TestPacketSend.vcproj.MYCOM.Administrator.user
WpdPack/Examples-remote/pcap_filter/pcap_filter.c
WpdPack/Examples-remote/pcap_filter/pcap_filter.dsp
WpdPack/Examples-remote/pcap_filter/pcap_filter.dsw
WpdPack/Examples-remote/pcap_filter/pcap_filter.vcproj
WpdPack/Examples-remote/pcap_filter/pcap_filter.vcproj.MYCOM.Administrator.user
WpdPack/Examples-remote/pcap_fopen/pcap_fopen.cpp
WpdPack/Examples-remote/pcap_fopen/pcap_fopen.vcproj
WpdPack/Examples-remote/pcap_fopen/pcap_fopen.vcproj.MYCOM.Administrator.user
WpdPack/Examples-remote/pktdump_ex/pktdump_ex.c
WpdPack/Examples-remote/pktdump_ex/pktdump_ex.dsp
WpdPack/Examples-remote/pktdump_ex/pktdump_ex.dsw
WpdPack/Examples-remote/pktdump_ex/pktdump_ex.vcproj
WpdPack/Examples-remote/pktdump_ex/pktdump_ex.vcproj.MYCOM.Administrator.user
WpdPack/Examples-remote/sendcap/sencap.dsw
WpdPack/Examples-remote/sendcap/sendcap.c
WpdPack/Examples-remote/sendcap/sendcap.dsp
WpdPack/Examples-remote/sendcap/sendcap.vcproj
WpdPack/Examples-remote/sendcap/sendcap.vcproj.MYCOM.Administrator.user
WpdPack/Examples-remote/smp_1/smp_1.c
WpdPack/Examples-remote/smp_1/smp_1.dsp
WpdPack/Examples-remote/smp_1/smp_1.dsw
WpdPack/Examples-remote/smp_1/smp_1.vcproj
WpdPack/Examples-remote/smp_1/smp_1.vcproj.MYCOM.Administrator.user
WpdPack/Examples-remote/tcptop/tcptop.c
WpdPack/Examples-remote/tcptop/tcptop.dsp
WpdPack/Examples-remote/tcptop/tcptop.dsw
WpdPack/Examples-remote/tcptop/tcptop.vcproj
WpdPack/Examples-remote/tcptop/tcptop.vcproj.MYCOM.Administrator.user
WpdPack/Examples-remote/UDPdump/udpdump.c
WpdPack/Examples-remote/UDPdump/UDPdump.dsp
WpdPack/Examples-remote/UDPdump/UDPdump.dsw
WpdPack/Examples-remote/UDPdump/UDPdump.vcproj
WpdPack/Examples-remote/UDPdump/UDPdump.vcproj.MYCOM.Administrator.user
WpdPack/Examples-remote/UpgradeLog.XML
WpdPack/Examples-remote/UserLevelBridge/UserBridge.c
WpdPack/Examples-remote/UserLevelBridge/UserBridge.dsp
WpdPack/Examples-remote/UserLevelBridge/UserBridge.dsw
WpdPack/Examples-remote/UserLevelBridge/UserBridge.vcproj
WpdPack/Examples-remote/UserLevelBridge/UserBridge.vcproj.MYCOM.Administrator.user
WpdPack/Examples-remote/_UpgradeReport_Files/UpgradeReport.css
WpdPack/Examples-remote/_UpgradeReport_Files/UpgradeReport.xslt
WpdPack/Examples-remote/_UpgradeReport_Files/UpgradeReport_Minus.gif
WpdPack/Examples-remote/_UpgradeReport_Files/UpgradeReport_Plus.gif
WpdPack/Include/bittypes.h
WpdPack/Include/ip6_misc.h
WpdPack/Include/Packet32.h
WpdPack/Include/pcap/bluetooth.h
WpdPack/Include/pcap/bpf.h
WpdPack/Include/pcap/namedb.h
WpdPack/Include/pcap/pcap.h
WpdPack/Include/pcap/sll.h
WpdPack/Include/pcap/usb.h
WpdPack/Include/pcap/vlan.h
WpdPack/Include/pcap-bpf.h
WpdPack/Include/pcap-namedb.h
WpdPack/Include/pcap-stdinc.h
WpdPack/Include/pcap.h
WpdPack/Include/remote-ext.h
WpdPack/Include/Win32-Extensions.h
WpdPack/Lib/libpacket.a
WpdPack/Lib/libwpcap.a
WpdPack/Lib/Packet.lib
WpdPack/Lib/wpcap.lib
WpdPack/Lib/x64/Packet.lib
WpdPack/Lib/x64/wpcap.lib
NAT.zip
WpdPack/docs/html/annotated.html
WpdPack/docs/html/classes.html
WpdPack/docs/html/daemon_8h.html
WpdPack/docs/html/daemon_8h_source.html
WpdPack/docs/html/deprecated.html
WpdPack/docs/html/doxygen.png
WpdPack/docs/html/doxygen__groups_8txt.html
WpdPack/docs/html/dump.gif
WpdPack/docs/html/encoding.gif
WpdPack/docs/html/fileconf_8h.html
WpdPack/docs/html/fileconf_8h_source.html
WpdPack/docs/html/files.html
WpdPack/docs/html/ftv2blank.png
WpdPack/docs/html/ftv2doc.png
WpdPack/docs/html/ftv2folderclosed.png
WpdPack/docs/html/ftv2folderopen.png
WpdPack/docs/html/ftv2lastnode.png
WpdPack/docs/html/ftv2link.png
WpdPack/docs/html/ftv2mlastnode.png
WpdPack/docs/html/ftv2mnode.png
WpdPack/docs/html/ftv2node.png
WpdPack/docs/html/ftv2plastnode.png
WpdPack/docs/html/ftv2pnode.png
WpdPack/docs/html/ftv2vertline.png
WpdPack/docs/html/funcs_2pcap_8h.html
WpdPack/docs/html/funcs_2pcap_8h_source.html
WpdPack/docs/html/functions.html
WpdPack/docs/html/functions_vars.html
WpdPack/docs/html/globals.html
WpdPack/docs/html/globals_0x62.html
WpdPack/docs/html/globals_0x63.html
WpdPack/docs/html/globals_0x64.html
WpdPack/docs/html/globals_0x65.html
WpdPack/docs/html/globals_0x66.html
WpdPack/docs/html/globals_0x67.html
WpdPack/docs/html/globals_0x68.html
WpdPack/docs/html/globals_0x69.html
WpdPack/docs/html/globals_0x6a.html
WpdPack/docs/html/globals_0x6b.html
WpdPack/docs/html/globals_0x6d.html
WpdPack/docs/html/globals_0x6e.html
WpdPack/docs/html/globals_0x6f.html
WpdPack/docs/html/globals_0x70.html
WpdPack/docs/html/globals_0x72.html
WpdPack/docs/html/globals_0x73.html
WpdPack/docs/html/globals_0x74.html
WpdPack/docs/html/globals_0x75.html
WpdPack/docs/html/globals_defs.html
WpdPack/docs/html/globals_enum.html
WpdPack/docs/html/globals_eval.html
WpdPack/docs/html/globals_func.html
WpdPack/docs/html/globals_type.html
WpdPack/docs/html/globals_vars.html
WpdPack/docs/html/group__compilation.html
WpdPack/docs/html/group__internals.html
WpdPack/docs/html/group__language.html
WpdPack/docs/html/group__NPF.html
WpdPack/docs/html/group__NPF__code.html
WpdPack/docs/html/group__NPF__include.html
WpdPack/docs/html/group__NPF__ioctl.html
WpdPack/docs/html/group__NPF__jitter.html
WpdPack/docs/html/group__packetapi.html
WpdPack/docs/html/group__remote.html
WpdPack/docs/html/group__remotefunc.html
WpdPack/docs/html/group__remote__auth__methods.html
WpdPack/docs/html/group__remote__open__flags.html
WpdPack/docs/html/group__remote__pri__func.html
WpdPack/docs/html/group__remote__pri__struct.html
WpdPack/docs/html/group__remote__samp__methods.html
WpdPack/docs/html/group__remote__source__ID.html
WpdPack/docs/html/group__remote__source__string.html
WpdPack/docs/html/group__remote__struct.html
WpdPack/docs/html/group__wpcap.html
WpdPack/docs/html/group__wpcapfunc.html
WpdPack/docs/html/group__wpcapsamps.html
WpdPack/docs/html/group__wpcap__def.html
WpdPack/docs/html/group__wpcap__tut.html
WpdPack/docs/html/group__wpcap__tut1.html
WpdPack/docs/html/group__wpcap__tut2.html
WpdPack/docs/html/group__wpcap__tut3.html
WpdPack/docs/html/group__wpcap__tut4.html
WpdPack/docs/html/group__wpcap__tut5.html
WpdPack/docs/html/group__wpcap__tut6.html
WpdPack/docs/html/group__wpcap__tut7.html
WpdPack/docs/html/group__wpcap__tut8.html
WpdPack/docs/html/group__wpcap__tut9.html
WpdPack/docs/html/incs_2pcap_8h.html
WpdPack/docs/html/incs_2pcap_8h_source.html
WpdPack/docs/html/index.hhc
WpdPack/docs/html/index.hhk
WpdPack/docs/html/index.hhp
WpdPack/docs/html/index.html
WpdPack/docs/html/internals-arch.gif
WpdPack/docs/html/ioctls_8h.html
WpdPack/docs/html/ioctls_8h_source.html
WpdPack/docs/html/jitter_8h.html
WpdPack/docs/html/jitter_8h_source.html
WpdPack/docs/html/main.html
WpdPack/docs/html/main_8txt.html
WpdPack/docs/html/modules.html
WpdPack/docs/html/npf-dump.gif
WpdPack/docs/html/npf-ndis.gif
WpdPack/docs/html/npf-npf.gif
WpdPack/docs/html/Packet_8h.html
WpdPack/docs/html/Packet_8h_source.html
WpdPack/docs/html/pages.html
WpdPack/docs/html/pcap-remote_8h.html
WpdPack/docs/html/pcap-remote_8h_source.html
WpdPack/docs/html/remote-ext_8h.html
WpdPack/docs/html/remote-ext_8h_source.html
WpdPack/docs/html/rpcapd_8h.html
WpdPack/docs/html/rpcapd_8h_source.html
WpdPack/docs/html/stats.gif
WpdPack/docs/html/stats_wpcap.gif
WpdPack/docs/html/structactivehosts.html
WpdPack/docs/html/structactive__pars.html
WpdPack/docs/html/structbinary__stream.html
WpdPack/docs/html/structdaemon__slpars.html
WpdPack/docs/html/structJIT__BPF__Filter.html
WpdPack/docs/html/structPacketHeader.html
WpdPack/docs/html/structpacket__file__header.html
WpdPack/docs/html/structpcap__addr.html
WpdPack/docs/html/structpcap__file__header.html
WpdPack/docs/html/structpcap__if.html
WpdPack/docs/html/structpcap__pkthdr.html
WpdPack/docs/html/structpcap__rmtauth.html
WpdPack/docs/html/structpcap__samp.html
WpdPack/docs/html/structpcap__send__queue.html
WpdPack/docs/html/structpcap__stat.html
WpdPack/docs/html/structrpcap__auth.html
WpdPack/docs/html/structrpcap__filter.html
WpdPack/docs/html/structrpcap__filterbpf__insn.html
WpdPack/docs/html/structrpcap__findalldevs__if.html
WpdPack/docs/html/structrpcap__findalldevs__ifaddr.html
WpdPack/docs/html/structrpcap__header.html
WpdPack/docs/html/structrpcap__openreply.html
WpdPack/docs/html/structrpcap__pkthdr.html
WpdPack/docs/html/structrpcap__sampling.html
WpdPack/docs/html/structrpcap__startcapreply.html
WpdPack/docs/html/structrpcap__startcapreq.html
WpdPack/docs/html/structrpcap__stats.html
WpdPack/docs/html/structsf__pkthdr.html
WpdPack/docs/html/struct__DEVICE__EXTENSION.html
WpdPack/docs/html/struct__INTERNAL__REQUEST.html
WpdPack/docs/html/struct__OPEN__INSTANCE.html
WpdPack/docs/html/struct__PACKET__OID__DATA.html
WpdPack/docs/html/struct__PACKET__RESERVED.html
WpdPack/docs/html/struct____CPU__Private__Data.html
WpdPack/docs/html/style.css
WpdPack/docs/html/tabs.css
WpdPack/docs/html/tab_b.gif
WpdPack/docs/html/tab_l.gif
WpdPack/docs/html/tab_r.gif
WpdPack/docs/html/tree.html
WpdPack/docs/html/utils_8h.html
WpdPack/docs/html/utils_8h_source.html
WpdPack/docs/html/Win32-Extensions_8h.html
WpdPack/docs/html/Win32-Extensions_8h_source.html
WpdPack/docs/html/win32-svc_8h.html
WpdPack/docs/html/win32-svc_8h_source.html
WpdPack/docs/html/winpcap.gif
WpdPack/docs/html/winpcap_small.gif
WpdPack/docs/html/wpcap__remote_8htm.html
WpdPack/docs/html/wpcap__remote_8htm_source.html
WpdPack/docs/html/wpcap__tut1_8txt.html
WpdPack/docs/html/wpcap__tut2_8txt.html
WpdPack/docs/html/wpcap__tut3_8txt.html
WpdPack/docs/html/wpcap__tut4_8txt.html
WpdPack/docs/html/wpcap__tut5_8txt.html
WpdPack/docs/html/wpcap__tut6_8txt.html
WpdPack/docs/html/wpcap__tut7_8txt.html
WpdPack/docs/html/wpcap__tut8_8txt.html
WpdPack/docs/html/wpcap__tut9_8txt.html
WpdPack/docs/html/wpcap__tut_8txt.html
WpdPack/docs/WinPcap_docs.html
WpdPack/Examples-pcap/basic_dump/basic_dump.c
WpdPack/Examples-pcap/basic_dump/basic_dump.dsp
WpdPack/Examples-pcap/basic_dump/basic_dump.dsw
WpdPack/Examples-pcap/basic_dump/basic_dump.vcproj
WpdPack/Examples-pcap/basic_dump/basic_dump.vcproj.MYCOM.Administrator.user
WpdPack/Examples-pcap/basic_dump/GNUmakefile
WpdPack/Examples-pcap/basic_dump_ex/basic_dump_ex.c
WpdPack/Examples-pcap/basic_dump_ex/basic_dump_ex.dsp
WpdPack/Examples-pcap/basic_dump_ex/basic_dump_ex.dsw
WpdPack/Examples-pcap/basic_dump_ex/basic_dump_ex.vcproj
WpdPack/Examples-pcap/basic_dump_ex/basic_dump_ex.vcproj.MYCOM.Administrator.user
WpdPack/Examples-pcap/basic_dump_ex/GNUmakefile
WpdPack/Examples-pcap/GNUmakefile
WpdPack/Examples-pcap/iflist/GNUmakefile
WpdPack/Examples-pcap/iflist/iflist.c
WpdPack/Examples-pcap/iflist/iflist.dsp
WpdPack/Examples-pcap/iflist/iflist.dsw
WpdPack/Examples-pcap/iflist/iflist.vcproj
WpdPack/Examples-pcap/iflist/iflist.vcproj.MYCOM.Administrator.user
WpdPack/Examples-pcap/MakeaAll.dsw
WpdPack/Examples-pcap/MakeaAll.ncb
WpdPack/Examples-pcap/MakeaAll.sln
WpdPack/Examples-pcap/MakeaAll.suo
WpdPack/Examples-pcap/pcap_filter/GNUmakefile
WpdPack/Examples-pcap/pcap_filter/Makefile.unix
WpdPack/Examples-pcap/pcap_filter/pcap_filter.c
WpdPack/Examples-pcap/pcap_filter/pcap_filter.dsp
WpdPack/Examples-pcap/pcap_filter/pcap_filter.dsw
WpdPack/Examples-pcap/pcap_filter/pcap_filter.vcproj
WpdPack/Examples-pcap/pcap_filter/pcap_filter.vcproj.MYCOM.Administrator.user
WpdPack/Examples-pcap/pktdump_ex/GNUmakefile
WpdPack/Examples-pcap/pktdump_ex/pktdump_ex.c
WpdPack/Examples-pcap/pktdump_ex/pktdump_ex.dsp
WpdPack/Examples-pcap/pktdump_ex/pktdump_ex.dsw
WpdPack/Examples-pcap/pktdump_ex/pktdump_ex.vcproj
WpdPack/Examples-pcap/pktdump_ex/pktdump_ex.vcproj.MYCOM.Administrator.user
WpdPack/Examples-pcap/readfile/GNUmakefile
WpdPack/Examples-pcap/readfile/readfile.c
WpdPack/Examples-pcap/readfile/readfile.dsp
WpdPack/Examples-pcap/readfile/readfile.dsw
WpdPack/Examples-pcap/readfile/readfile.vcproj
WpdPack/Examples-pcap/readfile/readfile.vcproj.MYCOM.Administrator.user
WpdPack/Examples-pcap/readfile_ex/GNUmakefile
WpdPack/Examples-pcap/readfile_ex/readfile_ex.c
WpdPack/Examples-pcap/readfile_ex/readfile_ex.dsp
WpdPack/Examples-pcap/readfile_ex/readfile_ex.dsw
WpdPack/Examples-pcap/readfile_ex/readfile_ex.vcproj
WpdPack/Examples-pcap/readfile_ex/readfile_ex.vcproj.MYCOM.Administrator.user
WpdPack/Examples-pcap/savedump/GNUmakefile
WpdPack/Examples-pcap/savedump/savedump.c
WpdPack/Examples-pcap/savedump/savedump.dsp
WpdPack/Examples-pcap/savedump/savedump.dsw
WpdPack/Examples-pcap/savedump/savedump.vcproj
WpdPack/Examples-pcap/savedump/savedump.vcproj.MYCOM.Administrator.user
WpdPack/Examples-pcap/sendpack/GNUmakefile
WpdPack/Examples-pcap/sendpack/sendpack.c
WpdPack/Examples-pcap/sendpack/sendpack.dsp
WpdPack/Examples-pcap/sendpack/sendpack.dsw
WpdPack/Examples-pcap/sendpack/sendpack.vcproj
WpdPack/Examples-pcap/sendpack/sendpack.vcproj.MYCOM.Administrator.user
WpdPack/Examples-pcap/UDPdump/GNUmakefile
WpdPack/Examples-pcap/UDPdump/udpdump.c
WpdPack/Examples-pcap/UDPdump/UDPdump.dsp
WpdPack/Examples-pcap/UDPdump/UDPdump.dsw
WpdPack/Examples-pcap/UDPdump/UDPdump.vcproj
WpdPack/Examples-pcap/UDPdump/UDPdump.vcproj.MYCOM.Administrator.user
WpdPack/Examples-pcap/UpgradeLog.XML
WpdPack/Examples-pcap/_UpgradeReport_Files/UpgradeReport.css
WpdPack/Examples-pcap/_UpgradeReport_Files/UpgradeReport.xslt
WpdPack/Examples-pcap/_UpgradeReport_Files/UpgradeReport_Minus.gif
WpdPack/Examples-pcap/_UpgradeReport_Files/UpgradeReport_Plus.gif
WpdPack/Examples-remote/iflist/iflist.c
WpdPack/Examples-remote/iflist/iflist.dsp
WpdPack/Examples-remote/iflist/iflist.dsw
WpdPack/Examples-remote/iflist/iflist.vcproj
WpdPack/Examples-remote/iflist/iflist.vcproj.MYCOM.Administrator.user
WpdPack/Examples-remote/MakeaAll.dsw
WpdPack/Examples-remote/MakeAll.ncb
WpdPack/Examples-remote/MakeAll.sln
WpdPack/Examples-remote/MakeAll.suo
WpdPack/Examples-remote/misc/basic_dump.c
WpdPack/Examples-remote/misc/basic_dump.dsp
WpdPack/Examples-remote/misc/basic_dump.vcproj
WpdPack/Examples-remote/misc/basic_dump.vcproj.MYCOM.Administrator.user
WpdPack/Examples-remote/misc/basic_dump_ex.c
WpdPack/Examples-remote/misc/basic_dump_ex.dsp
WpdPack/Examples-remote/misc/basic_dump_ex.vcproj
WpdPack/Examples-remote/misc/basic_dump_ex.vcproj.MYCOM.Administrator.user
WpdPack/Examples-remote/misc/MakeaAll.dsw
WpdPack/Examples-remote/misc/MakeAll.sln
WpdPack/Examples-remote/misc/readfile.c
WpdPack/Examples-remote/misc/readfile.dsp
WpdPack/Examples-remote/misc/readfile.vcproj
WpdPack/Examples-remote/misc/readfile.vcproj.MYCOM.Administrator.user
WpdPack/Examples-remote/misc/readfile_ex.c
WpdPack/Examples-remote/misc/readfile_ex.dsp
WpdPack/Examples-remote/misc/readfile_ex.vcproj
WpdPack/Examples-remote/misc/readfile_ex.vcproj.MYCOM.Administrator.user
WpdPack/Examples-remote/misc/savedump.c
WpdPack/Examples-remote/misc/savedump.dsp
WpdPack/Examples-remote/misc/savedump.vcproj
WpdPack/Examples-remote/misc/savedump.vcproj.MYCOM.Administrator.user
WpdPack/Examples-remote/misc/sendpack.c
WpdPack/Examples-remote/misc/sendpack.dsp
WpdPack/Examples-remote/misc/sendpack.vcproj
WpdPack/Examples-remote/misc/sendpack.vcproj.MYCOM.Administrator.user
WpdPack/Examples-remote/PacketDriver/GetMacAddress/GetMacAddress.c
WpdPack/Examples-remote/PacketDriver/GetMacAddress/GetMacAddress.dsp
WpdPack/Examples-remote/PacketDriver/GetMacAddress/GetMacAddress.vcproj
WpdPack/Examples-remote/PacketDriver/GetMacAddress/GetMacAddress.vcproj.MYCOM.Administrator.user
WpdPack/Examples-remote/PacketDriver/readme.txt
WpdPack/Examples-remote/PacketDriver/TestPacketCapture/TestPacketCapture.c
WpdPack/Examples-remote/PacketDriver/TestPacketCapture/TestPacketCapture.dsp
WpdPack/Examples-remote/PacketDriver/TestPacketCapture/TestPacketCapture.vcproj
WpdPack/Examples-remote/PacketDriver/TestPacketCapture/TestPacketCapture.vcproj.MYCOM.Administrator.user
WpdPack/Examples-remote/PacketDriver/TestPacketSend/TestPacketSend.c
WpdPack/Examples-remote/PacketDriver/TestPacketSend/TestPacketSend.dsp
WpdPack/Examples-remote/PacketDriver/TestPacketSend/TestPacketSend.vcproj
WpdPack/Examples-remote/PacketDriver/TestPacketSend/TestPacketSend.vcproj.MYCOM.Administrator.user
WpdPack/Examples-remote/pcap_filter/pcap_filter.c
WpdPack/Examples-remote/pcap_filter/pcap_filter.dsp
WpdPack/Examples-remote/pcap_filter/pcap_filter.dsw
WpdPack/Examples-remote/pcap_filter/pcap_filter.vcproj
WpdPack/Examples-remote/pcap_filter/pcap_filter.vcproj.MYCOM.Administrator.user
WpdPack/Examples-remote/pcap_fopen/pcap_fopen.cpp
WpdPack/Examples-remote/pcap_fopen/pcap_fopen.vcproj
WpdPack/Examples-remote/pcap_fopen/pcap_fopen.vcproj.MYCOM.Administrator.user
WpdPack/Examples-remote/pktdump_ex/pktdump_ex.c
WpdPack/Examples-remote/pktdump_ex/pktdump_ex.dsp
WpdPack/Examples-remote/pktdump_ex/pktdump_ex.dsw
WpdPack/Examples-remote/pktdump_ex/pktdump_ex.vcproj
WpdPack/Examples-remote/pktdump_ex/pktdump_ex.vcproj.MYCOM.Administrator.user
WpdPack/Examples-remote/sendcap/sencap.dsw
WpdPack/Examples-remote/sendcap/sendcap.c
WpdPack/Examples-remote/sendcap/sendcap.dsp
WpdPack/Examples-remote/sendcap/sendcap.vcproj
WpdPack/Examples-remote/sendcap/sendcap.vcproj.MYCOM.Administrator.user
WpdPack/Examples-remote/smp_1/smp_1.c
WpdPack/Examples-remote/smp_1/smp_1.dsp
WpdPack/Examples-remote/smp_1/smp_1.dsw
WpdPack/Examples-remote/smp_1/smp_1.vcproj
WpdPack/Examples-remote/smp_1/smp_1.vcproj.MYCOM.Administrator.user
WpdPack/Examples-remote/tcptop/tcptop.c
WpdPack/Examples-remote/tcptop/tcptop.dsp
WpdPack/Examples-remote/tcptop/tcptop.dsw
WpdPack/Examples-remote/tcptop/tcptop.vcproj
WpdPack/Examples-remote/tcptop/tcptop.vcproj.MYCOM.Administrator.user
WpdPack/Examples-remote/UDPdump/udpdump.c
WpdPack/Examples-remote/UDPdump/UDPdump.dsp
WpdPack/Examples-remote/UDPdump/UDPdump.dsw
WpdPack/Examples-remote/UDPdump/UDPdump.vcproj
WpdPack/Examples-remote/UDPdump/UDPdump.vcproj.MYCOM.Administrator.user
WpdPack/Examples-remote/UpgradeLog.XML
WpdPack/Examples-remote/UserLevelBridge/UserBridge.c
WpdPack/Examples-remote/UserLevelBridge/UserBridge.dsp
WpdPack/Examples-remote/UserLevelBridge/UserBridge.dsw
WpdPack/Examples-remote/UserLevelBridge/UserBridge.vcproj
WpdPack/Examples-remote/UserLevelBridge/UserBridge.vcproj.MYCOM.Administrator.user
WpdPack/Examples-remote/_UpgradeReport_Files/UpgradeReport.css
WpdPack/Examples-remote/_UpgradeReport_Files/UpgradeReport.xslt
WpdPack/Examples-remote/_UpgradeReport_Files/UpgradeReport_Minus.gif
WpdPack/Examples-remote/_UpgradeReport_Files/UpgradeReport_Plus.gif
WpdPack/Include/bittypes.h
WpdPack/Include/ip6_misc.h
WpdPack/Include/Packet32.h
WpdPack/Include/pcap/bluetooth.h
WpdPack/Include/pcap/bpf.h
WpdPack/Include/pcap/namedb.h
WpdPack/Include/pcap/pcap.h
WpdPack/Include/pcap/sll.h
WpdPack/Include/pcap/usb.h
WpdPack/Include/pcap/vlan.h
WpdPack/Include/pcap-bpf.h
WpdPack/Include/pcap-namedb.h
WpdPack/Include/pcap-stdinc.h
WpdPack/Include/pcap.h
WpdPack/Include/remote-ext.h
WpdPack/Include/Win32-Extensions.h
WpdPack/Lib/libpacket.a
WpdPack/Lib/libwpcap.a
WpdPack/Lib/Packet.lib
WpdPack/Lib/wpcap.lib
WpdPack/Lib/x64/Packet.lib
WpdPack/Lib/x64/wpcap.lib