Skip to content

Commit 0b2041f

Browse files
committed
Broadcom DSA tag: Print the ingress dst port map as a map.
This way ingress and egress tags are easier to relate.
1 parent c207823 commit 0b2041f

File tree

4 files changed

+46
-32
lines changed

4 files changed

+46
-32
lines changed

print-brcmtag.c

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,19 @@ static const struct tok brcm_tag_rc_bm[] = {
8282
{ 0, NULL }
8383
};
8484

85+
static const struct tok brcm_tag_port_bm[] = {
86+
{ (1 << 0), "port 0" },
87+
{ (1 << 1), "port 1" },
88+
{ (1 << 2), "port 2" },
89+
{ (1 << 3), "port 3" },
90+
{ (1 << 4), "port 4" },
91+
{ (1 << 5), "port 5" },
92+
{ (1 << 6), "port 6" },
93+
{ (1 << 7), "port 7" },
94+
{ (1 << 8), "port 8" },
95+
{ 0, NULL }
96+
};
97+
8598
static void
8699
brcm_tag_print(netdissect_options *ndo, const u_char *bp)
87100
{
@@ -102,8 +115,9 @@ brcm_tag_print(netdissect_options *ndo, const u_char *bp)
102115
tok2str(brcm_tag_te_values, "unknown",
103116
(tag[0] & BRCM_IG_TE_MASK)));
104117
ND_PRINT(", TS: %d", tag[1] >> BRCM_IG_TS_SHIFT);
105-
dst_map = (uint16_t)tag[2] << 8 | tag[3];
106-
ND_PRINT(", DST map: 0x%03x", dst_map & BRCM_IG_DSTMAP_MASK);
118+
dst_map = ((uint16_t)tag[2] << 8 | tag[3]) & BRCM_IG_DSTMAP_MASK;
119+
ND_PRINT(", DST map: [%s]",
120+
bittok2str(brcm_tag_port_bm, "none", dst_map));
107121
break;
108122
case BRCM_EGRESS:
109123
ND_PRINT(", CID: %d", tag[1]);

