CheckPoint log entries are divided by semi-colons and can have … many … fields. How to quickly check the positional number of a particular field in a particular log entry? Here’s a quick AWK one-liner (in AWK the “0” element is the whole line):
$ echo '315918;1Jan2019;0:03:30;fe80::d123:3aaa:fe80:fb73;ff02::1;ipv6-icmp;;accept;;;;10.1.2.26;log;;eth1.123;inbound;VPN-1 & FireWall-1;;f-firewall001;Network;0;;;;;;;;;Implied rule;;;Neighbor Advertisement;136;0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;' | \
awk -v RS=\; '{print NR,$0}'
1 315918
2 1Jan2019
3 0:03:30
4 fe80::d123:3aaa:fe80:fb73
5 ff02::1
6 ipv6-icmp
7
8 accept
9
10
11
12 10.1.2.26
13 log
14
15 eth1.123
16 inbound
17 VPN-1 & FireWall-1
18
19 f-firewall001
20 Network
21 0
22
23
24
25
26
27
28
29
30 Implied rule
31
32
33 Neighbor Advertisement
34 136
35 0
36
37
...
92
A bit longer alternative variant:
awk -F\; '{ for (i=1;i<=NF;i++) {print i,$i}}'
To number the field names (provided the logs are converted to TXT and gzipped):
$ zcat 2019-01-01_025249_2308.log.txt.gz | head -1 | awk -v RS=\; '{ print NR,$0}' 1 num 2 date 3 time 4 src 5 dst 6 proto 7 service 8 action 9 xlatesrc 10 xlatedst 11 peer gateway 12 orig 13 type 14 alert 15 i/f_name 16 i/f_dir 17 product 18 log_sys_message 19 origin_id 20 ProductFamily 21 rule 22 rule_uid 23 rule_name 24 service_id 25 NAT_rulenum 26 NAT_addtnl_rulenum 27 s_port 28 xlatedport 29 xlatesport 30 message_info 31 inzone 32 outzone 33 ICMP 34 ICMP Type 35 ICMP Code 36 TCP packet out of state 37 tcp_flags 38 scheme: 39 methods: 40 encryption failure: 41 partner 42 community 43 fw_subproduct 44 vpn_feature_name 45 srckeyid 46 dstkeyid 47 IKE: 48 CookieI 49 CookieR 50 msgid 51 IKE notification: 52 Certificate DN: 53 IKE IDs: 54 user 55 rule_guid 56 hit 57 policy 58 first_hit_time 59 last_hit_time 60 log_id 61 message 62 ip_id 63 ip_len 64 ip_offset 65 fragments_dropped 66 during_sec 67 fw_message 68 reject_category 69 DCE-RPC Interface UUID 70 Log delay 71 description 72 status 73 version 74 comment 75 update_service 76 Protection Name 77 Severity 78 Confidence Level 79 protection_id 80 SmartDefense Profile 81 Performance Impact 82 Industry Reference 83 Protection Type 84 detected port 85 protocol 86 Attack Info 87 attack 88 FollowUp 89 Log ID 90 spi 91 encryption fail reason: 92 rpc_prog