Squid中文权威指南

Size: px
Start display at page:

Download "Squid中文权威指南"

Transcription

1 Squid 中文权威指南 ( 第 16 章 ) 译者序 : 本人在工作中维护着数台 Squid 服务器, 多次参阅 Duane Wessels( 他也是 Squid 的创始人 ) 的这本书, 原书名是 "Squid: The Definitive Guide", 由 O'Reilly 出版 我在业余时间把它翻译成中文, 希望对中文 Squid 用户有所帮助 对普通的单位上网用户,Squid 可充当代理服务器 ; 而对 Sina,NetEase 这样的大型站点,Squid 又充当 WEB 加速器 这两个角色它都扮演得异常优秀 窗外繁星点点, 开源的世界亦如这星空般美丽, 而 Squid 是其中耀眼的一颗星 对本译版有任何问题, 请跟我联系, 我的 是 :yonghua_peng@yahoo.com.cn 彭勇华

2 目录第 16 章调试和故障处理 一些通用问题 "Failed to make swap directory" "Address already in use" "Could not determine fully qualified hostname" "DNS name lookup tests failed" "Illegal character in hostname" "Running out of filedescriptors" "icmprecv: Connection refused" 在运行一段时间后,Squid 变慢了 调试访问控制 通过 cache.log 进行调试 Coredump, 断点, 和堆栈跟踪 不能找到 core 文件? 重现问题 报告 Bug...17 译后序...19 Squid 中文权威指南 1

3 第 16 章调试和故障处理 16.1 一些通用问题 在讨论通用 debug 前, 我先提起一些经常发生的问题 "Failed to make swap directory" Failed to make swap directory /var/spool/cache: (13) Permission denied 这点发生在你运行 squid -z, 并且 squid 的用户 ID 没有对 /var/spool 目录的写权限的时候 记住假如以 root 来启动 squid, 并且没有增加 cache_effective_user 行, 那么 squid 默认以 nobody 用户运行 解决方法很简单 : # chown nobody:nobody /var/spool "Address already in use" commbind: Cannot bind socket FD 10 to *:3128: Address already in use 这个消息出现在 bind() 系统调用失败时, 因为请求端口已经被其他应用程序所打开 通 常, 若已有一个 squid 在运行, 而又试图启动第 2 个 squid 实例, 就会发生这种情况 假如 你见到这个错误消息, 请使用 ps 来观察是否 squid 已经在运行 Squid 使用 SO_REUSEADDR socket 选项, 以便 bind() 调用总能成功, 即使仍有一些残 余的 socket 位于 TIME_WAIT 状态 若该消息出现, 尽管 squid 没有在运行, 但你的操作系 统可能在处理这个问题上有 bug 重启操作系统是解决问题的一个方法 另一个可能性是端口 ( 例如 3128) 当前已被其他应用程序使用 假如你怀疑这点, 就 可使用 lsof 程序来发现哪个应用正在该端口上侦听 FreeBSD 用户能使用 sockstat 代替 "Could not determine fully qualified hostname" FATAL: Could not determine fully qualified hostname. Please set 'visible_hostname' 法 : 假如 squid 不能识别它自己的完整可验证域名, 就会报这个错 如下是 squid 使用的算 1) 假如你将 squid 的 HTTP 端口绑定在指定的接口地址上,squid 试图对该地址执行反 向 DNS 查询 假如成功, 查询答案就被用上 Squid 中文权威指南 2

4 2) Squid 调用 gethostname( ) 函数, 然后使用 gethostbyname( ) 函数, 试着解析其 IP 地址 假如成功,squid 使用后者函数返回的官方主机名串 假如以上 2 项技术都不能工作,squid 以前面提到的致命错误消息退出 在该情形下, 必须使用 visible_hostname 指令来告诉 squid 它的主机名 例如 : visible_hostname my.host.name "DNS name lookup tests failed" 默认情况下,squid 在启动前执行一些 DNS 查询 这点确保你的 DNS 服务器可到达, 并且运行正确 假如测试失败, 可在 cache.log 或 syslog 里见到如下消息 : FATAL: ipcache_init: DNS name lookup tests failed 假如你在内网里使用 squid,squid 可能不能查询到它的标准主机名列表 可使用 dns_testnames 指令来指定你自己的主机名 只要接受到响应,squid 就会认为 DNS 测试成功 假如你想完全跳过 DNS 测试, 简单的在启动 squid 时, 使用 -D 命令行选项 : % squid -D "Illegal character in hostname" urlparse: Illegal character in hostname 'super_bikes.tripod.com' 默认情况下,squid 检查 URL 的主机名部分的字符, 假如它发现了非标准的字符,squid 会抱怨 参考 RFC 1034 和 1035, 名字必须由字母 A-Z, 数字 0-9, 以及短横线 (-) 组成 下划 线 (_) 是最有问题的字符之一 Squid 验证主机名是因为, 在某些情形下,DNS 对畸形字符的解析会很困难 例如 : % host super_bikes.tripod.com super_bikes.tripod.com has address % ping super_bikes.tripod.com ping: cannot resolve super_bikes.tripod.com: Unknown server error Squid 事先检查主机名, 这好过于以后返回 Unknown server error 消息 然后它会告诉用 户主机名包含畸形字符 某些 DNS 解析器确实能处理下划线和其他非标准字符 假如你想让 squid 不检查主机 Squid 中文权威指南 3

5 名, 请在运行./configure 时, 使用 disable-hostname-checks 选项 假如你允许下划线作为唯 一的例外, 那么使用 enable-underscores 选项 "Running out of filedescriptors" WARNING! Your cache is running out of filedescriptors 上述消息出现在 squid 用完了所有可用文件描述符时 假如这点发生在正常条件下, 就 有必要增加内核的文件描述符限制, 并且重新编译 squid 请见 章 假如 squid 成为了拒绝服务攻击的目标, 那也会见到这条消息 某些人可能有意或无意 的, 同时对 squid 发送成百上千条请求 在这种情形下, 可以增加一条包过滤规则, 阻止来 自恶意地址的 TCP 进入连接 假如攻击是分布式的, 或使用假冒源地址, 就很难阻止它们 转发循环 ( 见 10.2 章 ) 也可能耗尽 squid 的所有文件描述符, 但仅仅发生在 squid 不能检测到死循环时 Via 头部包含了某个请求遍历过的所有代理的主机名 squid 在头部里查找它自己的主机名, 假如发现了, 就报告这个循环 假如因为某些理由,Via 头部从外出或进入 HTTP 请求里过滤掉了,squid 就不能检测到循环 在该情形下, 所有文件描述符被循环遍历 squid 的同一请求迅速耗完 "icmprecv: Connection refused" 假如 pinger 程序没有正确的安装, 可见到下列消息 : icmprecv: recv: (61) Connection refused 不过看起来更象是因为没有打开 ICMP socket 的权限,pinger 立刻退出了 因为该进程 未在运行, 当 squid 试图与它会话时, 会接受到 I/O 错误 为了解决该问题, 请到源代码目 录以 root 运行 : # make install-pinger 假如成功, 你可见到 pinger 程序有下列文件属主和许可设置 : # ls -l /usr/local/squid/libexec/pinger -rws--x--x 1 root squid Sep 16 19:58 /usr/local/squid/libexec/pinger 在运行一段时间后,Squid 变慢了 看起来更象 squid 与其他进程, 或与它自己, 在竞争系统中的内存 当 squid 进程的内 存不再充足时, 操作系统被迫从交换空间进行内存读写 这对 squid 的性能有强烈影响 Squid 中文权威指南 4

6 为了证实这个想法, 请使用 top 和 ps 等工具检查 squid 的进程大小 也检查 squid 自己 的页面错误计数器, 见 章的描述 一旦你已确认内存耗费是问题所在, 请执行下 列步骤来减少 squid 的内存使用 : 1. 减少 cache_mem 值, 见附录 B 2. 关掉内存池, 用该选项 : memory_pools off 3. 通过降低一个或多个 cache 目录的 size, 减少磁盘 cache 大小 调试访问控制 假如访问控制不能正确工作, 如下是一些有用帮助 编辑 squid.conf 文件, 设置 debug_options 行如下 : debug_options ALL,1 33,2 然后, 重配置 squid: % squid -k reconfigure 现在, 对每个客户端请求以及每个响应,squid 都写一条消息到 cache.log 该消息包含 了请求方式,URI, 是否请求 / 响应被允许或拒绝, 以及与之匹配的最后 ACL 的名字 例如 : 2003/09/29 20:22:05 The request GET is ALLOWED, because it matched 'localhost' 2003/09/29 20:22:05 The reply for GET is ALLOWED, because it matched 'all' 知道 ACL 的名字, 并非总能知道相应的 http_access 行, 但也相当接近了 假如必要, 可以复制 acl 行, 并给予它们唯一的名字, 以便给定的 ACL 名字仅仅出现在一个 http_access 规则里 16.2 通过 cache.log 进行调试 从 13.1 章已了解到,cache.log 包含了不同的操作消息,squid 认为这些消息足够重要, 从而告诉了你 我们也将这些作为 debug 消息考虑 可以使用 debug_options 指令来控制出 现在 cache.log 里的消息的冗长度 通过增加 debug 等级, 可以见到更详细的消息, 有助于 Squid 中文权威指南 5

7 理解 squid 正在做什么 例如 : debug_options ALL,1 11,3 20,3 在 squid 源代码里的每个 debug 消息有 2 个数字特征 :1 个节和 1 个等级 节范围从 0 到 100, 等级范围从 0 到 10 通常来说, 节号对应着源代码的组成成分 换句话说, 在单一源文件里的所有消息, 有相同的节号 在某些情形下, 多个文件使用同一 debug 节, 这意味着某个源文件变得太大, 从而被拆分成多个小块 每个源文件的顶部有一行, 用于指示 debug 节 它看起来如此 : * DEBUG: section 9 File Transfer Protocol (FTP) 我不指望你通过查看源文件来查找节号, 所有相关信息定义在表 16-1 里 Table Debugging section numbers for the debug_options directive Number Description Source file(s) 0 Client Database client_db.c 1 Startup and Main Loop main.c 2 Unlink Daemon unlinkd.c 3 Configuration File Parsing cache_cf.c 4 Error Generation errorpage.c 5 Socket Functions comm.c 5 Socket Functions comm_select.c 6 Disk I/O Routines disk.c 7 Multicast multicast.c 8 Swap File Bitmap filemap.c 9 File Transfer Protocol (FTP) ftp.c 10 Gopher gopher.c 11 Hypertext Transfer Protocol (HTTP) http.c 12 Internet Cache Protocol icp_v2.c 12 Internet Cache Protocol icp_v3.c 13 High Level Memory Pool Management mem.c Squid 中文权威指南 6