tests/brcm-tag-e.out

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
1 1970-01-01 02:10:20.634030 00:10:18:de:38:1e > ff:ff:ff:ff:ff:ff, BRCM tag OP: IG, TC: 3, TE: None, TS: 0, DST map: 0x080, ethertype IPv4 (0x0800), length 346: 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:10:18:de:38:1e, length 300
2-
2 1970-01-01 02:10:20.696008 00:10:18:de:38:1e > ff:ff:ff:ff:ff:ff, BRCM tag OP: IG, TC: 3, TE: None, TS: 0, DST map: 0x020, ethertype IPv4 (0x0800), length 346: 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:10:18:de:38:1e, length 300
1+
1 1970-01-01 02:10:20.634030 00:10:18:de:38:1e > ff:ff:ff:ff:ff:ff, BRCM tag OP: IG, TC: 3, TE: None, TS: 0, DST map: [port 7], ethertype IPv4 (0x0800), length 346: 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:10:18:de:38:1e, length 300
2+
2 1970-01-01 02:10:20.696008 00:10:18:de:38:1e > ff:ff:ff:ff:ff:ff, BRCM tag OP: IG, TC: 3, TE: None, TS: 0, DST map: [port 5], ethertype IPv4 (0x0800), length 346: 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:10:18:de:38:1e, length 300
33
3 1970-01-01 02:10:23.151503 68:05:ca:18:47:70 > ff:ff:ff:ff:ff:ff, BRCM tag OP: EG, CID: 0, RC: [exception], TC: 0, port: 0, ethertype IPv4 (0x0800), length 102: 192.168.1.1 > 192.168.1.255: ICMP echo request, id 22737, seq 1, length 64
4-
4 1970-01-01 02:10:23.650963 00:10:18:de:38:1e > ff:ff:ff:ff:ff:ff, BRCM tag OP: IG, TC: 3, TE: None, TS: 0, DST map: 0x080, ethertype IPv4 (0x0800), length 346: 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:10:18:de:38:1e, length 300
5-
5 1970-01-01 02:10:23.712960 00:10:18:de:38:1e > ff:ff:ff:ff:ff:ff, BRCM tag OP: IG, TC: 3, TE: None, TS: 0, DST map: 0x020, ethertype IPv4 (0x0800), length 346: 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:10:18:de:38:1e, length 300
4+
4 1970-01-01 02:10:23.650963 00:10:18:de:38:1e > ff:ff:ff:ff:ff:ff, BRCM tag OP: IG, TC: 3, TE: None, TS: 0, DST map: [port 7], ethertype IPv4 (0x0800), length 346: 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:10:18:de:38:1e, length 300
5+
5 1970-01-01 02:10:23.712960 00:10:18:de:38:1e > ff:ff:ff:ff:ff:ff, BRCM tag OP: IG, TC: 3, TE: None, TS: 0, DST map: [port 5], ethertype IPv4 (0x0800), length 346: 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:10:18:de:38:1e, length 300
66
6 1970-01-01 02:10:24.177588 68:05:ca:18:47:70 > ff:ff:ff:ff:ff:ff, BRCM tag OP: EG, CID: 0, RC: [exception], TC: 0, port: 0, ethertype IPv4 (0x0800), length 102: 192.168.1.1 > 192.168.1.255: ICMP echo request, id 22737, seq 2, length 64
77
7 1970-01-01 02:10:25.201640 68:05:ca:18:47:70 > ff:ff:ff:ff:ff:ff, BRCM tag OP: EG, CID: 0, RC: [exception], TC: 0, port: 0, ethertype IPv4 (0x0800), length 102: 192.168.1.1 > 192.168.1.255: ICMP echo request, id 22737, seq 3, length 64
88
8 1970-01-01 02:10:30.015266 68:05:ca:18:47:70 > 00:10:18:de:38:1e, BRCM tag OP: EG, CID: 0, RC: [exception], TC: 0, port: 0, ethertype IPv4 (0x0800), length 102: 192.168.1.1 > 192.168.1.115: ICMP echo request, id 22744, seq 1, length 64
9-
9 1970-01-01 02:10:30.015480 00:10:18:de:38:1e > 68:05:ca:18:47:70, BRCM tag OP: IG, TC: 1, TE: None, TS: 0, DST map: 0x001, ethertype IPv4 (0x0800), length 102: 192.168.1.115 > 192.168.1.1: ICMP echo reply, id 22744, seq 1, length 64
10-
10 1970-01-01 02:10:30.158348 00:10:18:de:38:1e > 68:05:ca:18:47:70, BRCM tag OP: IG, TC: 0, TE: None, TS: 0, DST map: 0x001, ethertype IPv4 (0x0800), length 346: 192.168.1.115.68 > 192.168.1.1.67: BOOTP/DHCP, Request from 00:10:18:de:38:1e, length 300
9+
9 1970-01-01 02:10:30.015480 00:10:18:de:38:1e > 68:05:ca:18:47:70, BRCM tag OP: IG, TC: 1, TE: None, TS: 0, DST map: [port 0], ethertype IPv4 (0x0800), length 102: 192.168.1.115 > 192.168.1.1: ICMP echo reply, id 22744, seq 1, length 64
10+
10 1970-01-01 02:10:30.158348 00:10:18:de:38:1e > 68:05:ca:18:47:70, BRCM tag OP: IG, TC: 0, TE: None, TS: 0, DST map: [port 0], ethertype IPv4 (0x0800), length 346: 192.168.1.115.68 > 192.168.1.1.67: BOOTP/DHCP, Request from 00:10:18:de:38:1e, length 300
1111
11 1970-01-01 02:10:30.170023 68:05:ca:18:47:70 > 00:10:18:de:38:1e, BRCM tag OP: EG, CID: 0, RC: [exception], TC: 0, port: 0, ethertype IPv4 (0x0800), length 346: 192.168.1.1.67 > 192.168.1.115.68: BOOTP/DHCP, Reply, length 300
12-
12 1970-01-01 02:10:33.178632 00:10:18:de:38:1e > 68:05:ca:18:47:74, BRCM tag OP: IG, TC: 3, TE: None, TS: 0, DST map: 0x002, ethertype IPv4 (0x0800), length 346: 192.168.3.23.68 > 192.168.3.1.67: BOOTP/DHCP, Request from 00:10:18:de:38:1e, length 300
12+
12 1970-01-01 02:10:33.178632 00:10:18:de:38:1e > 68:05:ca:18:47:74, BRCM tag OP: IG, TC: 3, TE: None, TS: 0, DST map: [port 1], ethertype IPv4 (0x0800), length 346: 192.168.3.23.68 > 192.168.3.1.67: BOOTP/DHCP, Request from 00:10:18:de:38:1e, length 300
1313
13 1970-01-01 02:10:33.191027 68:05:ca:18:47:74 > 00:10:18:de:38:1e, BRCM tag OP: EG, CID: 0, RC: [exception], TC: 0, port: 1, ethertype IPv4 (0x0800), length 346: 192.168.3.1.67 > 192.168.3.23.68: BOOTP/DHCP, Reply, length 300
14-
14 1970-01-01 02:10:35.080973 00:10:18:de:38:1e > 68:05:ca:18:47:70, BRCM tag OP: IG, TC: 0, TE: None, TS: 0, DST map: 0x001, ethertype ARP (0x0806), length 68: Request who-has 192.168.1.1 tell 192.168.1.115, length 50
14+
14 1970-01-01 02:10:35.080973 00:10:18:de:38:1e > 68:05:ca:18:47:70, BRCM tag OP: IG, TC: 0, TE: None, TS: 0, DST map: [port 0], ethertype ARP (0x0806), length 68: Request who-has 192.168.1.1 tell 192.168.1.115, length 50
1515
15 1970-01-01 02:10:35.081198 68:05:ca:18:47:70 > 00:10:18:de:38:1e, BRCM tag OP: EG, CID: 0, RC: [exception], TC: 0, port: 0, ethertype ARP (0x0806), length 64: Reply 192.168.1.1 is-at 68:05:ca:18:47:70, length 46
1616
16 1970-01-01 02:10:35.249563 68:05:ca:18:47:70 > 00:10:18:de:38:1e, BRCM tag OP: EG, CID: 0, RC: [exception], TC: 0, port: 0, ethertype ARP (0x0806), length 64: Request who-has 192.168.1.115 tell 192.168.1.1, length 46
17-
17 1970-01-01 02:10:35.249634 00:10:18:de:38:1e > 68:05:ca:18:47:70, BRCM tag OP: IG, TC: 0, TE: None, TS: 0, DST map: 0x001, ethertype ARP (0x0806), length 68: Reply 192.168.1.115 is-at 00:10:18:de:38:1e, length 50
17+
17 1970-01-01 02:10:35.249634 00:10:18:de:38:1e > 68:05:ca:18:47:70, BRCM tag OP: IG, TC: 0, TE: None, TS: 0, DST map: [port 0], ethertype ARP (0x0806), length 68: Reply 192.168.1.115 is-at 00:10:18:de:38:1e, length 50
1818
18 1970-01-01 02:10:36.495763 68:05:ca:18:47:74 > 00:10:18:de:38:1e, BRCM tag OP: EG, CID: 0, RC: [exception], TC: 0, port: 1, ethertype IPv4 (0x0800), length 102: 192.168.3.1 > 192.168.3.23: ICMP echo request, id 22748, seq 1, length 64
19-
19 1970-01-01 02:10:36.495906 00:10:18:de:38:1e > 68:05:ca:18:47:74, BRCM tag OP: IG, TC: 1, TE: None, TS: 0, DST map: 0x002, ethertype IPv4 (0x0800), length 102: 192.168.3.23 > 192.168.3.1: ICMP echo reply, id 22748, seq 1, length 64
19+
19 1970-01-01 02:10:36.495906 00:10:18:de:38:1e > 68:05:ca:18:47:74, BRCM tag OP: IG, TC: 1, TE: None, TS: 0, DST map: [port 1], ethertype IPv4 (0x0800), length 102: 192.168.3.23 > 192.168.3.1: ICMP echo reply, id 22748, seq 1, length 64
2020
20 1970-01-01 02:10:37.521654 68:05:ca:18:47:74 > 00:10:18:de:38:1e, BRCM tag OP: EG, CID: 0, RC: [exception], TC: 0, port: 1, ethertype IPv4 (0x0800), length 102: 192.168.3.1 > 192.168.3.23: ICMP echo request, id 22748, seq 2, length 64
21-
21 1970-01-01 02:10:37.521717 00:10:18:de:38:1e > 68:05:ca:18:47:74, BRCM tag OP: IG, TC: 1, TE: None, TS: 0, DST map: 0x002, ethertype IPv4 (0x0800), length 102: 192.168.3.23 > 192.168.3.1: ICMP echo reply, id 22748, seq 2, length 64
21+
21 1970-01-01 02:10:37.521717 00:10:18:de:38:1e > 68:05:ca:18:47:74, BRCM tag OP: IG, TC: 1, TE: None, TS: 0, DST map: [port 1], ethertype IPv4 (0x0800), length 102: 192.168.3.23 > 192.168.3.1: ICMP echo reply, id 22748, seq 2, length 64
2222
22 1970-01-01 02:10:38.321557 68:05:ca:18:47:74 > 00:10:18:de:38:1e, BRCM tag OP: EG, CID: 0, RC: [exception], TC: 0, port: 1, ethertype ARP (0x0806), length 64: Request who-has 192.168.3.23 tell 192.168.3.1, length 46
23-
23 1970-01-01 02:10:38.321602 00:10:18:de:38:1e > 68:05:ca:18:47:74, BRCM tag OP: IG, TC: 0, TE: None, TS: 0, DST map: 0x002, ethertype ARP (0x0806), length 68: Reply 192.168.3.23 is-at 00:10:18:de:38:1e, length 50
23+
23 1970-01-01 02:10:38.321602 00:10:18:de:38:1e > 68:05:ca:18:47:74, BRCM tag OP: IG, TC: 0, TE: None, TS: 0, DST map: [port 1], ethertype ARP (0x0806), length 68: Reply 192.168.3.23 is-at 00:10:18:de:38:1e, length 50

