Tcpdump command examples

Tcpdump is a powerful command-line tool for capturing and analyzing network traffic on Linux. This tool is essential for cybersecurity pros and sysadmins to troubleshoot issues, inspect protocols, and detect suspicious activity

Here are useful tcpdump command examples 😎👆 #technology #software #opensource

Find high-res pdf books with all my #linux and #cybersecurity related infographics at https://study-notes.org

2025/4/18 Edited to

... Read moreHey everyone! As someone who's spent countless hours troubleshooting network woes, I can tell you that tcpdump is an absolute lifesaver. It’s like having x-ray vision for your network traffic. I often find myself using it to quickly diagnose what's happening on a server or my local machine when things go astray. Let me share some of my go-to tcpdump commands, building on the essentials. First off, for basic capturing, you'll often just want to see what's passing by a specific network interface. I usually start with sudo tcpdump -i eth0 (replace eth0 with your actual interface, like enp0s3 or wlan0). This gives you a raw stream, which is useful but can be overwhelming. That’s where filtering comes in handy, and it's a game-changer. If you're looking for issues on a particular machine, tcpdump -i eth0 host 192.168.1.100 will show you all traffic to and from that IP. Need to check if a web server is responding? tcpdump -i eth0 port 80 is your friend – it filters specifically for HTTP traffic. For other services, just swap out the port number; for instance, tcpdump port 22 for SSH. I also frequently filter by protocol. If I suspect an issue with ICMP (like pings not working), tcpdump icmp gives me just that. Similarly, tcpdump tcp or tcpdump udp helps narrow down to TCP or UDP traffic. And for a whole segment of the network? tcpdump net 192.168.1.0/24 is perfect for monitoring a subnet. One of the most practical things I do is saving captures to files. When I need to analyze traffic offline or share it with a colleague, tcpdump -w mycapture.pcap saves everything to a .pcap file. Later, I can open this with Wireshark or even tcpdump -r mycapture.pcap to review it. Don't forget the -r flag to read from the file! Sometimes, you need to see the nitty-gritty details of each packet. Using options like -A (ASCII) or -X (hex and ASCII) with -q (quiet, less verbose) can be incredibly insightful for displaying detailed packet information. For instance, tcpdump -A -s 1500 port 80 can show you the actual HTTP requests/responses, making it easy to spot malformed packets or unexpected data. The -s flag sets the snaplen to capture full packets. For more advanced scenarios, I've found advanced filtering using TCP flags and VLANs to be super powerful. For example, to catch only SYN packets (the start of a TCP handshake), I use tcpdump 'tcp[tcpflags] & tcp-syn != 0'. Or, if I'm working in a virtualized environment, tcpdump vlan 100 helps me focus on traffic from a specific VLAN. These advanced filters let you zero in on very specific network events, which is crucial for deep-dive network analysis and security auditing. Tcpdump might seem intimidating at first, but with these examples, you'll be well on your way to mastering network diagnosis on Linux. It's truly an indispensable tool for any tech enthusiast or professional!

11 comments

Related posts

A black background image titled "Linux scp Command Examples" lists various scp commands with their functions, including copying files/directories, using custom SSH ports, compression, private keys, rate-limiting, and jump servers. It also features a small circular image with "Created by Dan Nanni study-notes.org".
Scp command examples
The scp command lets you securely copy files between hosts over an SSH connection. Some of you might think scp is deprecated but in fact what’s deprecated is the scp protocol, not the command itself. The command now uses a more secure sftp protocol by default Here are some of useful scp com
Dan Nanni

Dan Nanni

5 likes

An infographic titled 'Linux curl Command Examples' provides a comprehensive list of curl commands. It covers HTTP GET operations with options like user-agent and custom headers, HTTP POST/PUT operations for data and file uploads, and various file download operations including resuming and rate-limiting. Created by Dan Nanni.
Linux curl command examples
The curl command is a flexible tool that lets you send or receive data from servers using protocols like HTTP, HTTPS, FTP, and others, all from the command line Here are useful curl command examples 😎👆 #devops #opensource #software #TechTips Find high-res pdf books with all my #lin
Dan Nanni

Dan Nanni

7 likes

Useful sysdig command examples
Sysdig is one of those hidden gem tools that shows exactly what your Linux system is doing in real time — system calls, containers, network traffic, file access — everything, no guessing. Here are useful sysdig command examples 😎👆 Find high-res pdf ebooks with all my cybersecurity related inf
Dan Nanni

Dan Nanni