8 Table Debugging section numbers for the debug_options directive Number Description Source file(s) 14 IP Cache ipcache.c 15 Neighbor Routines neighbors.c 16 Cache Manager Objects cache_manager.c 17 Request Forwarding forward.c 18 Cache Manager Statistics stat.c 19 Store Memory Primitives stmem.c 20 Storage Manager store.c Storage Manager Client-Side Interface Storage Manager Heap-Based Replacement Storage Manager Logging Functions Storage Manager MD5 Cache Keys Storage Manager Swapfile Metadata Storage Manager Swapin Functions Storage Manager Swapout Functions store_client.c repl/heap/store_heap_replacement.c store_log.c store_key_md5.c store_swapmeta.c store_swapin.c store_swapout.c 20 Store Rebuild Routines store_rebuild.c 21 Misc Functions tools.c 22 Refresh Calculation refresh.c 23 URL Parsing url.c 24 WAIS Relay wais.c 25 MIME Parsing mime.c 26 Secure Sockets Layer Proxy ssl.c 27 Cache Announcer send-announce.c 28 Access Control acl.c Squid 中文权威指南 7

9 Table Debugging section numbers for the debug_options directive Number Description Source file(s) 29 Authenticator auth/basic/auth_basic.c 29 Authenticator auth/digest/auth_digest.c 29 Authenticator authenticate.c 29 NTLM Authenticator auth/ntlm/auth_ntlm.c 30 Ident (RFC 1413) ident.c 31 Hypertext Caching Protocol htcp.c 32 Asynchronous Disk I/O fs/aufs/async_io.c 33 Client-Side Routines client_side.c 34 Dnsserver Interface dns.c 35 FQDN Cache fqdncache.c 37 ICMP Routines icmp.c 38 Network Measurement Database net_db.c 39 Cache Array Routing Protocol carp.c 40 Referer Logging referer.c 40 User-Agent Logging useragent.c 41 Event Processing event.c 42 ICMP Pinger Program pinger.c 43 AIOPS fs/aufs/aiops.c 44 Peer Selection Algorithm peer_select.c 45 Callback Data Registry cbdata.c 45 Callback Data Registry leakfinder.c 46 Access Log access_log.c 47 Store COSS Directory Routines fs/coss/store_dir_coss.c 47 Store Directory Routines fs/aufs/store_dir_aufs.c 47 Store Directory Routines fs/diskd/store_dir_diskd.c 47 Store Directory Routines fs/null/store_null.c Squid 中文权威指南 8

10 Table Debugging section numbers for the debug_options directive Number Description Source file(s) 47 Store Directory Routines fs/ufs/store_dir_ufs.c 47 Store Directory Routines store_dir.c 48 Persistent Connections pconn.c 49 SNMP Interface snmp_agent.c 49 SNMP Support snmp_core.c 50 Log File Handling logfile.c 51 File Descriptor Functions fd.c 52 URN Parsing urn.c 53 AS Number Handling asn.c 54 Interprocess Communication ipc.c 55 HTTP Header HttpHeader.c 56 HTTP Message Body HttpBody.c 57 HTTP Status-Line HttpStatusLine.c 58 HTTP Reply (Response) HttpReply.c Auto-Growing Memory Buffer with printf Packer: A Uniform Interface to Store Like Modules MemBuf.c Packer.c 61 Redirector redirect.c 62 Generic Histogram StatHist.c 63 Low Level Memory Pool Management MemPool.c 64 HTTP Range Header HttpHdrRange.c 65 HTTP Cache Control Header HttpHdrCc.c 66 HTTP Header Tools HttpHeaderTools.c 67 String String.c 68 HTTP Content-Range Header HttpHdrContRange.c 69 HTTP Header: Extension Field HttpHdrExtField.c 70 Cache Digest CacheDigest.c Squid 中文权威指南 9

11 Table Debugging section numbers for the debug_options directive Number Description Source file(s) 71 Store Digest Manager store_digest.c 72 Peer Digest Routines peer_digest.c 73 HTTP Request HttpRequest.c 74 HTTP Message HttpMsg.c 75 WHOIS Protocol whois.c 76 Internal Squid Object handling internal.c 77 Delay Pools delay_pools.c DNS Lookups; interacts with lib/rfc1035.c Squid-Side DISKD I/O Functions Storage Manager COSS Interface Storage Manager UFS Interface dns_internal.c fs/diskd/store_io_diskd.c fs/coss/store_io_coss.c fs/ufs/store_io_ufs.c 80 WCCP Support wccp.c 82 External ACL external_acl.c 83 SSL Accelerator Support ssl_support.c 84 Helper Process Maintenance helper.c debug 等级这样分配 : 重要消息有较低值, 非重要消息有较高值 0 等级是非常重要的消息,10 等级是相对不紧要的消息 另外, 关于等级其实并没有严格的向导或要求 开发者通常自由选择适应的 debug 等级 debug_options 指令决定哪个消息出现在 cache.log, 它的语法是 : debug_options section,level section,level... 默认设置是 ALL,1, 这意味着 squid 会将所有等级是 0 或 1 的 debug 消息打印出来 假如希望 cache.log 里出现更少的 debug 消息, 可设置 debug_options 为 ALL,0 假如想观察某个组件的其他 debug 信息, 简单的将相应的节号和等级增加到 debug_options 列表的末端 例如, 如下行对 FTP 服务端代码增加了等级 5 的 debug: Squid 中文权威指南 10

12 debug_options ALL,1 9,5 如同其他配置指令一样, 可以改变 debug_options, 然后给 squid 发送重置信号 : % squid -k reconfigure 注意 debug_options 参数是按顺序处理的, 后来的值会覆盖先前的值 假如使用 ALL 关 键字, 这点尤其要注意 考虑如下示例 : debug_options 9,5 20,9 4,2 ALL,1 级为 1 在该情形下, 最后的值覆盖了所有先前的设置, 因为 ALL,1 对所有节设置了 debug 等 选择合适的 debug 节号和等级有时非常困难, 尤其是对 squid 新手而言 许多更详细的 debug 消息仅对 squid 开发者和熟悉源代码的用户有意义 无经验的 squid 用户会发现许多 debug 消息无意义和不可理解 进一步的说, 假如 squid 相对忙的话, 你可能对某个特殊请求或事件进行独立 debug 有困难 假如你能一次用一个请求来测试 squid, 那么高的 debug 等级通常更有用 若以高 debug 等级来运行 squid 较长时间, 需要特别谨慎 假如 squid 繁忙,cache.log 增长非常快, 并可能最终耗尽它的分区的剩余空间 假如这点发生,squid 以致命消息退出 另一个关注点是性能可能下降明显 因为有大量的 debug 消息,squid 要耗费许多 CPU 资源来格式化和打印字符串 将所有 debug 消息写往 cache.log, 也浪费了大量的磁盘带宽 16.3 Coredump, 断点, 和堆栈跟踪 假如不幸,squid 可能在运行时遭遇致命错误 这类型的错误来自 3 个风格 : 断点, 总 线错误, 和异常分片 断点是源代码里的正常检测 它是一个工具, 被开发者用来确认在处理某事情前, 相应 的条件总为真 假如条件为假, 程序退出并创建一个 core 文件, 以便开发者能分析形势 如下是个典型的示例 : int some_array[100]; void some_func(int idx) {... assert(idx < 100); some_array[idx]++;... Squid 中文权威指南 11

13 } 这里, 断点确保数组索引的值位于数组范围内 假如去访问大于或等于 100 的数组元素, 就会遇到错误 假如不知何故,idx 的值不小于 100, 程序运行时会打印如下消息 : assertion failed: filename.c:123: "idx < 100" 假如这点发生在 squid 上, 就可在 cache.log 里见到 "assertion failed" 消息 另外, 操作系 统会创建一个 core 文件, 这对事后分析有用 在本节结尾, 我会解释如何去处理 core 文件 总线错误是 : 由于处理器检测到其总线上的异常条件, 会引发机器语言指令执行时致命 失败 当处理器试图操作非连续的内存地址时, 通常会发生这种错误 在 64 位处理器系统 上可能更容易见到总线错误, 例如 Alpha 和某些 SPARC CPU 幸运的是, 它们容易修复 异常分片错误不幸的更常见, 且有时难以修复 SEGV 通常发生在进程试图访问无效内 存区域时 ( 可能是个 NULL 指针, 或超出进程空间之外的内存地址 ) 当 bug 原因和 SEGV 影响在不同时间呈现时, 它们特别难于捕获到 Squid 默认捕获总线错误和异常分片, 当它们发生时,squid 试图执行一个 clean shutdown ( 清理关闭 ) 可在 cache.log 里见到类似的语句 : FATAL: Received Bus Error...dying. 2003/09/29 23:18:01 storedirwritecleanlogs: Starting... 大多数情形下,squid 能够写 swap.state 文件的 clean 版本 在退出前,squid 调用 abort() 函数来创建 core 文件 core 文件可以帮助你或其他开发者来捕获和修复 bug 在错误发生时马上创建 core 文件, 而不是先调用 clean shutdown 过程, 这样更利于调试 使用 -C 命令行选项, 可以告诉 squid 不去捕获总线错误和异常分片 : % squid -C... 注意某些操作系统使用文件名 core, 而另外一些优先考虑进程名 ( 例如 squid.core) 一旦找到 core 文件, 请使用调试器来进行堆栈跟踪 gdb 是 GNU 调试器 --GNU C 编译器的配套工具 假如没有 gdb, 可试着运行 dbx 或 adb 代替 如下显示如何使用 gdb 来进行堆栈跟踪 : % gdb /usr/local/squid/sbin/squid /path/to/squid.core... Core was generated by 'squid'. Program terminated with signal 6, Abort trap.... Squid 中文权威指南 12