tests/brcm-tag-prepend.out

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
1 1970-03-20 04:48:55.079276 BRCM tag OP: EG, CID: 0, RC: [exception], TC: 0, port: 5, 68:05:ca:18:47:70 > 8a:62:38:14:5d:0b, ethertype IPv4 (0x0800), length 98: 192.168.1.1 > 192.168.1.151: ICMP echo request, id 2129, seq 1, length 64
2-
2 1970-03-20 04:48:55.079338 BRCM tag OP: IG, TC: 0, TE: None, TS: 0, DST map: 0x020, 8a:62:38:14:5d:0b > 68:05:ca:18:47:70, ethertype IPv4 (0x0800), length 98: 192.168.1.151 > 192.168.1.1: ICMP echo reply, id 2129, seq 1, length 64
2+
2 1970-03-20 04:48:55.079338 BRCM tag OP: IG, TC: 0, TE: None, TS: 0, DST map: [port 5], 8a:62:38:14:5d:0b > 68:05:ca:18:47:70, ethertype IPv4 (0x0800), length 98: 192.168.1.151 > 192.168.1.1: ICMP echo reply, id 2129, seq 1, length 64
33
3 1970-03-20 04:48:56.088510 BRCM tag OP: EG, CID: 0, RC: [exception], TC: 0, port: 5, 68:05:ca:18:47:70 > 8a:62:38:14:5d:0b, ethertype IPv4 (0x0800), length 98: 192.168.1.1 > 192.168.1.151: ICMP echo request, id 2129, seq 2, length 64
4-
4 1970-03-20 04:48:56.088532 BRCM tag OP: IG, TC: 0, TE: None, TS: 0, DST map: 0x020, 8a:62:38:14:5d:0b > 68:05:ca:18:47:70, ethertype IPv4 (0x0800), length 98: 192.168.1.151 > 192.168.1.1: ICMP echo reply, id 2129, seq 2, length 64
4+
4 1970-03-20 04:48:56.088532 BRCM tag OP: IG, TC: 0, TE: None, TS: 0, DST map: [port 5], 8a:62:38:14:5d:0b > 68:05:ca:18:47:70, ethertype IPv4 (0x0800), length 98: 192.168.1.151 > 192.168.1.1: ICMP echo reply, id 2129, seq 2, length 64
55
5 1970-03-20 04:48:57.112480 BRCM tag OP: EG, CID: 0, RC: [exception], TC: 0, port: 5, 68:05:ca:18:47:70 > 8a:62:38:14:5d:0b, ethertype IPv4 (0x0800), length 98: 192.168.1.1 > 192.168.1.151: ICMP echo request, id 2129, seq 3, length 64
6-
6 1970-03-20 04:48:57.112498 BRCM tag OP: IG, TC: 0, TE: None, TS: 0, DST map: 0x020, 8a:62:38:14:5d:0b > 68:05:ca:18:47:70, ethertype IPv4 (0x0800), length 98: 192.168.1.151 > 192.168.1.1: ICMP echo reply, id 2129, seq 3, length 64
6+
6 1970-03-20 04:48:57.112498 BRCM tag OP: IG, TC: 0, TE: None, TS: 0, DST map: [port 5], 8a:62:38:14:5d:0b > 68:05:ca:18:47:70, ethertype IPv4 (0x0800), length 98: 192.168.1.151 > 192.168.1.1: ICMP echo reply, id 2129, seq 3, length 64
77
7 1970-03-20 04:48:58.136493 BRCM tag OP: EG, CID: 0, RC: [exception], TC: 0, port: 5, 68:05:ca:18:47:70 > 8a:62:38:14:5d:0b, ethertype IPv4 (0x0800), length 98: 192.168.1.1 > 192.168.1.151: ICMP echo request, id 2129, seq 4, length 64
8-
8 1970-03-20 04:48:58.136510 BRCM tag OP: IG, TC: 0, TE: None, TS: 0, DST map: 0x020, 8a:62:38:14:5d:0b > 68:05:ca:18:47:70, ethertype IPv4 (0x0800), length 98: 192.168.1.151 > 192.168.1.1: ICMP echo reply, id 2129, seq 4, length 64
8+
8 1970-03-20 04:48:58.136510 BRCM tag OP: IG, TC: 0, TE: None, TS: 0, DST map: [port 5], 8a:62:38:14:5d:0b > 68:05:ca:18:47:70, ethertype IPv4 (0x0800), length 98: 192.168.1.151 > 192.168.1.1: ICMP echo reply, id 2129, seq 4, length 64
99
9 1970-03-20 04:49:00.184465 BRCM tag OP: EG, CID: 0, RC: [exception], TC: 0, port: 5, 68:05:ca:18:47:70 > 8a:62:38:14:5d:0b, ethertype ARP (0x0806), length 60: Request who-has 192.168.1.151 tell 192.168.1.1, length 46
10-
10 1970-03-20 04:49:00.184481 BRCM tag OP: IG, TC: 0, TE: None, TS: 0, DST map: 0x020, 8a:62:38:14:5d:0b > 68:05:ca:18:47:70, ethertype ARP (0x0806), length 64: Reply 192.168.1.151 is-at 8a:62:38:14:5d:0b, length 50
11-
11 1970-03-20 04:49:00.383017 BRCM tag OP: IG, TC: 0, TE: None, TS: 0, DST map: 0x020, 8a:62:38:14:5d:0b > 68:05:ca:18:47:70, ethertype ARP (0x0806), length 64: Request who-has 192.168.1.1 tell 192.168.1.151, length 50
10+
10 1970-03-20 04:49:00.184481 BRCM tag OP: IG, TC: 0, TE: None, TS: 0, DST map: [port 5], 8a:62:38:14:5d:0b > 68:05:ca:18:47:70, ethertype ARP (0x0806), length 64: Reply 192.168.1.151 is-at 8a:62:38:14:5d:0b, length 50
11+
11 1970-03-20 04:49:00.383017 BRCM tag OP: IG, TC: 0, TE: None, TS: 0, DST map: [port 5], 8a:62:38:14:5d:0b > 68:05:ca:18:47:70, ethertype ARP (0x0806), length 64: Request who-has 192.168.1.1 tell 192.168.1.151, length 50
1212
12 1970-03-20 04:49:00.383155 BRCM tag OP: EG, CID: 0, RC: [exception], TC: 0, port: 5, 68:05:ca:18:47:70 > 8a:62:38:14:5d:0b, ethertype ARP (0x0806), length 60: Reply 192.168.1.1 is-at 68:05:ca:18:47:70, length 46
1313
13 1970-03-20 04:49:00.607178 BRCM tag OP: EG, CID: 0, RC: [exception], TC: 0, port: 5, 68:05:ca:18:47:70 > ff:ff:ff:ff:ff:ff, ethertype IPv4 (0x0800), length 98: 192.168.1.1 > 192.168.1.255: ICMP echo request, id 2132, seq 1, length 64
1414
14 1970-03-20 04:49:01.624629 BRCM tag OP: EG, CID: 0, RC: [exception], TC: 0, port: 5, 68:05:ca:18:47:70 > ff:ff:ff:ff:ff:ff, ethertype IPv4 (0x0800), length 98: 192.168.1.1 > 192.168.1.255: ICMP echo request, id 2132, seq 2, length 64