5 likes

An infographic titled 'Linux netcat Command Examples' lists various `nc` commands for network tasks like port scanning, file transfer, creating shells, and streaming. It includes commands for TCP/UDP, IPv6, and persistent listeners, credited to Dan Nanni.
Useful netcat command examples
Netcat is the Swiss army knife of networking. It lets you read and write data over TCP or UDP, and infosec folks use it all the time for things like quick port scans, grabbing service banners, or setting up reverse shells. Here are useful netstat command examples 😎👆 Find high-res pdf ebooks w
Dan Nanni

Dan Nanni

3 likes

A student's desk with a laptop displaying a probability assignment, a spiral notebook with handwritten notes, and two energy drink cans. The image is titled 'HOW I TAKE NOTES IN COLLEGE'.
A blank page of a spiral notebook with 'Section # here' written in red at the top, illustrating the first step of note-taking.
A spiral notebook page showing 'Section # here' and the second step of note-taking, which involves writing and highlighting terms and their definitions.
How 4.0 Students Take Notes 📝❤️
Steal my notes! 🫧💋🪩 This is the technique I use to take my notes in classes. I just perfected my format and find this to be the most functional. I take these notes in class and it isn’t time consuming or hard! I find this method to work best for me because the terms and examples stick out th
lizzie matthias

lizzie matthias

3094 likes

Useful awk command examples
Awk is a powerhouse text tool — it can scan files or streams, match patterns, and run custom actions on the fly, making it perfect for quick data filtering, parsing, and one-line automation Here are useful awk command examples 😎👇 Find high-res pdf books with all my Linux infographics at https
Dan Nanni

Dan Nanni

4 likes

An infographic titled 'Sysdig Command Examples' defines Sysdig as a Linux tracing tool and lists various commands for monitoring CPU, memory, network, file I/O, and capturing events. It's created by Dan Nanni.
Useful sysdig command examples
The sysdig command is a powerful system-level exploration and troubleshooting tool for Linux. Sysdig can capture and analyze real-time system calls and events, enabling deep visibility into processes, containers, network activity, and file access Here are useful sysdig command examples 😎👆 #te
Dan Nanni

Dan Nanni

27 likes

Keep Viewers Engaged(for FREE)
People shouldn’t only have the option to interact with the stream if they PAY for it. Here is how to reward your viewers for their TIME with FREE interactions! 🫐 PIXELPLUSH.DEV ✨ A website with fun interactive overlays and activities for your chat! ✨ Free and paid options! ✨ My chat is obs
BLU 🫐🏳️‍🌈

BLU 🫐🏳️‍🌈

1824 likes

Linux netcat command examples
The netcat command lets you read from and write to network connections using TCP or UDP. Its flexibility makes it a must-have for infosec professionals, who use it for tasks such as port scanning, banner grabbing, and setting up reverse shells during penetration tests. Here are useful netstat co
Dan Nanni

Dan Nanni

9 likes

An infographic titled 'OpenSSH Command Examples' by Dan Nanni, listing twelve practical OpenSSH commands for secure remote logins, file transfers, and command execution, including custom port connections, key authentication, preventing timeouts, running remote commands, port forwarding, jump servers, copying public keys, custom config files, SOCKS proxies, and connection multiplexing.
OpenSSH command examples
OpenSSH is a versatile suite of client and server tools that use the SSH protocol to provide encrypted and authenticated communication over networks. This toolset is heavily used for secure remote logins, file transfers, and command execution in various cloud and on-premises environments Here ar
Dan Nanni

Dan Nanni

6 likes

Being a GIRL in the MILITARY
No, it’s not that bad. Have I had some bad experiences? Sure. But overall, joining the military has brought so many positives to my life! 🌼QUALITY OF LIFE + PAY🌼 I honestly think I get compensated pretty damn well for having no prior experience + no college degree. I live in a really nice apart
elle

elle

1038 likes

#news #breakingnews #usa #viral #foryoupage
Lemon8er

Lemon8er

3 likes

An infographic titled "Git Command Essentials" categorizes various Git commands. It covers basic operations, configuration, staging and committing changes, viewing changes, managing branches, managing remote repositories, undoing changes, and miscellaneous commands like merge, rebase, and tag. The infographic is created by Dan Nanni from study-notes.org.
Git command examples
Git is crucial for version control, enabling teams to collaborate, track changes, and manage code reliably in software development projects Here are useful git command examples! 😎👇 #coding #programming #softwaredeveloper #github Find high-res pdf books with all my DevOps related inf
Dan Nanni