14 然后, 敲入 where 来打印堆栈轨迹 : (gdb) where #0 0x28168b54 in kill ( ) from /usr/lib/libc.so.4 #1 0x281aa0ce in abort ( ) from /usr/lib/libc.so.4 #2 0x80a2316 in death (sig=10) at tools.c:301 #3 0xbfbfffac in?? ( ) #4 0x80abe0a in storediskdsend (mtype=4, sd=0x82101e0, id= , sio=0x9e90a10, size=4096, offset=-1, shm_offset=0) at diskd/store_io_diskd.c:485 #5 0x80ab726 in storediskdwrite (SD=0x82101e0, sio=0x9e90a10, buf=0x13e94000 "...", size=4096, offset=-1, free_func=0) at diskd/store_io_diskd.c:251 #6 0x809d2fb in storewrite (sio=0x9e90a10, buf=0x13e94000 "...", size=4096, offset=-1, free_func=0) at store_io.c:89 #7 0x80a1c2d in storeswapout (e=0xc5a7800) at store_swapout.c:259 #8 0x809b667 in storeappend (e=0xc5a7800, buf=0x810f9a0 "...", len=57344) at store.c:533 #9 0x807873b in httpreadreply (fd=134, data=0xc343590) at http.c:642 #10 0x806492f in comm_poll (msec=10) at comm_select.c:445 #11 0x in main (argc=2, argv=0xbfbffa8c) at main.c:742 #12 0x804a465 in _start ( ) 你可见到, 堆栈轨迹打印了每个函数的名字, 它的参数, 以及源代码文件名和行数 当 捕获 bug 时, 这些信息特别有用 然而在某些情形下, 这些还不够 可能要求你在调试器里 Squid 中文权威指南 13

15 执行其他命令, 例如打印来自某个函数的变量的值 : (gdb) frame 4 #4 0x80abe0a in storediskdsend (mtype=4, sd=0x82101e0, id= , sio=0x9e90a10, size=4096, offset=-1, shm_offset=0) at diskd/store_io_diskd.c: x = msgsnd(diskdinfo->smsgid, &M, msg_snd_rcv_sz, IPC_NOWAIT); (gdb) set print pretty (gdb) print M $2 = { mtype = 4, id = , seq_no = , callback_data = 0x9e90a10, size = 4096, offset = -1, status = -1, shm_offset = 0 } 在报告了某个 bug 后, 请保留 core 文件一些天, 可能还需要从它获取其他信息 不能找到 core 文件? core 文件写在进程的当前目录 squid 在启动时默认不改变其当前目录 这样你的 core 文件 ( 如果有的话 ), 会写在启动 squid 的目录 假如文件系统没有足够的自由空间, 或进程属主没有对该目录的写权限, 就无法产生 core 文件 可以使用 coredump_dir 指令来让 squid 使用指定的 coredump 目录 -- 位于其他地方的有充足自由空间和完全权限的目录 进程资源限制也会阻止产生 core 文件 进程限制参数之一是 coredump 文件的大小 大部分操作系统默认设置这个值为 " 无限 " 在当前 shell 里使用 limits 或 ulimit 命令, 可以检查当前限制 然而请注意, 你的 shell 的限制可能不同于 squid 的进程限制, 特别是当 squid 随系统启动而自动启动时 假如怀疑进程限制阻止了 core 文件的产生, 试试这样 : csh% limit coredumpsize unlimited csh% squid -NCd1 在 FreeBSD 上, 某个 sysctl 参数控制了操作系统对调用了 setuid() 或 setgid() 函数的进程, 是否产生 core 文件 假如以 root 启动,squid 会用到这些函数 这样为了得到 coredump, 必须告诉内核创建 core 文件, 用这个命令 : Squid 中文权威指南 14

16 # sysctl kern.sugid_coredump=1 请见 sysctl.conf 的 manpage, 关于在系统启动时如何自动设置变量的信息 16.4 重现问题 有时候可能遇到这样的问题 : 某个请求, 或原始服务器看起来不能与 squid 协调工作 可以使用下面的技术来确定问题在于 squid, 客户端, 或原始服务器 技巧就是捕获 HTTP 请求, 然后用不同的方法响应它, 直到你验证了问题 捕获 HTTP 请求意味着获取除了 URL 外的更多信息, 包括请求方式,HTTP 版本号, 和所有请求头部 捕获请求的一个方法是, 短期激活 squid 的完整 debug 模式 在 squid 主 机上, 敲入 : % squid -kdebug 然后, 到 web 浏览器上发布请求 squid 几乎会立刻接受到请求 在若干秒后, 回到 squid 主机, 并发布同样的命令 : % squid -kdebug 现在 cache.log 文件包含了上述客户端的请求 假如 squid 繁忙,cache.log 会包含大量的 请求, 所以你必须查找它 它看起来如下 : 2003/09/29 10:37:40 parsehttprequest: Method is 'GET' 2003/09/29 10:37:40 parsehttprequest: URI is ' 2003/09/29 10:37:40 parsehttprequest: Client HTTP version /09/29 10:37:40 parsehttprequest: req_hdr = { User-Agent: Mozilla/5.0 (compatible; Konqueror/3) Pragma: no-cache Cache-control: no-cache Accept: text/*, image/jpeg, image/png, image/*, */* Accept-Encoding: x-gzip, gzip, identity Accept-Charset: iso , utf-8;q=0.5, *;q=0.5 Accept-Language: en Host: squidbook.org 注意 squid 把首行元素分开打印, 必须手工组合它们如下 : GET HTTP/1.1 捕获完整请求的另一个方法是使用工具例如 netcat 或 socket ( ) 启动 socket 程序侦听在某个端口, 然后配置浏览器使用该 Squid 中文权威指南 15

17 端口作为代理地址 当再次发起请求时,socket 打印出 HTTP 请求 : % socket -s 8080 GET HTTP/1.1 User-Agent: Mozilla/5.0 (compatible; Konqueror/3) Pragma: no-cache Cache-control: no-cache Accept: text/*, image/jpeg, image/png, image/*, */* Accept-Encoding: x-gzip, gzip, identity Accept-Charset: iso , utf-8;q=0.5, *;q=0.5 Accept-Language: en Host: squidbook.org 最后, 还可以使用网络包分析工具例如 tcpdump 或 ethereal 使用 tcpdump 捕获到一些 包后, 可以使用 tcpshow 来查看它们 : # tcpdump -w tcpdump.log -c 10 -s 1500 port 80 # tcpshow -nohostnames -noportnames < tcpdump.log less... Packet 4 TIME: 08:39: ( ) LINK: 00:90:27:16:AA:75 -> 00:00:24:C0:0D:25 type=ip IP: > hlen=20 TOS=00 dgramlen=304 id=4b29 MF/DF=0/1 frag=0 TTL=64 proto=tcp cksum=15dc TCP: port > 80 seq= ack= hlen=32 (data=252) UAPRSF= wnd=57920 cksum=eb38 urg=0 DATA: GET / HTTP/1.0. Host: Accept: text/html, text/plain, application/pdf, application/ postscript, text/sgml, */*;q=0.01. Accept-Encoding: gzip, compress. Accept-Language: en. Negotiate: trans. User-Agent: Lynx/2.8.1rel.2 libwww-fm/ Squid 中文权威指南 16

18 注意 tcpshow 按数据里的新行字符为周期来进行打印 一旦捕获到了某个请求, 就将它存到文件 然后可以使用 netcat 或 socket 来让它重新通 过 squid: % socket squidhost 3128 < request less 假如响应看起来正常, 问题可能在于用户代理 否则, 可以改变不同事情来孤立问题 例如, 假如你看到一些古怪的 HTTP 头部, 那就从请求里删除它们, 然后再试一次 让请求直接到达原始服务器, 而不是经过 squid, 这样做也可调试 方法就是从请求里删除 并将请求发送到原始服务器 : % cat request GET / HTTP/1.1 User-Agent: Mozilla/5.0 (compatible; Konqueror/3) Pragma: no-cache Cache-control: no-cache Accept: text/*, image/jpeg, image/png, image/*, */* Accept-Encoding: x-gzip, gzip, identity Accept-Charset: iso , utf-8;q=0.5, *;q=0.5 Accept-Language: en Host: squidbook.org % socket squidbook.org 80 < request less 本书 以这种方式使用 HTTP 时, 请参考 RFC 2616 和 Oreilly 的 Definitive Guide 这 16.5 报告 Bug 假如你的 squid 版本已经有几个月未更新了, 在报告 bug 前你应该更新它 因为其他人 可能也注意了同样的 bug, 并且它已被修复 假如你发现了 squid 的合理 bug, 请将它填入到 squid 的 bug 跟踪数据库 : 它当前是个 "bugzilla" 数据库, 需要你创建一个帐号 当 bug 被 squid 开发者处理了时, 你会接到更新通知 假如你对报告 bug 很陌生, 请先花时间阅读 Simon Tatham 写的 "How to Report Bugs Effectively" ( ) 当报告 bug 时, 确认包含下列信息 : Squid 中文权威指南 17

19 1) Squid 版本号 假如 bug 发生在不止一个版本上, 就也要写上其他版本号 2) 操作系统名字和版本 3) bug 每次都发生, 还是偶尔发生 4) 所发生事情的精确描述 类似于 " 它不能工作 "," 请求失败 " 之类的语句, 本质上对 bug 修复者无用 记得要非常详细 5) 对断点, 总线错误, 或异常分片的堆栈跟踪 记住 squid 开发者通常是无报酬的义务劳动, 所以要有耐心 严重 bug 比小问题享有更 高的解决优先级 Squid 中文权威指南 18