tests/brcm-tag.out

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
1 1970-01-01 02:10:20.634030 BRCM tag OP: IG, TC: 3, TE: None, TS: 0, DST map: 0x080, IP 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:10:18:de:38:1e, length 300
2-
2 1970-01-01 02:10:20.696008 BRCM tag OP: IG, TC: 3, TE: None, TS: 0, DST map: 0x020, IP 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:10:18:de:38:1e, length 300
1+
1 1970-01-01 02:10:20.634030 BRCM tag OP: IG, TC: 3, TE: None, TS: 0, DST map: [port 7], IP 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:10:18:de:38:1e, length 300
2+
2 1970-01-01 02:10:20.696008 BRCM tag OP: IG, TC: 3, TE: None, TS: 0, DST map: [port 5], IP 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:10:18:de:38:1e, length 300
33
3 1970-01-01 02:10:23.151503 BRCM tag OP: EG, CID: 0, RC: [exception], TC: 0, port: 0, IP 192.168.1.1 > 192.168.1.255: ICMP echo request, id 22737, seq 1, length 64
4-
4 1970-01-01 02:10:23.650963 BRCM tag OP: IG, TC: 3, TE: None, TS: 0, DST map: 0x080, IP 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:10:18:de:38:1e, length 300
5-
5 1970-01-01 02:10:23.712960 BRCM tag OP: IG, TC: 3, TE: None, TS: 0, DST map: 0x020, IP 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:10:18:de:38:1e, length 300
4+
4 1970-01-01 02:10:23.650963 BRCM tag OP: IG, TC: 3, TE: None, TS: 0, DST map: [port 7], IP 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:10:18:de:38:1e, length 300
5+
5 1970-01-01 02:10:23.712960 BRCM tag OP: IG, TC: 3, TE: None, TS: 0, DST map: [port 5], IP 0.0.0.0.68 > 255.255.255.255.67: BOOTP/DHCP, Request from 00:10:18:de:38:1e, length 300
66
6 1970-01-01 02:10:24.177588 BRCM tag OP: EG, CID: 0, RC: [exception], TC: 0, port: 0, IP 192.168.1.1 > 192.168.1.255: ICMP echo request, id 22737, seq 2, length 64
77
7 1970-01-01 02:10:25.201640 BRCM tag OP: EG, CID: 0, RC: [exception], TC: 0, port: 0, IP 192.168.1.1 > 192.168.1.255: ICMP echo request, id 22737, seq 3, length 64
88
8 1970-01-01 02:10:30.015266 BRCM tag OP: EG, CID: 0, RC: [exception], TC: 0, port: 0, IP 192.168.1.1 > 192.168.1.115: ICMP echo request, id 22744, seq 1, length 64
9-
9 1970-01-01 02:10:30.015480 BRCM tag OP: IG, TC: 1, TE: None, TS: 0, DST map: 0x001, IP 192.168.1.115 > 192.168.1.1: ICMP echo reply, id 22744, seq 1, length 64
10-
10 1970-01-01 02:10:30.158348 BRCM tag OP: IG, TC: 0, TE: None, TS: 0, DST map: 0x001, IP 192.168.1.115.68 > 192.168.1.1.67: BOOTP/DHCP, Request from 00:10:18:de:38:1e, length 300
9+
9 1970-01-01 02:10:30.015480 BRCM tag OP: IG, TC: 1, TE: None, TS: 0, DST map: [port 0], IP 192.168.1.115 > 192.168.1.1: ICMP echo reply, id 22744, seq 1, length 64
10+
10 1970-01-01 02:10:30.158348 BRCM tag OP: IG, TC: 0, TE: None, TS: 0, DST map: [port 0], IP 192.168.1.115.68 > 192.168.1.1.67: BOOTP/DHCP, Request from 00:10:18:de:38:1e, length 300
1111
11 1970-01-01 02:10:30.170023 BRCM tag OP: EG, CID: 0, RC: [exception], TC: 0, port: 0, IP 192.168.1.1.67 > 192.168.1.115.68: BOOTP/DHCP, Reply, length 300
12-
12 1970-01-01 02:10:33.178632 BRCM tag OP: IG, TC: 3, TE: None, TS: 0, DST map: 0x002, IP 192.168.3.23.68 > 192.168.3.1.67: BOOTP/DHCP, Request from 00:10:18:de:38:1e, length 300
12+
12 1970-01-01 02:10:33.178632 BRCM tag OP: IG, TC: 3, TE: None, TS: 0, DST map: [port 1], IP 192.168.3.23.68 > 192.168.3.1.67: BOOTP/DHCP, Request from 00:10:18:de:38:1e, length 300
1313
13 1970-01-01 02:10:33.191027 BRCM tag OP: EG, CID: 0, RC: [exception], TC: 0, port: 1, IP 192.168.3.1.67 > 192.168.3.23.68: BOOTP/DHCP, Reply, length 300
14-
14 1970-01-01 02:10:35.080973 BRCM tag OP: IG, TC: 0, TE: None, TS: 0, DST map: 0x001, ARP, Request who-has 192.168.1.1 tell 192.168.1.115, length 50
14+
14 1970-01-01 02:10:35.080973 BRCM tag OP: IG, TC: 0, TE: None, TS: 0, DST map: [port 0], ARP, Request who-has 192.168.1.1 tell 192.168.1.115, length 50
1515
15 1970-01-01 02:10:35.081198 BRCM tag OP: EG, CID: 0, RC: [exception], TC: 0, port: 0, ARP, Reply 192.168.1.1 is-at 68:05:ca:18:47:70, length 46
1616
16 1970-01-01 02:10:35.249563 BRCM tag OP: EG, CID: 0, RC: [exception], TC: 0, port: 0, ARP, Request who-has 192.168.1.115 tell 192.168.1.1, length 46
17-
17 1970-01-01 02:10:35.249634 BRCM tag OP: IG, TC: 0, TE: None, TS: 0, DST map: 0x001, ARP, Reply 192.168.1.115 is-at 00:10:18:de:38:1e, length 50
17+
17 1970-01-01 02:10:35.249634 BRCM tag OP: IG, TC: 0, TE: None, TS: 0, DST map: [port 0], ARP, Reply 192.168.1.115 is-at 00:10:18:de:38:1e, length 50
1818
18 1970-01-01 02:10:36.495763 BRCM tag OP: EG, CID: 0, RC: [exception], TC: 0, port: 1, IP 192.168.3.1 > 192.168.3.23: ICMP echo request, id 22748, seq 1, length 64
19-
19 1970-01-01 02:10:36.495906 BRCM tag OP: IG, TC: 1, TE: None, TS: 0, DST map: 0x002, IP 192.168.3.23 > 192.168.3.1: ICMP echo reply, id 22748, seq 1, length 64
19+
19 1970-01-01 02:10:36.495906 BRCM tag OP: IG, TC: 1, TE: None, TS: 0, DST map: [port 1], IP 192.168.3.23 > 192.168.3.1: ICMP echo reply, id 22748, seq 1, length 64
2020
20 1970-01-01 02:10:37.521654 BRCM tag OP: EG, CID: 0, RC: [exception], TC: 0, port: 1, IP 192.168.3.1 > 192.168.3.23: ICMP echo request, id 22748, seq 2, length 64
21-
21 1970-01-01 02:10:37.521717 BRCM tag OP: IG, TC: 1, TE: None, TS: 0, DST map: 0x002, IP 192.168.3.23 > 192.168.3.1: ICMP echo reply, id 22748, seq 2, length 64
21+
21 1970-01-01 02:10:37.521717 BRCM tag OP: IG, TC: 1, TE: None, TS: 0, DST map: [port 1], IP 192.168.3.23 > 192.168.3.1: ICMP echo reply, id 22748, seq 2, length 64
2222
22 1970-01-01 02:10:38.321557 BRCM tag OP: EG, CID: 0, RC: [exception], TC: 0, port: 1, ARP, Request who-has 192.168.3.23 tell 192.168.3.1, length 46
23-
23 1970-01-01 02:10:38.321602 BRCM tag OP: IG, TC: 0, TE: None, TS: 0, DST map: 0x002, ARP, Reply 192.168.3.23 is-at 00:10:18:de:38:1e, length 50
23+
23 1970-01-01 02:10:38.321602 BRCM tag OP: IG, TC: 0, TE: None, TS: 0, DST map: [port 1], ARP, Reply 192.168.3.23 is-at 00:10:18:de:38:1e, length 50

0 commit comments

Comments
 (0)