Dan Nanni

5 likes

A Linux watch command cheatsheet created by Dan Nanni, listing various commands to monitor system metrics in real-time. Examples include tracking CPU/memory usage, disk space, log file growth, network activity, and system errors, with refresh intervals specified.
Linux watch command cheatsheet
Ever wish you could just run a command and keep seeing it update automatically as things change? That is exactly what the watch command does on Linux Here are useful examples of the watch command 😎👆 Find high-res pdf ebooks with all my Linux related infographics at https://study-notes.org
Dan Nanni

Dan Nanni

4 likes

Hebrews 11:1 ❤️
Verse of the Day: Great examples of Faith ❤️🙏🏻 Such a beautiful chapter to read. Personally, one of my favorites ❤️ “Now faith is the substance of things hoped for, the evidence of things not seen.” Hebrews 11:1 #faithoverfear #faithful #faithwalk #biblestudynotes
Veroo❤️✝️

Veroo❤️✝️

36 likes

An infographic titled "Linux strace Command Examples" defines strace as a Linux diagnostic tool. It lists various strace commands for tracing system calls, logging output, attaching to processes, filtering by syscalls, monitoring child processes, displaying timestamps, and generating syscall summaries. It is created by Dan Nanni.
Linux strace command examples
strace is a Linux diagnostic tool that traces system calls and signals made by a process to help debug and analyze its interaction with the kernel Here are useful strace command examples 😎👇 #cybersecurity #infosec #software #technology Find a high-res pdf book with all my #linux re
Dan Nanni

Dan Nanni

4 likes

How to improve your Google Sheets Skills
(From someone who has created over 44 #googlesheets dashboards) 1. Learn by doing - my first ones are more simple compared to my current Dashboards but I need practice in order to design Dashboards that are more complex to meet my own needs 2. Add images and Icons - certain formulas also wor
TheHappyPlanner

TheHappyPlanner

964 likes

A cat wearing pink hair rollers and sunglasses, with text overlay "BE A TECH GIRL" and "Girlies Learn Coding!", promoting coding for girls.
A cat partially visible with text "GIRL POWER" and an explanation of why coding is important for girls, highlighting the gender gap in tech and future job opportunities.
A MacBook Air displaying the Codebay website's landing page, inviting users to "Set sail on your fun, easy coding journey!" with sign-in options, introducing the recommended coding platform.
Why should girls learn to code?
Hey girls, have you ever thought about learning coding like I did? #study #learning #studywithme 👩‍💻Coding is a way to self-expression, creativity, and fostering intellectual confidence. Even if you're not planning to pursue a career in tech, learning to code can help you develop a
Aura✨

Aura✨

363 likes

Linux awk command examples
The awk command is a versatile tool for processing text, enabling users to scan files or streams, match patterns, and perform custom actions on the matched data Here are useful examples of the awk command 😎👇 #sysadmin #opensource #devops Find high-res pdf books with all my #Linux
Dan Nanni

Dan Nanni

6 likes

A notebook with handwritten notes about 'revolution' and a pen, featuring an overlay title 'My personal Study Secrets' in green and yellow text, introducing study tips.
A notebook with handwritten notes, overlaid with a black box detailing the study secret 'Making One Pagers' for fast revisions, including definitions, formulas, and examples.
A notebook with handwritten notes, overlaid with a black box explaining the study secret 'No Highlighting,' advising against it and suggesting writing notes on sticky notes or margins instead.
The Secrets to Studying
In these slides I share a few of my study secrets that help me become a better student! ->Studying is essential as it equips individuals with the knowledge and skills necessary to navigate and succeed in various aspects of life. It fosters critical thinking, problem-solving abilities, and
essynotes

essynotes

1533 likes

An infographic titled 'Linux cp Command Examples' presents a comprehensive list of `cp` command variations and their uses, including copying files, directories, preserving attributes, handling symbolic links, and using `find` and `rsync` for advanced copying tasks. The content is created by Dan Nanni.
Linux cp command examples
Many of you probably learned the cp command early on in Linux, but if you haven’t explored its full set of options and are too lazy to read its man page, you might be missing out on its true power Let’s review some useful examples of the command 😎👆 #softwareengineer #softwaredeveloper #sof
Dan Nanni

Dan Nanni

8 likes

Tips for answering all nursing school questions
Disclaimer: questions in these slides may not accuratwly represent nursing school questions, they are there as examples! #nursingstudent #nclextips #nursingschoolhacks #studytip #nursingschooltips
Nurse Terry

Nurse Terry

6 likes

An infographic titled 'Linux lsof Command Examples' by Dan Nanni, detailing various uses of the lsof command. It categorizes examples for listing open files, network connections and sockets, and other usages like Unix domain sockets and killing user activities.
Linux lsof command examples
My underrated Linux pick is the lsof command. It tells you exactly which files are open and which processes are using them. Because Linux treats everything as a file, this tiny command ends up being insanely powerful and useful in everyday troubleshooting. Here are useful lsof command examples 😎
Dan Nanni

Dan Nanni

2 likes

A white Toyota Chaser JZX100 is shown from an elevated front-side angle, parked on asphalt, with the text "INTRODUCING TOYOTA CHASER" overlaid.
A white Toyota Chaser JZX100 is captured in motion from a front-side perspective on a road, with sunlight glinting off its surface.
A white Toyota Chaser JZX100 is seen in motion from a side view on a road, with sunlight creating a bright background.
This color 🤍
The 1995 Toyota Chaser JZX100 is the ultimate Japanese drift sedan sleeper, featuring a 2.5L 1JZ-GTE twin-turbo inline-6 producing 280 hp. Its rear-wheel drive platform and robust mechanicals made it a favorite for grassroots motorsport. While production numbers were high in Japan, clean example
gearsandpistons

gearsandpistons

7 likes

Physics tips from a physics PhD student
Here are my best tips for physics!! I hear people say all the time how physics is impossible but I think a lot of that is not studying properly. Focusing on examples is key. Of course do the examples done in class of homework’s but then finding similar problems to practice with is key!! Be
Sarah :)