20 译后序 当译完本书最后一章时, 心头袭来深深的寂寞 在计算机领域, 国内外技术水平差之甚远, 部分原因归咎于语言的差异 某种技术在国外流行若干年后, 才有相应的中文文档出现 没有文档, 技术人员无法起步 ; 而不规范的发行文档, 更是误导了一批又一批的初学者 本书的作者 Duane Wessels 是位大师级的人物, 除了精湛的技术外, 他写的本书文笔通畅, 脉络清晰, 丝毫不晦涩 若对研究 Squid 抱着严肃的态度, 那么请认真的拜读原著 而我所能做的, 只是按照我自己的理解, 把原著译成中文 好的软件只是解决了某一方面的问题, 而真正可贵的, 是开源的精神 在开源的世界里, 可以体会到现实中所没有的无私与奉献 想起陈玉莲演的小龙女, 和金轮法王有过这么一段对话 : 金轮法王 : 你能接住十招, 我就放过你们 小龙女 : 试试看咯 金轮法王 : 若接不住呢? 小龙女 : 接不住就接不住咯 多年来让我记住的, 是陈玉莲这种不食人间烟火, 与世无争的神韵 彭勇华 yonghua_peng@yahoo.com.cn 2005 年 10 月于广州 Squid 中文权威指南 19

Chapter #

Chapter # 第三章 TCP/IP 协议栈 本章目标 通过本章的学习, 您应该掌握以下内容 : 掌握 TCP/IP 分层模型 掌握 IP 协议原理 理解 OSI 和 TCP/IP 模型的区别和联系 TCP/IP 介绍 主机 主机 Internet TCP/IP 早期的协议族 全球范围 TCP/IP 协议栈 7 6 5 4 3 应用层表示层会话层传输层网络层 应用层 主机到主机层 Internet 层 2 1 数据链路层

More information

UDP 8.2 TCP/IP OSI OSI 3 OSI TCP/IP IP TCP/IP TCP/IP Transport Control Protocol TCP User Datagram Protocol UDP TCP TCP/IP IP TCP TCP/IP TC

UDP 8.2 TCP/IP OSI OSI 3 OSI TCP/IP IP TCP/IP TCP/IP Transport Control Protocol TCP User Datagram Protocol UDP TCP TCP/IP IP TCP TCP/IP TC 8 TCP/IP TCP/IP TCP OSI 8.1 OSI 4 end to end A B FTP OSI Connection Management handshake Flow Control Error Detection IP Response to User s Request TCP/IP TCP 181 UDP 8.2 TCP/IP OSI OSI 3 OSI 3 8.1 TCP/IP

More information

Chap6.ppt

Chap6.ppt Computer Networks v4 cs.sjtu 12/21/12 6 Internet ftp://ftp.cs.sjtu.edu.cn/ybzhang 61 / 110 Computer Networks v4 cs.sjtu 12/21/12 ftp://ftp.cs.sjtu.edu.cn/ybzhang 62 / 110 Computer Networks v4 cs.sjtu 12/21/12

More information

Simulator By SunLingxi 2003

Simulator By SunLingxi 2003 Simulator By SunLingxi sunlingxi@sina.com 2003 windows 2000 Tornado ping ping 1. Tornado Full Simulator...3 2....3 3. ping...6 4. Tornado Simulator BSP...6 5. VxWorks simpc...7 6. simulator...7 7. simulator

More information

IP505SM_manual_cn.doc

IP505SM_manual_cn.doc IP505SM 1 Introduction 1...4...4...4...5 LAN...5...5...6...6...7 LED...7...7 2...9...9...9 3...11...11...12...12...12...14...18 LAN...19 DHCP...20...21 4 PC...22...22 Windows...22 TCP/IP -...22 TCP/IP

More information

ebook140-9

ebook140-9 9 VPN VPN Novell BorderManager Windows NT PPTP V P N L A V P N V N P I n t e r n e t V P N 9.1 V P N Windows 98 Windows PPTP VPN Novell BorderManager T M I P s e c Wi n d o w s I n t e r n e t I S P I

More information

第一章 Linux與網路資源

第一章 Linux與網路資源 1 28 Proxy Server 28-1 Proxy proxy Server rpm qa grep squid Linux Proxy Proxy Proxy Proxy Proxy Request Proxy Proxy Proxy RedHat Linux Fedora #mount /mnt/cdrom squid squid Proxy #cd /mnt/cdrom/redhat/rpms

More information

投影片 1

投影片 1 FreeBSD A 95/10/11 19:00~21:00 95/10/11 FreeBSD 練 1 Services Setup SSH, lighttpd, PHP, MySQL, FTP, Postfix, phpmyadmin, Blog, Gallery 95/10/11 FreeBSD 練 2 1. 2. # FreeBSD # 3. vi ee joe nano etc 95/10/11

More information

ebook140-8

ebook140-8 8 Microsoft VPN Windows NT 4 V P N Windows 98 Client 7 Vintage Air V P N 7 Wi n d o w s NT V P N 7 VPN ( ) 7 Novell NetWare VPN 8.1 PPTP NT4 VPN Q 154091 M i c r o s o f t Windows NT RAS [ ] Windows NT4

More information

(CPU) (forward caching) (reverse caching) IP IP 2

(CPU) (forward caching) (reverse caching) IP IP 2 300 1001 TEL:(03)5712121 EXT.56667 FAX:(03)5712121 EXT.59263 E-mail: einstein@chu.edu.tw, ydlin@cis.nctu.edu.tw : (World Wild Web) (proxy) (caching) (Open Source)squid[1] FreeBSD [2] Linux[3]Solaris [4]

More information

MASQUERADE # iptables -t nat -A POSTROUTING -s / o eth0 -j # sysctl net.ipv4.ip_forward=1 # iptables -P FORWARD DROP #

MASQUERADE # iptables -t nat -A POSTROUTING -s / o eth0 -j # sysctl net.ipv4.ip_forward=1 # iptables -P FORWARD DROP # iptables 默认安全规则脚本 一 #nat 路由器 ( 一 ) 允许路由 # iptables -A FORWARD -i eth0 -o eth1 -j ACCEPT ( 二 ) DNAT 与端口转发 1 启用 DNAT 转发 # iptables -t nat -A PREROUTING -p tcp -d 192.168.102.37 dprot 422 -j DNAT to-destination

More information

ebook140-11

ebook140-11 11 VPN Windows NT4 B o r d e r M a n a g e r VPN VPN V P N V P N V P V P N V P N TCP/IP 11.1 V P N V P N / ( ) 11.1.1 11 V P N 285 2 3 1. L A N LAN V P N 10MB 100MB L A N VPN V P N V P N Microsoft PPTP

More information

Web

Web Email: tian@dr.com http://www.digiark.com/tian Web 1. 2. 3. 4. 5. 6. Internet Internet (Hacker) Internet web IP 1 Internet UNIX Windows VLAN Internet IP 2 Internet FTP TELNET PING IP 8 telnet FTP RLOGIN

More information

WebSphere Studio Application Developer IBM Portal Toolkit... 2/21 1. WebSphere Portal Portal WebSphere Application Server stopserver.bat -configfile..

WebSphere Studio Application Developer IBM Portal Toolkit... 2/21 1. WebSphere Portal Portal WebSphere Application Server stopserver.bat -configfile.. WebSphere Studio Application Developer IBM Portal Toolkit... 1/21 WebSphere Studio Application Developer IBM Portal Toolkit Portlet Doug Phillips (dougep@us.ibm.com),, IBM Developer Technical Support Center

More information

Microsoft Word - PS2_linux_guide_cn.doc

Microsoft Word - PS2_linux_guide_cn.doc Linux For $ONY PlayStatioin2 Unofficall General Guide Language: Simplified Chinese First Write By Beter Hans v0.1 Mail: hansb@citiz.net Version: 0.1 本 人 是 菜 鸟 + 小 白 欢 迎 指 正 错 误 之 处, 如 果 您 有 其 他 使 用 心 得

More information

BYOD Http Redirect convergence Client (1) 2008R2 NLB( ) (2) NLB Unicast mode switch flooding (arp ) NLB DNS Redirect 1. Round-Robin DNS DNS IP/DNS Cli

BYOD Http Redirect convergence Client (1) 2008R2 NLB( ) (2) NLB Unicast mode switch flooding (arp ) NLB DNS Redirect 1. Round-Robin DNS DNS IP/DNS Cli BYOD 204 2015 GoogleHicloud (Load Balance) Server Load Balance Link Load Balance Server Redirect 1. URL Redirect redirector URL redirect Real Server Client HTTP Real Server Web Client 2 (1) URL Redirect

More information

VIDEOJET connect 7000 VJC-7000-90 zh- CHS Operation Manual VIDEOJET connect 7000 zh-chs 3 目 录 1 浏 览 器 连 接 7 1.1 系 统 要 求 7 1.2 建 立 连 接 7 1.2.1 摄 像 机 中 的 密 码 保 护 7 1.3 受 保 护 的 网 络 7 2 系 统 概 述 8 2.1 实 况

More information

C3_ppt.PDF

C3_ppt.PDF C03-101 1 , 2 (Packet-filtering Firewall) (stateful Inspection Firewall) (Proxy) (Circuit Level gateway) (application-level gateway) (Hybrid Firewall) 2 IP TCP 10.0.0.x TCP Any High Any 80 80 10.0.0.x

More information

TCP/IP TCP/IP OSI IP TCP IP IP TCP/IP TCP/IP

TCP/IP TCP/IP OSI IP TCP IP IP TCP/IP TCP/IP TCP/IP : TCP/IP TCP/IP OSI IP TCP IP IP TCP/IP TCP/IP 1. ASCII EBCDIC Extended Binary-Coded Decimal Interchange Code 2. / (1) (2) Single System Image SSI) (3) I/O (4) 3.OSI OSI Open System Interconnection

More information

財金資訊-80期.indd

財金資訊-80期.indd IPv6 / LINE YouTube TCP/IP TCP (Transmission Control Protocol) IP (Internet Protocol) (node) (address) IPv4 168.95.1.1 IPv4 1981 RFC 791 --IP IPv4 32 2 32 42 IP (Internet Service Provider ISP) IP IP IPv4

More information

<4D6963726F736F667420576F7264202D20383439342D352DBED6D3F2CDF8D7E9BDA8D3EBB9DCC0EDCFEEC4BFBDCCB3CCD5FDCEC42E646F63>

<4D6963726F736F667420576F7264202D20383439342D352DBED6D3F2CDF8D7E9BDA8D3EBB9DCC0EDCFEEC4BFBDCCB3CCD5FDCEC42E646F63> 第 4 单 元 搭 建 自 己 的 Web 站 点 本 单 元 通 过 学 习 架 构 Web 服 务 器, 实 现 Web 服 务, 管 理 Web 站 点, 了 解 Web 站 点 服 务 器 的 架 构 个 人 空 间 和 虚 拟 主 机 的 概 念, 掌 握 IIS 组 件 的 安 装 Web 站 点 的 创 建 管 理 站 点 属 性 选 项 卡 的 配 置 管 理 等 知 识,Web 网

