30 秒解释“192.168.0.0/24”中的“/24”

我现在工作中正在处理这类事务,起初对我来说(作为一个网络安全背景知识有限的人),这真的很不直观。

所以,我在这里尽量把它简化,讲给那些不太熟悉IP地址的人听。

单一IP地址

192.168.0.0

192.168.0.0就是一个单独的IP地址,仅此而已。

在IP地址后添加“/”和数字

192.168.0.0/32是一个IP地址范围。

192.168.0.0/31也是一个IP地址范围。

192.168.0.0/30同样是一个IP地址范围。

192.168.0.0/29还是一个IP地址范围。

192.168.0.0/28依旧是一个IP地址范围。

依此类推。

我们在“/”后面添加的数字取值范围是从0到32。

查找此范围内的IP地址

我们先来找出这个范围内IP地址的数量。

假设我们有192.168.0.0/30这个地址范围

IP地址数量 = 2 ^ (32 - 30)

也就是2 ^ 2 = 4

所以,这个范围内的IP地址就是192.168.0.0、192.168.0.1、192.168.0.2以及192.168.0.3。

再假设我们有192.168.0.0/29这个地址范围:

IP地址数量 = 2 ^ (32 - 29)

即2 ^ 3 = 8

那么,该范围内的IP地址就是192.168.0.0、192.168.0.1、192.168.0.2……192.168.0.7。

又假设我们有192.168.0.1/28这个地址范围:

IP地址数量 = 2 ^ (32 - 28)

也就是2 ^ 4 = 16

这样一来,其IP地址就是192.168.0.0、192.168.0.1、192.168.0.2……192.168.0.15。

需要注意的是——在我看来,这种表示法很奇怪,也不直观,但它在行业内应用广泛,所以我想我也没资格反对它吧。

使用Python查找IP地址范围

我们可以使用Python内置的ipaddress模块来自动完成这项操作。

import ipaddress
x = list(ipaddress.ip_network('192.168.0.0/30', False))
from pprint import pprint
# 此范围内有4个IP地址
pprint(x)
'''
[IPv4Address('192.168.0.0'),
 IPv4Address('192.168.0.1'),
 IPv4Address('192.168.0.2'),
 IPv4Address('192.168.0.3')]
'''

上述代码中,False参数关闭了严格模式(开启严格模式会导致出错)。

import ipaddress
x = list(ipaddress.ip_network('192.168.0.0/28', False))
from pprint import pprint
# 此范围内有16个IP地址
pprint(x)
'''
[IPv4Address('192.168.0.0'),
 IPv4Address('192.168.0.1'),
 IPv4Address('192.168.0.2'),
 IPv4Address('192.168.0.3'),
 IPv4Address('192.168.0.4'),
 IPv4Address('192.168.0.5'),
 IPv4Address('192.168.0.6'),
 IPv4Address('192.168.0.7'),
 IPv4Address('192.168.0.8'),
 IPv4Address('192.168.0.9'),
 IPv4Address('192.168.0.10'),
 IPv4Address('192.168.0.11'),
 IPv4Address('192.168.0.12'),
 IPv4Address('192.168.0.13'),
 IPv4Address('192.168.0.14'),
 IPv4Address('192.168.0.15')]
'''

对于192.168.0.0/24:

IP地址数量 = 2 ^ (32 - 24)

即2 ^ 8 = 256