Sarah :)

44 likes

After school = zero energy mode 😭 I was literally too tired to even type… then i found @typelessdotcom and just started talking instead notes, ideas, even my to-do list, done in seconds ✨ It even helped me organize my research, plan everything out, write emails, and translate my notes Honestly
emilie.studygram

emilie.studygram

73 likes

An infographic titled 'Linux Tuned Command Essentials' explains the tuned service for optimizing performance or power. It lists essential `tuned-adm` command examples like `list`, `active`, `recommend`, `profile`, and `off`. A table details various tuning profiles such as balanced, powersave, and throughput-performance, along with their descriptions.
Linux tuned command examples
The tuned command is a system tuning tool available in Linux. It dynamically optimizes performance or power consumption by applying predefined or custom tuning profiles Here are basic tuned command examples and built-in tuned profiles you can readily use 😎👆 #software #computer #software
Dan Nanni

Dan Nanni

9 likes

An infographic titled 'Linux ip Command Examples' provides a quick reference for various `ip` subcommands. It details commands for managing IP addresses (`ip addr`), network interfaces (`ip link`), network routes (`ip route`), ARP neighbors (`ip neigh`), and tunnels (`ip tunnel`), including IPv6 options.
Linux ip command examples
The ip command in Linux is a powerful tool used to configure and manage network interfaces, routing tables, and network policies. It serves as a modern replacement for older commands such as ifconfig and route Here are useful ip command examples 😎👆 #technology #networking #cybersecurity
Dan Nanni

Dan Nanni

3 likes

An infographic titled 'Linux pv Command Examples' presents various `pv` commands for visualizing data transfer progress. Examples include monitoring file copying, merging, compression, decompression, SCP transfers, disk backups, and tarball operations, demonstrating how `pv` shows progress, speed, and ETA during file operations.
Useful pv command examples
pv (Pipe Viewer) is one of those hidden gems on Linux. Just toss it into a pipe (pipes are already super convenient) and you get a live view of progress, speed, and ETA as data flows through 😎👆 Find high-res pdf ebooks with all my Linux related infographics at https://study-notes.org #linux
Dan Nanni

Dan Nanni

2 likes

Canva Seamless Carousel Design Hack!
Canva Tutorial - How To Create A Seamless Carousel Using Canva For Free! #canvahacks #canvatutorial #canvaforbeginners #canvatips #canvaforsmallbusinesses
Inuri

Inuri

68 likes

Linux journalctl command examples
The journalctl command lets you view and manage logs collected by systemd’s centralized logging system across the whole machine Here are useful journalctl command examples 😎👇 #sysadmin #technology #software Find high-res pdf books with all my #Linux related infographics at https://st
Dan Nanni

Dan Nanni

5 likes