More information

PowerPoint Presentation

PowerPoint Presentation 立 97 年度 SNMG 練 DNS & BIND enc1215@gmail.com DNS BIND Resolver Named 理 Named 更 DNS DNS Reference 2 DNS DNS 料 domain ip DNS server DNS server 理 DNS server DNS DNS 狀. root name server 理 3 DNS 狀 DNS (2). com

More information

C6_ppt.PDF

C6_ppt.PDF C01-202 1 2 - (Masquerade) (Replay) (Message Modification) (Denial of Service) - ( ) (Eavesdropping) (Traffic Analysis) 8 1 2 7 3 6 5 4 3 - TCP SYN (SYN flood) Smurf Ping of Death LAND Attack Teardrop

More information

1500XA Daniel Danalyzer 1500XA Rosemount Analytical 1500XA P/N 3-9000-757 A 2010 5 ii 1500XA 1500XA iii iv 1500XA : 1-2 1500XA - 1500XA 1-3 1-4 1500XA 1500XA 1-5 1-6 1500XA 1500XA 1-7 1-8 1500XA

More information

工程师培训

工程师培训 .1 TCP/IP TCP/IP 1 .2.2.1 Host 1960 S 1970 S Host Low Speed Lines 1970 S 1980 S pc Server Local Interneting 1980 S 1990 S Branch. pc Branch. WAN Branch. pc pc IBM SNA IBM X.25 2 .2.2 OSI OSI Application

More information

ebook 185-6

ebook 185-6 6 Red Hat Linux DB2 Universal Database 6.1 D B 2 Red Hat D B 2 Control Center D B 2 D B 2 D B 2 6.1 DB2 Universal Database [DB2]6.1 D B 2 O LT P O L A P D B 2 I B M P C We e k D B 2 D B 2 L i n u x Windows

More information

ext-web-auth-wlc.pdf

ext-web-auth-wlc.pdf 使 用 无 线 局 域 网 控 制 器 的 外 部 Web 身 份 验 证 配 置 示 例 目 录 简 介 先 决 条 件 要 求 使 用 的 组 件 规 则 背 景 信 息 外 部 Web 身 份 验 证 过 程 网 络 设 置 配 置 为 来 宾 用 户 创 建 动 态 接 口 创 建 预 先 身 份 验 证 ACL 在 WLC 上 为 来 宾 用 户 创 建 本 地 数 据 库 配 置 外 部

More information

RunPC2_.doc

RunPC2_.doc PowerBuilder 8 (5) PowerBuilder Client/Server Jaguar Server Jaguar Server Connection Cache Thin Client Internet Connection Pooling EAServer Connection Cache Connection Cache Connection Cache Connection

More information

9 Internet 10 Internet

9 Internet 10 Internet 1 2 3 4 5 6 Internet 7 8 9 Internet 10 Internet 11 12 1 1.1 1.2 1.3 1.4 1.5 1.6 1.1 1.1.1 20 50 20 60 ARPANET ARPANET Internet 20 70 ISO International Organization for Standardization TCP/IP 20 90 Internet

More information

ebook70-5

ebook70-5 5 / 5.1 L i n u x L i n u x X L i n u x 5.1.1 touch t o u c h t o u c h G N U t o u c h # touch newfile # ls -l newfile - r w - r - - r - - 1 bball users 0 Jan 5 12 : 40 n e w f i l e t o u c h 0 # > newfile2

More information

epub 61-2

epub 61-2 2 Web Dreamweaver UltraDev Dreamweaver 3 We b We b We Dreamweaver UltraDev We b Dreamweaver UltraDev We b We b 2.1 Web We b We b D r e a m w e a v e r J a v a S c r i p t We b We b 2.1.1 Web We b C C +

More information

SiteView技术白皮书

SiteView技术白皮书 SiteView ECC V6.2 技 术 白 皮 书 游 龙 网 络 科 技 ( 中 国 ) 有 限 公 司 DragonFlow Networks(China),Inc. 目 录 第 一 章 产 品 概 述... 3 第 二 章 系 统 结 构... 6 一 系 统 架 构... 7 1 用 户 管 理 模 块... 7 2 Web Server... 8 3 存 储 加 密 模 块... 8

More information

1 o o o CPU o o o o o SQL Server 2005 o CPU o o o o o SQL Server o Microsoft SQL Server 2005

1 o o o CPU o o o o o SQL Server 2005 o CPU o o o o o SQL Server o Microsoft SQL Server 2005 1 o o o CPU o o o o o SQL Server 2005 o CPU o o o o o SQL Server o Microsoft SQL Server 2005 1 1...3 2...20 3...28 4...41 5 Windows SQL Server...47 Microsoft SQL Server 2005 DBSRV1 Microsoft SQL Server

More information

Chapter 2

Chapter 2 2 (Setup) ETAP PowerStation ETAP ETAP PowerStation PowerStation PowerPlot ODBC SQL Server Oracle SQL Server Oracle Windows SQL Server Oracle PowerStation PowerStation PowerStation PowerStation ETAP PowerStation

More information

ebook12-1

ebook12-1 API N e t B I O S Wi n s o c k A P I Wi n s o c k 1 N e t B I O S Wi n s o c k A P I N e t B I O S O S / 2 D O S 2 3 4 Wi n d o w s Wi n d o w s 1 NetBIOS Network Basic Input/Output System, NetBIOS A P

More information

SEC-220

SEC-220 Session CERT/CC 60000 50000 40000 52,658 30000 26,829 20000 10000 0 2,412 1995 1999 2000 2001 Q1, 2002 Source: http://www.cert.org/stats/ CERT/CC 3000 2500 2000 2,437 1500 1000 500 0 171 1,065 1995

More information

BYOD IP+Optical (IP NGN) API 4. End-to-End (Service Aware) 5. IP NGN (IP Next Generation Network) ( ) Prime Carrier Management Access Edge Co

BYOD IP+Optical (IP NGN) API 4. End-to-End (Service Aware) 5. IP NGN (IP Next Generation Network) ( ) Prime Carrier Management Access Edge Co BYOD 228 2015 IT open source DIY ( ) Up/Down HP NNMi WhatsUp Gold Nagios HP SiteScope WhatsUp Gold HP NNMi WhatsUp Gold Cacti MRTG HP ispi Performance for Metrics WhatsUp Gold ( ) Open source Agent End-to-End

More information

Microsoft PowerPoint - 数据通信-ch1.ppt

Microsoft PowerPoint - 数据通信-ch1.ppt 主 要 内 容 与 基 本 要 求 主 要 内 容 数 据 通 信 与 计 算 机 网 络 计 算 机 网 络 的 发 展 过 程 分 类 以 及 主 要 性 能 指 标 ; 分 组 交 换 的 基 本 原 理 及 其 与 电 路 交 换 报 文 交 换 的 联 系 与 区 别 ; 计 算 机 网 络 的 协 议 与 体 系 结 构 第 1 章 概 述 基 本 要 求 掌 握 分 组 交 换 电 路

More information

本文由筱驀釹贡献

本文由筱驀釹贡献 本 文 由 筱 驀 釹 贡 献 ppt 文 档 可 能 在 WAP 端 浏 览 体 验 不 佳 建 议 您 优 先 选 择 TXT, 或 下 载 源 文 件 到 本 机 查 看 Linux 操 作 系 统 Linux 操 作 系 统 第 一 部 分 介 绍 与 安 装 Linux 的 由 来 : Linux 的 由 来 : 的 由 来 Linus Torvalds 1.Linux 的 版 本 1.Linux

More information

第 1 章 概 述 1.1 计 算 机 网 络 在 信 息 时 代 中 的 作 用 1.2 计 算 机 网 络 的 发 展 过 程 *1.2.1 分 组 交 换 的 产 生 *1.2.2 因 特 网 时 代 *1.2.3 关 于 因 特 网 的 标 准 化 工 作 1.2.4 计 算 机 网 络 在

第 1 章 概 述 1.1 计 算 机 网 络 在 信 息 时 代 中 的 作 用 1.2 计 算 机 网 络 的 发 展 过 程 *1.2.1 分 组 交 换 的 产 生 *1.2.2 因 特 网 时 代 *1.2.3 关 于 因 特 网 的 标 准 化 工 作 1.2.4 计 算 机 网 络 在 计 算 机 网 络 ( 第 4 版 ) 课 件 第 1 章 计 算 机 网 络 概 述 郭 庆 北 Ise_guoqb@ujn.edu.cn 2009-02-25 第 1 章 概 述 1.1 计 算 机 网 络 在 信 息 时 代 中 的 作 用 1.2 计 算 机 网 络 的 发 展 过 程 *1.2.1 分 组 交 换 的 产 生 *1.2.2 因 特 网 时 代 *1.2.3 关 于 因 特

More information

Microsoft Word - 100118002.htm

Microsoft Word - 100118002.htm 100 年 度 11800 電 腦 軟 體 應 用 乙 級 技 術 士 技 能 檢 定 學 科 測 試 試 題 本 試 卷 有 選 擇 題 80 題, 每 題 1.25 分, 皆 為 單 選 選 擇 題, 測 試 時 間 為 100 分 鐘, 請 在 答 案 卡 上 作 答, 答 錯 不 倒 扣 ; 未 作 答 者, 不 予 計 分 准 考 證 號 碼 : 姓 名 : 選 擇 題 : 1. (3)

More information

<4D6963726F736F667420506F776572506F696E74202D20A1B6CFEEC4BFD2BB20B3F5CAB6BCC6CBE3BBFACDF8C2E7A1B7C8CECEF1C8FD20CAECCFA4544350A1A24950D0ADD2E9BACD4950B5D8D6B72E707074>