import ipaddress
x = list(ipaddress.ip_network('192.168.0.0/24', False))
from pprint import pprint
pprint(x)
'''
[IPv4Address('192.168.0.0'),
 IPv4Address('192.168.0.1'),
 IPv4Address('192.168.0.2'),
 IPv4Address('192.168.0.3'),
 IPv4Address('192.168.0.4'),
 ......
  ......
   ......
 IPv4Address('192.168.0.255'),

写在最后

我不会深入探讨 IP 地址的理论及其代表的含义(这需要更多文章来介绍),但希望这篇文章能够有所帮助并且易于理解。

[LSW1]dis ospf interface OSPF Process 1 with Router ID 10.1.1.1 Interfaces Area: 0.0.0.0 IP Address Type State Cost Pri DR BDR 10.1.1.1 P2P P-2-P 0 1 0.0.0.0 0.0.0.0 192.168.12.1 Broadcast DR 1 1 192.168.12.1 0.0.0.0 192.168.31.1 Broadcast BDR 1 1 192.168.31.2 192.168.31. 1 192.168.201.2 Broadcast BDR 1 1 192.168.201.1 192.168.201 .2 192.168.202.2 Broadcast DR 1 1 192.168.202.2 0.0.0.0 [LSW1] [LSW1]dis [LSW1]display os [LSW1]display ospf pe [LSW1]display ospf peer OSPF Process 1 with Router ID 10.1.1.1 Neighbors Area 0.0.0.0 interface 192.168.31.1(Vlanif31)'s neighbors Router ID: 10.1.1.9 Address: 192.168.31.2 State: Full Mode:Nbr is Master Priority: 1 DR: 192.168.31.2 BDR: 192.168.31.1 MTU: 0 Dead timer due in 32 sec Retrans timer interval: 5 Neighbor is up for 01:18:13 Authentication Sequence: [ 0 ] Neighbors Area 0.0.0.0 interface 192.168.201.2(Vlanif201)'s neighbors Router ID: 10.1.1.3 Address: 192.168.201.1 State: Full Mode:Nbr is Master Priority: 1 DR: 192.168.201.1 BDR: 192.168.201.2 MTU: 0 Dead timer due in 38 sec Retrans timer interval: 5 Neighbor is up for 00:13:27 Authentication Sequence: [ 0 ] [LSW1]dis ip rou [LSW1]dis ip routing-table Route Flags: R - relay, D - download to fib ------------------------------------------------------------------------------ Routing Tables: Public Destinations : 27 Routes : 29 Destination/Mask Proto Pre Cost Flags NextHop Interface 0.0.0.0/0 O_ASE 150 1 D 192.168.31.2 Vlanif31 10.1.1.1/32 Direct 0 0 D 127.0.0.1 LoopBack0 10.1.1.2/32 OSPF 10 2 D 192.168.31.2 Vlanif31 OSPF 10 2 D 192.168.201.1 Vlanif201 10.1.1.3/32 OSPF 10 1 D 192.168.201.1 Vlanif201 10.1.1.9/32 OSPF 10 1 D 192.168.31.2 Vlanif31 127.0.0.0/8 Direct 0 0 D 127.0.0.1 InLoopBack0 127.0.0.1/32 Direct 0 0 D 127.0.0.1 InLoopBack0 192.168.10.0/24 OSPF 10 2 D 192.168.201.1 Vlanif201 192.168.10.254/32 OSPF 10 2 D 192.168.201.1 Vlanif201 192.168.12.0/30 Direct 0 0 D 192.168.12.1 Vlanif12 192.168.12.1/32 Direct 0 0 D 127.0.0.1 Vlanif12 192.168.20.0/24 OSPF 10 2 D 192.168.201.1 Vlanif201 192.168.20.254/32 OSPF 10 2 D 192.168.201.1 Vlanif201 192.168.30.0/24 OSPF 10 2 D 192.168.201.1 Vlanif201 192.168.31.0/24 Direct 0 0 D 192.168.31.1 Vlanif31 192.168.31.1/32 Direct 0 0 D 127.0.0.1 Vlanif31 192.168.32.0/24 OSPF 10 2 D 192.168.31.2 Vlanif31 192.168.40.0/24 OSPF 10 2 D 192.168.201.1 Vlanif201 192.168.40.254/32 OSPF 10 2 D 192.168.201.1 Vlanif201 192.168.50.0/24 Direct 0 0 D 192.168.50.1 Vlanif50 192.168.50.1/32 Direct 0 0 D 127.0.0.1 Vlanif50 192.168.201.0/24 Direct 0 0 D 192.168.201.2 Vlanif201 192.168.201.2/32 Direct 0 0 D 127.0.0.1 Vlanif201 192.168.202.0/24 Direct 0 0 D 192.168.202.2 Vlanif202 192.168.202.2/32 Direct 0 0 D 127.0.0.1 Vlanif202 192.168.203.0/24 OSPF 10 2 D 192.168.201.1 Vlanif201 192.168.204.0/24 OSPF 10 3 D 192.168.31.2 Vlanif31 OSPF 10 3 D 192.168.201.1 Vlanif201 [LSW1][LSW1]dis ospf interface Vlanif 12 OSPF Process 1 with Router ID 10.1.1.1 Interfaces Interface: 192.168.12.1 (Vlanif12) Cost: 1 State: DR Type: Broadcast MTU: 1500 Priority: 1 Designated Router: 192.168.12.1 Backup Designated Router: 0.0.0.0 Timers: Hello 10 , Dead 40 , Poll 120 , Retransmit 5 , Transmit Delay 1 [LSW1][LSW1]dis ospf interface Vlanif 12 OSPF Process 1 with Router ID 10.1.1.1 Interfaces Interface: 192.168.12.1 (Vlanif12) Cost: 1 State: DR Type: Broadcast MTU: 1500 Priority: 1 Designated Router: 192.168.12.1 Backup Designated Router: 0.0.0.0 Timers: Hello 10 , Dead 40 , Poll 120 , Retransmit 5 , Transmit Delay 1 [LSW1] [LSW1] display interface GigabitEthernet 0/0/23 GigabitEthernet0/0/23 current state : UP Line protocol current state : UP Description: Switch Port, TPID : 8100(Hex), The Maximum Frame Length is 9216 IP Sending Frames' Format is PKTFMT_ETHNT_2, Hardware address is 4c1f-cc11-0577 Last physical up time : 2025-09-15 20:01:44 UTC-08:00 Last physical down time : 2025-09-15 20:01:42 UTC-08:00 Current system time: 2025-09-15 21:21:42-08:00 Hardware address is 4c1f-cc11-0577 Last 300 seconds input rate 0 bytes/sec, 0 packets/sec Last 300 seconds output rate 0 bytes/sec, 0 packets/sec Input: 119 bytes, 1 packets Output: 289837 bytes, 2589 packets Input: Unicast: 0 packets, Multicast: 1 packets Broadcast: 0 packets Output: Unicast: 0 packets, Multicast: 2575 packets Broadcast: 14 packets Input bandwidth utilization : 0% Output bandwidth utilization : 0%
09-16
Current Time: Sunday, 28-Sep-2025 15:32:41 CST Restart Time: Sunday, 28-Sep-2025 15:31:18 CST Parent Server Config. Generation: 1 Parent Server MPM Generation: 0 Server uptime: 1 minute 22 seconds Server load: 2.87 2.01 1.85 Total accesses: 152 - Total Traffic: 224 kB - Total Duration: 87741 CPU Usage: u.44 s.54 cu.01 cs.05 - 1.27% CPU load 1.85 requests/sec - 2797 B/second - 1509 B/request - 577.243 ms/request 2 requests currently being processed, 48 idle workers Slot PID Stopping Connections Threads Async connections total accepting busy idle writing keep-alive closing 0 13930 no 3 yes 2 48 0 2 0 Sum 1 0 3 2 48 0 2 0 ____________________W_W___________________________.............. ................................................................ ...................... Scoreboard Key: "_" Waiting for Connection, "S" Starting up, "R" Reading Request, "W" Sending Reply, "K" Keepalive (read), "D" DNS Lookup, "C" Closing connection, "L" Logging, "G" Gracefully finishing, "I" Idle cleanup of worker, "." Open slot with no current process Srv PID Acc M CPU SS Req Dur Conn Child Slot Client Protocol VHost Request 0-0 13930 0/3/3 _ 0.86 6 373 2834 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044780776 HTTP/1.1 0-0 13930 0/2/2 _ 0.32 6 18 1690 0.0 0.00 0.00 192.168.0.187 http/1.1 0-0 13930 0/4/4 _ 0.89 4 1046 3108 0.0 0.01 0.01 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044782258 HTTP/1.1 0-0 13930 0/4/4 _ 0.88 5 731 2874 0.0 0.01 0.01 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044781259 HTTP/1.1 0-0 13930 0/3/3 _ 0.86 6 370 2836 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044781259 HTTP/1.1 0-0 13930 0/4/4 _ 0.88 4 923 2607 0.0 0.01 0.01 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044781811 HTTP/1.1 0-0 13930 0/3/3 _ 0.88 4 1028 2498 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044782259 HTTP/1.1 0-0 13930 0/3/3 _ 0.64 4 924 1956 0.0 0.00 0.00 192.168.0.187 http/1.1 0-0 13930 0/4/4 _ 0.89 4 918 3098 0.0 0.01 0.01 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044782745 HTTP/1.1 0-0 13930 0/3/3 _ 0.90 3 825 1417 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044783259 HTTP/1.1 0-0 13930 0/4/4 _ 0.91 3 731 2183 0.0 0.01 0.01 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044783925 HTTP/1.1 0-0 13930 0/4/4 _ 0.91 2 639 1900 0.0 0.01 0.01 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044783259 HTTP/1.1 0-0 13930 0/4/4 _ 0.91 2 520 1631 0.0 0.01 0.01 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044784259 HTTP/1.1 0-0 13930 0/4/4 _ 0.93 1 560 2350 0.0 0.01 0.01 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044785259 HTTP/1.1 0-0 13930 0/4/4 _ 0.93 2 600 2499 0.0 0.01 0.01 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044784925 HTTP/1.1 0-0 13930 0/3/3 _ 0.92 2 240 1013 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044784259 HTTP/1.1 0-0 13930 0/4/4 _ 0.93 1 782 2657 0.0 0.01 0.01 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044785259 HTTP/1.1 0-0 13930 0/4/4 _ 0.95 0 332 1466 0.0 0.01 0.01 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044787259 HTTP/1.1 0-0 13930 0/4/4 _ 0.94 0 748 2135 0.0 0.01 0.01 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044786258 HTTP/1.1 0-0 13930 0/2/2 _ 0.94 0 869 1222 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044785926 HTTP/1.1 0-0 13930 6/3/3 W 0.70 0 0 1102 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044787259 HTTP/1.1 0-0 13930 0/3/3 _ 0.95 0 180 641 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044786258 HTTP/1.1 0-0 13930 15/2/2 W 0.70 0 0 319 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status HTTP/1.1 0-0 13930 0/2/2 _ 0.74 12 939 1422 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044773745 HTTP/1.1 0-0 13930 0/2/2 _ 0.73 13 712 1232 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044773260 HTTP/1.1 0-0 13930 0/2/2 _ 0.70 15 156 311 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044772259 HTTP/1.1 0-0 13930 0/2/2 _ 0.72 14 305 840 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044772746 HTTP/1.1 0-0 13930 0/2/2 _ 0.73 13 686 1192 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044773259 HTTP/1.1 0-0 13930 0/3/3 _ 0.75 12 801 1950 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044774258 HTTP/1.1 0-0 13930 0/3/3 _ 0.75 12 837 1958 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044774259 HTTP/1.1 0-0 13930 0/3/3 _ 0.75 11 469 1542 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044775259 HTTP/1.1 0-0 13930 0/3/3 _ 0.77 10 516 1714 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044776258 HTTP/1.1 0-0 13930 0/3/3 _ 0.76 11 428 1547 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044775259 HTTP/1.1 0-0 13930 0/3/3 _ 0.77 10 509 1772 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044775259 HTTP/1.1 0-0 13930 0/3/3 _ 0.79 10 598 1826 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044776258 HTTP/1.1 0-0 13930 0/3/3 _ 0.78 10 32 1017 0.0 0.01 0.01 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status HTTP/1.1 0-0 13930 0/3/3 _ 0.79 9 523 1134 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044776258 HTTP/1.1 0-0 13930 0/3/3 _ 0.79 9 568 1240 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044777259 HTTP/1.1 0-0 13930 0/3/3 _ 0.81 8 757 1167 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044778042 HTTP/1.1 0-0 13930 0/3/3 _ 0.81 8 876 1542 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044778259 HTTP/1.1 0-0 13930 0/3/3 _ 0.81 9 488 995 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044777259 HTTP/1.1 0-0 13930 0/2/2 _ 0.83 8 879 1187 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044778492 HTTP/1.1 0-0 13930 0/3/3 _ 0.81 8 882 1381 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044777259 HTTP/1.1 0-0 13930 0/3/3 _ 0.83 7 620 1277 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044779258 HTTP/1.1 0-0 13930 0/2/2 _ 0.83 7 665 1019 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044778259 HTTP/1.1 0-0 13930 0/3/3 _ 0.83 7 601 1318 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044779259 HTTP/1.1 0-0 13930 0/3/3 _ 0.86 6 800 1951 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044780258 HTTP/1.1 0-0 13930 0/3/3 _ 0.84 7 718 2237 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044779938 HTTP/1.1 0-0 13930 0/2/2 _ 0.56 8 695 1482 0.0 0.00 0.00 192.168.0.187 http/1.1 0-0 13930 0/2/2 _ 0.85 6 781 1754 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044780259 HTTP/1.1 1-0 - 0/0/1 . 0.00 79 1819 1819 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044704259 HTTP/1.1 1-0 - 0/0/1 . 0.00 79 1853 1853 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759044705259 HTTP/1.1
09-29
Current Time: Sunday, 28-Sep-2025 13:37:46 CST Restart Time: Sunday, 28-Sep-2025 13:10:23 CST Parent Server Config. Generation: 1 Parent Server MPM Generation: 0 Server uptime: 27 minutes 22 seconds Server load: 8.72 4.16 2.58 Total accesses: 458 - Total Traffic: 1.7 MB - Total Duration: 535065 CPU Usage: u1.7 s1.71 cu0 cs0 - .208% CPU load .279 requests/sec - 1091 B/second - 3912 B/request - 1168.26 ms/request 7 requests currently being processed, 43 idle workers Slot PID Stopping Connections Threads Async connections total accepting busy idle writing keep-alive closing 0 17768 no 2 yes 2 23 0 0 0 1 17769 no 4 yes 5 20 0 0 0 Sum 2 0 6 7 43 0 0 0 ____________W__W__________K_WW______WW____________.............. ................................................................ ...................... Scoreboard Key: "_" Waiting for Connection, "S" Starting up, "R" Reading Request, "W" Sending Reply, "K" Keepalive (read), "D" DNS Lookup, "C" Closing connection, "L" Logging, "G" Gracefully finishing, "I" Idle cleanup of worker, "." Open slot with no current process Srv PID Acc M CPU SS Req Dur Conn Child Slot Client Protocol VHost Request 0-0 17768 0/7/7 _ 1.05 9 1815 7439 0.0 0.01 0.01 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037869259 HTTP/1.1 0-0 17768 0/7/7 _ 1.04 12 1478 5701 0.0 0.01 0.01 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037873259 HTTP/1.1 0-0 17768 0/7/7 _ 1.07 7 1609 8253 0.0 0.01 0.01 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037858259 HTTP/1.1 0-0 17768 0/7/7 _ 1.05 9 1825 7637 0.0 0.01 0.01 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037862259 HTTP/1.1 0-0 17768 0/7/7 _ 1.05 10 1414 6639 0.0 0.01 0.01 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037856259 HTTP/1.1 0-0 17768 0/7/7 _ 1.07 6 1261 8021 0.0 0.01 0.01 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037877259 HTTP/1.1 0-0 17768 0/7/7 _ 1.07 7 1578 8705 0.0 0.01 0.01 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037863259 HTTP/1.1 0-0 17768 0/7/7 _ 1.08 6 1289 8677 0.0 0.01 0.01 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037878259 HTTP/1.1 0-0 17768 0/7/7 _ 1.10 3 1775 8508 0.0 0.01 0.01 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037881259 HTTP/1.1 0-0 17768 0/7/7 _ 1.08 5 1244 7632 0.0 0.01 0.01 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037858259 HTTP/1.1 0-0 17768 0/7/7 _ 1.09 4 1283 7451 0.0 0.01 0.01 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037873258 HTTP/1.1 0-0 17768 0/7/7 _ 1.10 1 2053 9754 0.0 0.01 0.01 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037881260 HTTP/1.1 0-0 17768 40/6/6 W 0.98 1 0 7637 0.0 0.01 0.01 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037875260 HTTP/1.1 0-0 17768 0/6/6 _ 1.10 3 1696 6700 0.0 0.01 0.01 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037880259 HTTP/1.1 0-0 17768 0/7/7 _ 1.11 1 1996 8040 0.0 0.01 0.01 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037868259 HTTP/1.1 0-0 17768 46/6/6 W 1.00 1 0 6886 0.0 0.01 0.01 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037883259 HTTP/1.1 0-0 17768 0/6/6 _ 1.01 17 1312 6811 0.0 0.01 0.01 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037867259 HTTP/1.1 0-0 17768 0/6/6 _ 1.01 16 1485 6961 0.0 0.01 0.01 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037849259 HTTP/1.1 0-0 17768 0/6/6 _ 1.03 13 1977 8766 0.0 0.01 0.01 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037872259 HTTP/1.1 0-0 17768 0/6/6 _ 1.02 15 1637 7518 0.0 0.01 0.01 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037863259 HTTP/1.1 0-0 17768 0/6/6 _ 1.01 17 1357 5403 0.0 0.05 0.05 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037862259 HTTP/1.1 0-0 17768 0/6/6 _ 1.00 18 1428 5523 0.0 0.01 0.01 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037861258 HTTP/1.1 0-0 17768 0/5/5 _ 1.02 14 2113 7304 0.0 0.01 0.01 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037870259 HTTP/1.1 0-0 17768 0/6/6 _ 1.04 12 1500 8499 0.0 0.01 0.01 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037860259 HTTP/1.1 0-0 17768 0/6/6 _ 1.05 11 1448 7448 0.0 0.01 0.01 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037861258 HTTP/1.1 1-0 17769 0/14/14 _ 1.95 3 1723 14115 0.0 0.02 0.02 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037861258 HTTP/1.1 1-0 17769 0/12/12 _ 1.98 0 1439 14703 0.0 0.02 0.02 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037875259 HTTP/1.1 1-0 17769 0/12/12 _ 1.98 1 1965 14616 0.0 0.02 0.02 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037862259 HTTP/1.1 1-0 17769 47/12/12 W 1.87 1 0 13280 0.0 0.02 0.02 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037883225 HTTP/1.1 1-0 17769 39/12/12 W 1.85 1 0 13251 0.0 0.02 0.02 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037869259 HTTP/1.1 1-0 17769 0/12/12 _ 1.97 1 1992 13588 0.0 0.02 0.02 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037882258 HTTP/1.1 1-0 17769 0/12/12 _ 1.96 3 1808 13801 0.0 0.02 0.02 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037867259 HTTP/1.1 1-0 17769 0/13/13 _ 1.89 7 1608 13709 0.0 0.02 0.02 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037856259 HTTP/1.1 1-0 17769 0/11/11 _ 1.89 7 1627 13057 0.0 0.02 0.02 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037876259 HTTP/1.1 1-0 17769 0/12/12 _ 1.89 7 1592 14045 0.0 0.02 0.02 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037876260 HTTP/1.1 1-0 17769 0/12/12 _ 1.98 1 1996 13151 0.0 0.94 0.94 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037882259 HTTP/1.1 1-0 17769 39/11/11 W 1.87 1 0 12744 0.0 0.04 0.04 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037863259 HTTP/1.1 1-0 17769 47/11/11 W 1.87 0 0 12058 0.0 0.02 0.02 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status HTTP/1.1 1-0 17769 0/13/13 _ 1.91 6 1227 14262 0.0 0.02 0.02 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037870259 HTTP/1.1 1-0 17769 0/12/12 _ 1.91 6 1252 14176 0.0 0.02 0.02 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037878258 HTTP/1.1 1-0 17769 0/9/9 _ 1.89 7 56 11113 0.0 0.02 0.02 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1 1-0 17769 0/11/11 _ 1.93 5 1228 15148 0.0 0.02 0.02 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037879258 HTTP/1.1 1-0 17769 0/12/12 _ 1.93 5 1194 14094 0.0 0.02 0.02 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037872259 HTTP/1.1 1-0 17769 0/10/10 _ 1.91 6 1262 13959 0.0 0.02 0.02 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037864259 HTTP/1.1 1-0 17769 0/13/13 _ 1.93 4 1257 15000 0.0 0.02 0.02 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037865259 HTTP/1.1 1-0 17769 0/12/12 _ 1.94 4 1258 15175 0.0 0.02 0.02 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037866259 HTTP/1.1 1-0 17769 0/12/12 _ 1.94 3 1694 15331 0.0 0.02 0.02 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037873259 HTTP/1.1 1-0 17769 0/12/12 _ 1.91 6 1277 12370 0.0 0.02 0.02 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037871259 HTTP/1.1 1-0 17769 0/12/12 _ 1.96 3 1766 15076 0.0 0.02 0.02 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037874259 HTTP/1.1 1-0 17769 0/12/12 _ 1.96 1 2023 15307 0.0 0.02 0.02 192.168.0.187 http/1.1 127.0.1.1:8000 GET /cgi-bin/config.cgi?getTstate1759037861258 HTTP/1.1
09-29
Scoreboard Key: "_" Waiting for Connection, "S" Starting up, "R" Reading Request, "W" Sending Reply, "K" Keepalive (read), "D" DNS Lookup, "C" Closing connection, "L" Logging, "G" Gracefully finishing, "I" Idle cleanup of worker, "." Open slot with no current process Srv PID Acc M CPU SS Req Dur Conn Child Slot Client Protocol VHost Request 0-0 17768 0/1/1 _ 0.02 181 30 30 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1 0-0 17768 0/1/1 _ 0.03 161 6 6 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1 0-0 17768 0/1/1 _ 0.15 166 14 14 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1 0-0 17768 0/1/1 _ 0.16 146 6 6 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1 0-0 17768 0/1/1 _ 0.04 141 16 16 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1 0-0 17768 0/1/1 _ 0.18 136 19 19 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1 0-0 17768 0/1/1 _ 0.06 131 23 23 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1 0-0 17768 0/1/1 _ 0.18 126 12 12 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1 0-0 17768 0/1/1 _ 0.09 121 20 20 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1 0-0 17768 0/1/1 _ 0.20 46 32 32 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1 0-0 17768 0/1/1 _ 0.10 41 19 19 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1 0-0 17768 0/1/1 _ 0.22 26 16 16 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1 0-0 17768 0/1/1 _ 0.12 21 27 27 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1 0-0 17768 0/1/1 _ 0.14 11 33 33 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1 0-0 17768 0/1/1 _ 0.24 16 33 33 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1 0-0 17768 0/1/1 _ 0.14 186 9 9 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1 1-0 17769 0/2/2 _ 0.13 101 11 23 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1 1-0 17769 0/1/1 _ 0.27 96 35 35 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1 1-0 17769 0/1/1 _ 0.14 91 18 18 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1 1-0 17769 0/1/1 _ 0.03 89 6 6 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1 1-0 17769 0/1/1 _ 0.29 86 30 30 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1 1-0 17769 0/1/1 _ 0.16 81 19 19 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1 1-0 17769 0/1/1 _ 0.06 76 20 20 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1 1-0 17769 0/1/1 _ 0.29 76 12 12 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1 1-0 17769 0/1/1 _ 0.18 71 26 26 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1 1-0 17769 0/1/1 _ 0.06 71 14 14 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1 1-0 17769 0/1/1 _ 0.32 66 22 22 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1 1-0 17769 0/1/1 _ 0.19 61 15 15 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1 1-0 17769 0/1/1 _ 0.08 60 5 5 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1 1-0 17769 0/1/1 _ 0.35 56 33 33 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1 1-0 17769 0/1/1 _ 0.37 36 27 27 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1 1-0 17769 0/1/1 _ 0.21 51 29 29 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1 1-0 17769 0/1/1 _ 0.09 50 19 19 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1 1-0 17769 0/1/1 _ 0.22 31 18 18 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1 1-0 17769 0/1/1 _ 0.11 26 18 18 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1 1-0 17769 0/1/1 _ 0.38 6 7 7 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1 1-0 17769 0/1/1 _ 0.24 1 24 24 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1 1-0 17769 0/1/1 _ 0.12 0 20 20 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1 1-0 17769 1/0/0 W 0.00 0 1899740339 0 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status? HTTP/1.1 1-0 17769 0/1/1 _ 0.25 106 18 18 0.0 0.00 0.00 192.168.0.187 http/1.1 127.0.1.1:8000 GET /server-status?refresh1 HTTP/1.1
最新发布
09-29
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Qingmu2024

您的鼓励是我最大的创作动力!

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值