An open Bible lies on a surface, with the title 'BIBLE JOURNALING' overlaid in white text. The pages show highlighted verses from Psalms 145, 146, 147, and 148, indicating a focus on scripture study and creative expression.
An open Bible page displays Proverbs 4:5 with highlighted text reading 'She is more precious than rubies: and all things thou canst desire are not to be compared to her.' A drawn orange diamond and pink hearts adorn the page.
An open Bible page shows Psalm 118:26 and Psalm 118 with highlighted text 'The Lord I will not fail' and two pink hearts. The page also features a yellow highlight on 'Praise the Lord, all ye nations'.
BIBLE JOURNALING ✨
Here’s some examples for bible journaling!!! I really gotta get back into this!! #journalbible #biblejournalwithme #biblejournalideas #journalingbible #biblejournalingideas
Jenna 🪩💋🐆

Jenna 🪩💋🐆

24 likes

A silver laptop with an Apple logo on a dark wooden surface, displaying the title 'PART 2 Marketing interview questions you HAVE to know the answer to'. The Lemon8 logo and username are at the bottom left.
A silver laptop with an Apple logo on a dark wooden surface, with a charging cable. The text '1. How do you measure the success of a marketing campaign?' is overlaid. The Lemon8 logo and username are at the bottom left.
An open silver laptop on a dark wooden surface, showing the keyboard and part of the screen. The text '2. Can you give examples of how you've used data to drive marketing decisions?' is overlaid. The Lemon8 logo and username are at the bottom left.
Marketing interview Q’s you MUST know the answer
Q: How do you measure the success of a marketing campaign? Tip: Talk about key performance indicators (KPIs) such as ROI, conversion rates, and engagement metrics. Q: How do you approach creating a marketing strategy for a new product? Tip: Describe your process for research, target audience a
Jane 🦧

Jane 🦧

6 likes

Today we enter Genesis chapter 9 and we learn about the Noahic Covenant that God makes with Noah and all of mankind. The Bible features two types of covenants throughout Scripture. Here we see a Suzeranity Covenant and it's between a greater party and a lesser party. Only the greater party is ex
Megan Crabtree | Bible Study

Megan Crabtree | Bible Study

10 likes

A young woman sitting on a couch, holding a tablet and waving, with the text overlay "HOW TO USE LINKEDIN TO ATTRACT RECRUITERS," introducing the article's topic.
A close-up of a laptop screen displaying the LinkedIn interface, featuring the search bar and a profile picture of a smiling woman, illustrating the platform discussed.
A close-up of a laptop keyboard and screen, showing a document or spreadsheet, with a patterned curtain in the background, representing online work or profile management.
How to find a job WITHOUT APPLYING 📝
I know I said I rarely use LinkedIn to network… but I may just have to get back on it. My friend was reached out to by a LinkedIn recruiter despite not even STARTING to apply for jobs yet. The offer is for 30% above what she was getting at her last company, and it’s for a MANAGER position. Here
Jane 🦧

Jane 🦧

25 likes

Key color coding method
I trained my brain to focus on only one color per review session. One day I only looked at red, next day I review purples. It sticks better this way 📚📚📚 I used to reread the SAME page 5x, now I just follow the colors, my brain knows what to look for. I was drowning in unorganized notes. Everyt
HealthIsWealth

HealthIsWealth

92 likes

Linux lsof command examples
If I had to pick a personal favorite among lesser-known Linux commands, it would be lsof. It’s my go-to tool for discovering which files are open and which processes are using them. Since everything in Linux is treated as a file, lsof proves to be surprisingly powerful and endlessly useful Here
Dan Nanni

Dan Nanni

3 likes

YouTube channels you need from an A+ student
I watch youtube videos all the time when reviewing! I find they help me more than reading my textbooks sometimes when I need a better explanation of WHY things are happening or getting the big picture. The Organic Chemistry Tutor: Soooo many videos and so much more than just chemistry. This cha
Sarah :)

Sarah :)

202 likes

College Resume Tips and Examples 📝💻✍🏼🎓
Creating a college resume is essential for applying to colleges, internships, scholarships, and jobs. A strong resume highlights your achievements,skills, and experiences in a clear and organized manner. Here’s a step-by-step guide on how to write an effective college resume: ✍🏼 Start with a Str
Joy 📚

Joy 📚

475 likes