<4D6963726F736F667420506F776572506F696E74202D20A1B6CFEEC4BFD2BB20B3F5CAB6BCC6CBE3BBFACDF8C2E7A1B7C8CECEF1C8FD20CAECCFA4544350A1A24950D0ADD2E9BACD4950B5D8D6B72E707074> 项 目 一 : 初 识 计 算 机 网 络 任 务 三 熟 悉 TCP/IP 协 议 和 IP 地 址 一. 学 习 要 求 : 学 习 要 求 及 难 点 1. 了 解 IP 协 议 TCP 协 议 和 UDP 协 议 2. 熟 悉 IP 地 址 的 划 分 和 分 类 3. 了 解 IPV6 的 地 址 结 构 二. 难 点 : 1. IP 地 址 三. 学 时 : 1. 理 论 教 学 :6

More information

Microsoft Word - 11.doc

Microsoft Word - 11.doc 除 錯 技 巧 您 將 於 本 章 學 到 以 下 各 項 : 如 何 在 Visual C++ 2010 的 除 錯 工 具 控 制 下 執 行 程 式? 如 何 逐 步 地 執 行 程 式 的 敘 述? 如 何 監 看 或 改 變 程 式 中 的 變 數 值? 如 何 監 看 程 式 中 計 算 式 的 值? 何 謂 Call Stack? 何 謂 診 斷 器 (assertion)? 如 何

More information

目 录(目录名)

目  录(目录名) 1 SIP... 1 1.1 SIP... 1 1.2 SIP... 1 1.3 SIP... 2 2 SIP... 3 2.1... 3 2.2... 4 3 SIP... 6 3.1 SIP... 6 3.2 SIP... 6 3.3... 6 3.3.1... 6 3.3.2... 8 4 SIP... 11 4.1... 11 4.2 1xx... 11 4.3 2xx... 12 4.4

More information

User Group SMTP

User Group SMTP SOP v1.00 2003 02 28 TrendMicro Control Manager V2.5 1 1... 3 2... 4 2.1... 4 2.2... 14 3... 24 3.1... 24 3.2... 29 3.3... 34 3.3.1... 34 3.3.2 User Group... 37 3.3.3... 40 3.4... 41 3.4.1... 41 3.4.2

More information

¶C¶L§§¬_™¨ A.PDF

¶C¶L§§¬_™¨ A.PDF 1 9 3 1 9 4 / 7.1 / 1 9 5 7.2 % netstat -rn Routing tables Destination Gateway Flags Refcnt Use Interface 127.0.0.1 127.0.0.1 UH 1 132 lo0 172.16.12.0 172.16.12.2 U 26 49041 le0 1 9 6 / % ping -s almond

More information

第 11 章 互聯網技術 11.1 互聯 網 和 萬 維 網 的 發 展 歷 史 A. 互聯網的發展 互聯網是由 ARPANET 開 始發展的 1969 年 美國國防部高級研究計劃署 (ARPA) 把部分軍事研究所和大 的電腦連接起來 建造了㆒個實驗性的電腦網絡 稱為 ARPANET 並 列 的功能

第 11 章 互聯網技術 11.1 互聯 網 和 萬 維 網 的 發 展 歷 史 A. 互聯網的發展 互聯網是由 ARPANET 開 始發展的 1969 年 美國國防部高級研究計劃署 (ARPA) 把部分軍事研究所和大 的電腦連接起來 建造了㆒個實驗性的電腦網絡 稱為 ARPANET 並 列 的功能 互 聯 網 技 術 在 完 成 這 章 後, 你 將 能 夠 描 述 互 聯 網 的 發 展 歷 史 描 述 萬 維 網 的 發 展 歷 史 了 解 連 接 互 聯 網 的 基 本 概 念 能 夠 連 接 到 互 聯 網 知 道 互 聯 網 如 何 運 作 互 聯 網 是 全 球 網 絡 的 集 合 互 聯 網 (Internet) 是 ㆒ 個 集 合 全 球 許 多 網 絡 ㆒ 起 的 大 型 網

More information

Squid中文权威指南

Squid中文权威指南 Squid 中文权威指南 ( 第 2 章 ) 译者序 : 本人在工作中维护着数台 Squid 服务器, 多次参阅 Duane Wessels( 他也是 Squid 的创始人 ) 的这本书, 原书名是 "Squid: The Definitive Guide", 由 O'Reilly 出版 我在业余时间把它翻译成中文, 希望对中文 Squid 用户有所帮助 对普通的单位上网用户,Squid 可充当代理服务器

More information

一.NETGEAR VPN防火墙产品介绍

一.NETGEAR VPN防火墙产品介绍 NETGEAR VPN NETGEAR 6 http://www.netgear.com.cn - 1 - NETGEAR VPN... 4 1.1 VPN...4 1.2 Dynamic Domain Name Service...4 1.3 Netgear VPN...4 Netgear VPN... 6 2.1 FVS318 to FVS318 IKE Main...7 2.1.1 A VPN

More information

Session Number VVT-291 Cisco ACNS / Microsoft WMT Don't Know None Others Investor relations Business to business collaboration Marketing events raining for customers and suppliers External communications

More information

編 輯 室 手 札 Editor Navigation 刑 事 資 訊 科 技 再 造 整 合 分 析 犯 罪 情 資 文 / 編 輯 室 刑 事 資 訊 科 技 的 發 展, 從 最 初 定 位 於 犯 罪 資 料 電 子 數 位 化, 再 隨 著 犯 罪 手 法 科 技 化 的 趨 勢, 刑 事 資 訊 科 技 在 犯 罪 偵 查 工 作 上 的 角 色 也 愈 顯 重 要, 刑 事 資 訊 業

More information

第3章 计算机网络体系结构

第3章  计算机网络体系结构 第 3 章 计 算 机 网 络 体 系 结 构 本 章 内 容 计 算 机 的 网 络 体 系 结 构 网 络 参 考 模 型 五 层 网 络 参 考 模 型 1 3.1 计 算 机 网 络 体 系 结 构 发 展 历 程 分 层 原 理 基 本 概 念 2 发 展 历 程 网 络 体 系 结 构 提 出 的 背 景 计 算 机 网 络 的 复 杂 性 异 质 性 不 同 的 通 信 介 质 有 线

More information

Data Server_new_.doc

Data Server_new_.doc 0i B/C Data Server Windows 2000 Window XP Windows XP FTP FANUC Data Server FTP liwei@beijing-fanuc 1 06-10-8 Content 1. /...3 1.1...3 1.2...3 1.3 CNC...3 2....5 2.1 STORAGE...5 2.2 FTP...6 2.3 BUFFER...7

More information

Cadence SPB 15.2 VOICE Cadence SPB 15.2 PC Cadence 3 (1) CD1 1of 2 (2) CD2 2of 2 (3) CD3 Concept HDL 1of 1

Cadence SPB 15.2 VOICE Cadence SPB 15.2 PC Cadence 3 (1) CD1 1of 2 (2) CD2 2of 2 (3) CD3 Concept HDL 1of 1 Cadence SPB 15.2 VOICE 2005-05-07 Cadence SPB 15.2 PC Cadence 3 (1) CD1 1of 2 (2) CD2 2of 2 (3) CD3 Concept HDL 1of 1 1 1.1 Cadence SPB 15.2 2 Microsoft 1.1.1 Windows 2000 1.1.2 Windows XP Pro Windows

More information

飞鱼星多WAN防火墙路由器用户手册

飞鱼星多WAN防火墙路由器用户手册 WAN VER: 20110218 Copyright 2002-2011 VOLANS WAN VR4600 VR4900 VR7200 VR7500 VR7600 1.1 1.2 IP 1.3 2.1 2.2 2.2.1 2.2.2 3.1 3.2 3.2.1 3.2.2 3.2.3 4.1 4.2 4.2.1 4.2.2 4.2.3 4.2.4 4.2.5 4.2.6 4.3 4.3.1 4.3.2

More information

(Real-time) (Local Host) (Buffer) (Video Conference) (VoD) (NetRadio) ,000 [1]( ) ( ) 1400 (2001 ) 75 (2005 ) DFC Intelligence [2] 1

(Real-time) (Local Host) (Buffer) (Video Conference) (VoD) (NetRadio) ,000 [1]( ) ( ) 1400 (2001 ) 75 (2005 ) DFC Intelligence [2] 1 1001 TEL (03) 5712121 EXT. 56667 E-Mail tgs@app.geo.ncu.edu.tw ydlin@cis.nctu.edu.tw TEL 03 5712121 EXT.58554 ADSL RTP RTSP SDP SMIL (Apple Computer) RTP RTP RTSP RTP Streaming RTP RTSP Darwin Streaming

More information

iGENUS爱琴思邮件系统技术白皮书

iGENUS爱琴思邮件系统技术白皮书 igenus 爱 琴 思 邮 件 系 统 技 术 白 皮 书 Http://www.iGENUS.cn 版 权 信 息 igenus 爱 琴 思 邮 件 系 统 版 权 所 有 2009 爱 琴 思 科 技 ( 成 都 ) 有 限 公 司 igenus information technologies Inc.,Chengdu 文 档 保 证 声 明 本 文 档 以 提 供 信 息 为 目 的, 所

More information

A API Application Programming Interface 见 应 用 程 序 编 程 接 口 ARP Address Resolution Protocol 地 址 解 析 协 议 为 IP 地 址 到 对 应 的 硬 件 地 址 之 间 提 供 动 态 映 射 阿 里 云 内

A API Application Programming Interface 见 应 用 程 序 编 程 接 口 ARP Address Resolution Protocol 地 址 解 析 协 议 为 IP 地 址 到 对 应 的 硬 件 地 址 之 间 提 供 动 态 映 射 阿 里 云 内 A API Application Programming Interface 见 应 用 程 序 编 程 接 口 ARP Address Resolution Protocol 地 址 解 析 协 议 为 IP 地 址 到 对 应 的 硬 件 地 址 之 间 提 供 动 态 映 射 阿 里 云 内 容 分 发 网 络 Alibaba Cloud Content Delivery Network 一

More information

(Methods) Client Server Microsoft Winsock Control VB 1 VB Microsoft Winsock Control 6.0 Microsoft Winsock Control 6.0 1(a). 2

(Methods) Client Server Microsoft Winsock Control VB 1 VB Microsoft Winsock Control 6.0 Microsoft Winsock Control 6.0 1(a). 2 (2005-01-26) (2005-01-26) (2005-02-27) PIC_SERVER (9) VB TCP/UDP Visual Basic Microsoft Winsock Control (MSWINSCK.OCX) UDP TCP Client Server Visual Basic UDP/TCP PIC_SERVER UDP/TCP 1. Microsoft Winsock

More information

SIP/ENUM Trial

SIP/ENUM Trial Taiwan SIP/ENUM trial ENUM Director of TWNIC IP Department 2004/12/15 1 Outline What is ENUM Taiwan SIP/ENUM Trial Project ENUM 2 What is ENUM ENUMDNSE.164 ENUMDNS ENUM 3 ENUMDNSE.164 Enum telephone Number

More information

網路安全:理論與實務 第二版

網路安全:理論與實務 第二版 第 10 章 :Wireshark 封 包 分 析 軟 體 10-1 Wireshark 簡 介 10-2 Wireshark 的 安 裝 方 法 10-3 Wireshark 的 使 用 Wireshark 簡 介 - 發 展 歷 史 Wireshark (http://www.wireshark.org/) 是 一 個 開 放 原 始 碼 (open source software) 軟 體,

More information

ch09.PDF

ch09.PDF 9-1 / (TCP/IP) TCP/IP TCP/IP ( ) ICMP ARP RARP 9.1 TCP/IP 9.1.1 TCP/IP OSI TCP/IP (DARPA) DARPA TCP/IP UNIX Berkeley Software DistributionTCP/IP TCP/IP TCP/IP TCP/IP TCP/IP TCP/IP OSI - TCP/IP ( ) ( )

More information

untitled

untitled 年度 路 IVI 劉 隆 年 597 598 IVI 錄... 601 行... 601... 601 1.... 601 2. 路... 602 3.... 603... 604 1.IPv4 to IPv6... 604 2.IPv6 to IPv4... 605 -... 606 ( )IVI Server... 606 ( )IVI Server... 610 ( )IVI DNS Server...

More information

经华名家讲堂

经华名家讲堂 5.1 5.1.1 5.1.2 5.2 5.2.1 5.2.2 5.2.3 5.2.4 5.2.5 5.3 5.3.1 5.3.2 5.3.3 / 5.3.4 / 5.3.5 / 5.4 Internet 5.4.1 Internet 5.4.2 Intranet 1. 2. 1 31 5 5.1 5.1.1 Internet 1 Host 20 60 IBM 2000 2 20 60 20 60

More information

PowerPoint 演示文稿

PowerPoint 演示文稿 Hadoop 生 态 技 术 在 阿 里 全 网 商 品 搜 索 实 战 阿 里 巴 巴 - 王 峰 自 我 介 绍 真 名 : 王 峰 淘 宝 花 名 : 莫 问 微 博 : 淘 莫 问 2006 年 硕 士 毕 业 后 加 入 阿 里 巴 巴 集 团 淘 及 搜 索 事 业 部 ( 高 级 技 术 与 家 ) 目 前 负 责 搜 索 离 线 系 统 团 队 技 术 方 向 : 分 布 式 计 算

More information

13 根 据 各 种 网 络 商 务 信 息 对 不 同 用 户 所 产 生 的 使 用 效 用, 网 络 商 务 信 息 大 致 可 分 为 四 级, 其 中 占 比 重 最 大 的 是 ( A ) A 第 一 级 免 费 信 息 B 第 二 级 低 收 费 信 息 C 第 三 级 标 准 收 费

13 根 据 各 种 网 络 商 务 信 息 对 不 同 用 户 所 产 生 的 使 用 效 用, 网 络 商 务 信 息 大 致 可 分 为 四 级, 其 中 占 比 重 最 大 的 是 ( A ) A 第 一 级 免 费 信 息 B 第 二 级 低 收 费 信 息 C 第 三 级 标 准 收 费 助 理 电 子 商 务 考 试 真 题 试 题 第 一 部 分 : 理 论 部 分 一 单 项 选 择 题 1 ( B ) 是 信 息 系 统 的 核 心 组 成 部 分 A 逻 辑 模 型 B 数 据 库 C 概 念 模 型 D 以 上 全 部 2 ping www.163.com -t 中 参 数 t 的 作 用 是 :( A ) A 进 行 连 续 测 试 B 在 新 窗 口 中 显 示 C

More information

AL-M200 Series

AL-M200 Series NPD4754-00 TC ( ) Windows 7 1. [Start ( )] [Control Panel ()] [Network and Internet ( )] 2. [Network and Sharing Center ( )] 3. [Change adapter settings ( )] 4. 3 Windows XP 1. [Start ( )] [Control Panel

More information

IC-900W Wireless Pan & Tilt Wireless Pan & Tilt Remote Control / Night Vision FCC ID:RUJ-LR802UWG

IC-900W Wireless Pan & Tilt Wireless Pan & Tilt Remote Control / Night Vision FCC ID:RUJ-LR802UWG IC-900W Wireless Pan & Tilt Wireless Pan & Tilt Remote Control / Night Vision FCC ID:RUJ-LR802UWG --------------------------------------------TABLE OF CONTENTS------------------------------------------

More information

穨UPSentry_SC_.PDF

穨UPSentry_SC_.PDF 3Phase UPSentry For: Windows 95/98/Me Windows NT40/2000/XP Table of Contents Chapter 0 Getting Started 0-1 0-1 0-1 0-2 Chapter 1 3Phase UPSentry 1-1 1-1 1-1 1-1 1-3 Chapter 2 3Phase UPSentry 2-1 Chapter

More information

ebook62-1

ebook62-1 1 Red Hat Linux R e d Hat Linux L i n u x X Wi n d o w Red Hat L i n u x 1.1 Red Hat Linux Red Hat 16 M 120 M 3. 5 Intel 386 C D - R O M C D - R O M We b / 1.1.1 L i n u x L i n u 4 Primary Partition Extended

More information

Contents 1. IPSIDS...1... 19 2....2 IT... 21 3....2 4....3 FAQ... 26 5. 21 CISP...3 6. IPS...3 7. 2008...4 8. 2008...4...6...7 IPS Web...9...13...14...15 TOP10...16... 28... 31... 33... 37... 40... 42...

More information

软件测试(TA07)第一学期考试

软件测试(TA07)第一学期考试 一 判 断 题 ( 每 题 1 分, 正 确 的, 错 误 的,20 道 ) 1. 软 件 测 试 按 照 测 试 过 程 分 类 为 黑 盒 白 盒 测 试 ( ) 2. 在 设 计 测 试 用 例 时, 应 包 括 合 理 的 输 入 条 件 和 不 合 理 的 输 入 条 件 ( ) 3. 集 成 测 试 计 划 在 需 求 分 析 阶 段 末 提 交 ( ) 4. 单 元 测 试 属 于 动

More information

目 彔 1. 准 备 工 作... 1 2. 登 彔 设 置... 2 3. 功 能 说 明... 4 3.1 实 时 监 控... 4 3.1.1 基 本 控 制... 4 4.1.2 功 能 设 置... 4 3.1.3 画 质 调 节... 6 3.1.4 彔 像 与 抓 拍... 6 3.1

目 彔 1. 准 备 工 作... 1 2. 登 彔 设 置... 2 3. 功 能 说 明... 4 3.1 实 时 监 控... 4 3.1.1 基 本 控 制... 4 4.1.2 功 能 设 置... 4 3.1.3 画 质 调 节... 6 3.1.4 彔 像 与 抓 拍... 6 3.1 嵌 入 式 Web Server 用 户 手 册 V2.0 感 谢 您 选 用 本 公 司 的 产 品, 请 您 在 使 用 本 产 品 前 仔 细 阅 读 用 户 手 册, 本 用 户 手 册 将 为 您 提 供 正 确 的 使 用 说 明 版 权 声 明 : 本 用 户 手 册 版 权 归 天 津 市 亚 安 科 技 股 仹 有 限 公 司 所 有, 未 经 本 公 司 许 可, 仸 何 机 构

More information

RAQMON Context Setting MG PDA Applications RTP / FTP/ HTTP TCP/UDP S ignaling control plane (e.g. RS VP, NS IS) Streaming Media, Transaction, Bulk dat

RAQMON Context Setting MG PDA Applications RTP / FTP/ HTTP TCP/UDP S ignaling control plane (e.g. RS VP, NS IS) Streaming Media, Transaction, Bulk dat Realtime Application QOS Monitoring (RAQMON) Dan Romascanu dromasca@avaya.com 1 RAQMON Context Setting MG PDA Applications RTP / FTP/ HTTP TCP/UDP S ignaling control plane (e.g. RS VP, NS IS) Streaming

More information

ebook 145-6

ebook 145-6 6 6.1 Jim Lockhart Windows 2000 0 C S D Wo r m. E x p l o r e Z i p z i p p e d _ f i l e s. e x e Wo r m. E x p l o r e Z i p H i Recipient Name! I received your email and I shall send you a reply ASAP.

More information

(CIP) Web /,. :,2005. 1 ISBN 7 81058 782 X.W............T P393.4 CIP (2004) 118797 Web ( 99 200436) ( http:/ / www.shangdapress.com 66135110) : * 787

(CIP) Web /,. :,2005. 1 ISBN 7 81058 782 X.W............T P393.4 CIP (2004) 118797 Web ( 99 200436) ( http:/ / www.shangdapress.com 66135110) : * 787 Web (CIP) Web /,. :,2005. 1 ISBN 7 81058 782 X.W............T P393.4 CIP (2004) 118797 Web ( 99 200436) ( http:/ / www.shangdapress.com 66135110) : * 787 1092 1/ 16 30.75 748 2005 1 1 2005 1 1 : 1 3 100

More information

EK-STM32F

EK-STM32F STMEVKIT-STM32F10xx8 软 件 开 发 入 门 指 南 目 录 1 EWARM 安 装... 1 1.1 第 一 步 : 在 线 注 册... 1 1.2 第 二 步 : 下 载 软 件... 2 1.3 第 三 步 : 安 装 EWARM... 3 2 基 于 STMEVKIT-STM32F10xx8 的 示 例 代 码 运 行... 6 2.1 GPIO Demo... 6 2.2

More information

IP Access Lists IP Access Lists IP Access Lists

IP Access Lists IP Access Lists IP Access Lists Chapter 10 Access Lists IP Access Lists IP Access Lists IP Access Lists Security) IP Access Lists Access Lists (Network router For example, RouterA can use an access list to deny access from Network 4

More information

PowerPoint 演示文稿

PowerPoint 演示文稿 Linux 操 作 系 统 基 础 介 绍 课 程 目 标 及 要 求 了 解 Linux 操 作 系 统 的 登 入 方 式 掌 握 常 用 命 令 的 基 本 用 法 能 够 熟 练 在 各 个 目 录 转 换 Outline 1. Linux 操 作 系 统 简 介 2. Linux 操 作 系 统 的 登 录 3. Linux 操 作 系 统 的 目 录 结 构 4. 常 用 命 令 5.

More information

ME3208E2-1.book

ME3208E2-1.book DocuPrint 205/255/305 操 作 說 明 書 Adobe Adobe logo PostScript PostScript 3 及 PostScript logo 是 Adobe Systems Incorporated 的 商 標 Microsoft Windows Windows NT Windows Server 是 美 國 Microsoft Corporation 於 美

More information

LTM Management Console

LTM Management Console Lenovo Thin Client Manager 用 户 手 册 注 释 警 示 及 警 告 注 释 : 一 条 注 释 是 用 来 说 明 重 要 的 信 息, 帮 助 您 更 好 地 使 用 计 算 机 警 示 : 一 个 警 示 是 用 来 指 出, 如 果 不 依 照 说 明 操 作, 则 可 能 损 坏 硬 件 或 丢 失 数 据 本 出 版 物 中 的 信 息 如 有 更 改, 恕

More information

OSI OSI 15% 20% OSI OSI ISO International Standard Organization 1984 OSI Open-data System Interface Reference Model OSI OSI OSI OSI ISO Prototype Prot

OSI OSI 15% 20% OSI OSI ISO International Standard Organization 1984 OSI Open-data System Interface Reference Model OSI OSI OSI OSI ISO Prototype Prot OSI OSI OSI 15% 20% OSI OSI ISO International Standard Organization 1984 OSI Open-data System Interface Reference Model OSI OSI OSI OSI ISO Prototype Protocol OSI OSI OSI OSI OSI O S I 2-1 Application

More information

Microsoft Word - YDB doc

Microsoft Word - YDB doc YDB 中 国 通 信 标 准 化 协 会 标 准 YDB 118 2012 宽 带 速 率 测 试 方 法 用 户 上 网 体 验 Broadband speed test method User experience of internet surfing 2012-11 - 13 印 发 中 国 通 信 标 准 化 协 会 目 次 前 言... Ⅱ 1 范 围... 1 2 规 范 性 引 用

More information

untitled

untitled 7.1 7.1.1 IP R1 N N,R1,M IP 1 7.1.2 [Quidway]display ip routing Routing Tables: Destination/Mask proto pref Metric Nexthop Interface 0.0.0.0/0 Static 60 0 120.0.0.2 Serial0 8.0.0.0/8 RIP 100 3 120.0.0.2

More information

六域链联盟 SDChain-Matrix 节点搭建指南 2018/07/26 Version : 1.0.0

六域链联盟 SDChain-Matrix 节点搭建指南 2018/07/26 Version : 1.0.0 SDChain-Matrix 节点搭建指南 目录 1 环境要求... 3 2 软件下载... 4 3 安装部署... 4 3.1 部署可执行程序目录... 4 3.2 部署配置文件目录... 4 3.3 部署数据库文件目录... 4 3.4 部署日志文件目录... 4 3.5 部署依赖库文件目录... 4 4 配置参数... 5 5 启动运行... 7 5.1 普通模式启动... 7 5.2 加载启动模式...

More information

(UTM???U_935_938_955_958_959 V2.1.9.1)

(UTM???U_935_938_955_958_959 V2.1.9.1) 192.16 www.sharetech.com.tw UTM 多 功 能 防 火 牆 管 理 者 手 冊 V 2.1.9.1 目 錄 第 一 章 安 裝 與 訊 息... 7 1-1 建 議 的 安 裝 設 定 圖... 8 1-2 軟 體 安 裝 設 定... 9 1-3 首 頁 訊 息... 14 1-4 型 號 與 功 能 對 照 表... 17 第 二 章 系 統 設 定... 19 2-1

More information

1 Linux Linux Linux Windows NT Linux Linux UNIX Internet Linux Internet Internet Web Linux 26.3% Web Apache 60% Sendmail Internet Linux ISP/ICP

1 Linux Linux Linux Windows NT Linux Linux UNIX Internet Linux Internet Internet Web Linux 26.3% Web Apache 60% Sendmail Internet Linux ISP/ICP Linux 3.0 1...2 2...2 2.1...3 2.2...3 2.3...3 2.4 Web...3 2.5...4 2.6...4 3...4 3.1 Web...5 3.2...6 3.3 DNS...7 3.4...7 3.5 DHCP...10 3.6 FTP...10 3.7 /...10 3.8 Email...11 3.9 snort...11 3.10 Xinetd...14

More information

AIX系统培训7.ppt

AIX系统培训7.ppt AIX Undefined Defined Available No Differenc bound vmstat when %user + %sys greater than 80% I/O bound vmstat when %iowait greater than 40% (AIX 4.3.3 or later) lication

More information

mvc

mvc Build an application Tutor : Michael Pan Application Source codes - - Frameworks Xib files - - Resources - ( ) info.plist - UIKit Framework UIApplication Event status bar, icon... delegation [UIApplication

More information

Squid中文权威指南

Squid中文权威指南 Squid 中文权威指南 ( 第 4 章 ) 译者序 : 本人在工作中维护着数台 Squid 服务器, 多次参阅 Duane Wessels( 他也是 Squid 的创始人 ) 的这本书, 原书名是 "Squid: The Definitive Guide", 由 O'Reilly 出版 我在业余时间把它翻译成中文, 希望对中文 Squid 用户有所帮助 对普通的单位上网用户,Squid 可充当代理服务器

More information

ebook 132-6

ebook 132-6 6 SQL Server Windows NT Windows 2000 6.1 Enterprise Manager SQL Server Enterprise Manager( ) (Microsoft Management C o n s o l e M M C ) Enterprise Manager SQL Server Enterprise Manager 6.1.1 Enterprise

More information

Oracle 4

Oracle 4 Oracle 4 01 04 Oracle 07 Oracle Oracle Instance Oracle Instance Oracle Instance Oracle Database Oracle Database Instance Parameter File Pfile Instance Instance Instance Instance Oracle Instance System

More information

untitled

untitled 年度 路 GSN IPv6 年 749 750 說 (Dual Stack) 路 IPv4 IPv6 路 (DNS/WWW Server) 路 CISCO 路 例來 說 列 令 (DNS/WWW Server) FreeBSD 來說 BIND apache Server 來 DNS WWW Server 了 料 數 了 IPv4 路 IPv6 更 利 751 752 錄 錄 錄 錄 論 路 說 路

More information

Microsoft PowerPoint - Performance Analysis of Video Streaming over LTE using.pptx

Microsoft PowerPoint - Performance Analysis of Video Streaming over LTE using.pptx ENSC 427 Communication Networks Spring 2016 Group #2 Project URL: http://www.sfu.ca/~rkieu/ensc427_project.html Amer, Zargham 301149920 Kieu, Ritchie 301149668 Xiao, Lei 301133381 1 Roadmap Introduction

More information

ebook 132-2

ebook 132-2 2 SQL Server 7.0 SQL Server SQL Server 7 SQL Server 7 5 2.1 SQL Server 7 SQL Server 7 SQL Server SQL Server SQL Server 2.1.1 SQL Server Windows NT/2000 Windows 95/98 ( r a n d o m access memory R A M )

More information

untitled

untitled Lwip Swedish Institute of Computer Science February 20, 2001 Adam Dunkels adam@sics.se (QQ: 10205001) (QQ: 329147) (QQ:3232253) (QQ:3232253) QQ ARM TCPIP LCD10988210 LWIP TCP/IP LWIP LWIP lwip API lwip

More information

2/80 2

2/80 2 2/80 2 3/80 3 DSP2400 is a high performance Digital Signal Processor (DSP) designed and developed by author s laboratory. It is designed for multimedia and wireless application. To develop application

More information

目 錄 第 一 章 weberp 簡 介... 6 第 一 節 概 述... 6 第 二 節 安 全 性... 7 第 三 節 功 能... 7 一 銷 售 及 訂 單... 7 二 稅... 8 三 應 收 帳 款... 8 四 存 貨... 8 五 購 買... 9 六 應 付 帳 款... 9

目 錄 第 一 章 weberp 簡 介... 6 第 一 節 概 述... 6 第 二 節 安 全 性... 7 第 三 節 功 能... 7 一 銷 售 及 訂 單... 7 二 稅... 8 三 應 收 帳 款... 8 四 存 貨... 8 五 購 買... 9 六 應 付 帳 款... 9 東 吳 大 學 企 研 所 資 訊 管 理 期 末 報 告 weberp 使 用 說 明 書 指 導 教 授 : 尚 榮 安 教 授 第 一 組 童 偉 哲 01353025 劉 彥 澧 01353028 史 璦 禎 01353031 吳 采 紋 98153143 1 目 錄 第 一 章 weberp 簡 介... 6 第 一 節 概 述... 6 第 二 節 安 全 性... 7 第 三 節 功

More information

財金資訊-84期.indd

財金資訊-84期.indd BANK 3.0 BANK 3.0 / 102 12 Target Corporation POS (Point-of-sale) 7,000 200 10 ( ) 103 5 29 11 2 103 7 10 10300173840 ( ) ( ) 1 48 / No.84 / 2015.10 BANK 3.0 1 ( ATM ) ( ) ( ) 103 ( 2) 2 ( ) ( ) ( ) (

More information

Symantec™ Sygate Enterprise Protection 防护代理安装使用指南

Symantec™ Sygate Enterprise Protection 防护代理安装使用指南 Symantec Sygate Enterprise Protection 防 护 代 理 安 装 使 用 指 南 5.1 版 版 权 信 息 Copyright 2005 Symantec Corporation. 2005 年 Symantec Corporation 版 权 所 有 All rights reserved. 保 留 所 有 权 利 Symantec Symantec 徽 标 Sygate

More information