A hand holds a Starbucks cup next to a laptop displaying the Pinterest home feed, with text overlay "Stop Using Pinterest Use these 3 apps Instead!" and a finger icon pointing to the keyboard.
A hand holds a Starbucks cup next to a laptop showing the Walling app interface, with text overlay "1. Walling Transforms scattered ideas into organized visual masterpieces."
A green mug sits next to a laptop displaying the mymind app interface, with text overlay "2. mymind Ideal for turning fleeting ideas into creative collections."
3 Pinterest Alternatives for beautiful moodboards!
Wave goodbye to the same old and welcome the new wave of productivity with these 3 stellar apps! 🌊📲 ➡Walling - Beyond just organizing ideas, Walling offers a "Daily Desk" feature, allowing you to gather daily thoughts and to-dos in a focused space, streamlining your daily workflow. ➡
Ayesha 🍋

Ayesha 🍋

1891 likes

We have reached Genesis 6 and we are learning about Noah, his family, and the commission that God gives Noah to build the Ark! Let’s talk about the Bible - Genesis 6: 8-17! #bibleversedaily #biblicaltruth #biblestudy #ForHisGlory
Megan Crabtree | Bible Study

Megan Crabtree | Bible Study

19 likes

Back with another Law Student Day in the Life🩷 #lawschool #lawstudent #lawstudentlife #uhlc
Liyahimani

Liyahimani

15 likes

A hand holds apartment keys with a heart keychain, in front of an unfurnished apartment. Text overlays read 'First Apartment Check List home sweet home'.
A checklist titled 'Apartment CHECKLIST' details 20 kitchen essentials, including plates, silverware, cook/bakeware, appliances like air fryer and Keurig, and cleaning supplies.
An apartment checklist outlines dining room essentials like a table and decor, and living room essentials such as a couch, lamps, TV, and various decorative items.
First Apartment Check List
This is my first post here on Lemon8! I’m going to be on here documenting my life upon entering adult hood. I’m going to be moving into my own place sook with my bf and made a check list of things we’ll be needing (and wanting🤭) I took some examples off other lists i’ve seen and added some thing of
liahnoelle

liahnoelle

12.5K likes

Linux nmcli command examples
nmcli is a CLI tool that talks to NetworkManager—lets you create and manage connections, check status, and run basic network diagnostics right from the terminal Here are useful nmcli command examples 😎👆 Find high-res pdf ebooks with all my Linux related infographics at https://study-notes.org
Dan Nanni

Dan Nanni

3 likes

This image displays a table titled 'Deprecated Linux Command Usage' by Dan Nanni. It compares various deprecated Linux commands like ifconfig, netstat, fdisk, route, and arp with their modern, up-to-date alternatives such as ip and ss, providing a description for each command's function.
Deprecated Linux command examples
Just like anything else, even widely used Linux tools can become outdated as better and more efficient options emerge. Once deprecated, these tools typically stop receiving new features or security updates, even if they’re still accessible. While it can be tough to move on from familiar habits,
Dan Nanni

Dan Nanni

8 likes

John 10:1-21 | The Good Shepherd 📖
Bible reading & notes from the last few days 📖 John 10:1-21 | The Good Shepherd 📖 ♥️ Today’s Heart Check: Do I prioritize time in Jesus’ Word and prayer so I can recognize His direction, or am I easily influenced by feelings, people, or distractions? #readingthroughmybible #biblereadi
MAE ♡

MAE ♡

80 likes

Bible Journaling
I thought I would share some of my recent Bible, journaling, pictures, and notes and inserts.. I think I need to get better at my doodling! Haha #journalingbible #doodles #fruitsofthespirit #godisgood #autumncolors🍁
Jamie 🌱

Jamie 🌱

25 likes

A hand holds a brown spiral-bound journal titled "Journal 1:5 Discover Who God Knew," with floral designs. The image has a text overlay that reads "FAITH-FILLED Journal Prompts."
An open journal displays "Journal Prompt #1: What does it mean that God knew you before you were formed?" alongside a black pen. An iPad in the background shows a highlighted Bible passage from Jeremiah 1.
An open journal displays "Journal Prompt #2: When have you felt closest to God?" with a Sharpie pen. An iPad in the background shows a highlighted Bible passage from Deuteronomy 31.
Need Quiet Time Inspiration? Start Here.📓✨
Not sure what to write in your journal? Start here. Whether you’re processing scripture, praying through a hard season, or simply trying to hear God’s voice more clearly, these 4 prompts are designed to help you draw closer to Him. ✝️ These are just examples of how you can use Journal 1:5 – Dis
Jalyn Smith

Jalyn Smith

10 likes

See more