>

Assalamualaikum 👋

As-salamu-alaykum 🕊, I’m an Electrical Engineer with a passion for technology. I enjoy learning new things and sharing those can improve me and others. This place is just for that. Let’s learn. 🔨 🧭

Comparing SS7 to TCP/IP

Intro Signaling System No. 7 (SS7) is a global suite of protocols that defines how network elements in a public switched telephone network (PSTN) exchange information to route calls. Developed in the 1970s, it moved the industry away from “in-band” signaling—where control tones shared the same path as voices—to a much faster “out-of-band” system. By using a dedicated digital channel for signaling, SS7 allows for nearly instantaneous call setup and prevents the legacy “phreaking” fraud that once plagued phone lines. ...

March 28, 2026 · 3 min · 489 words · Farhun

Comparing SS7 to TCP/IP

The Dockerfile: Two Stages Think of this like a kitchen: the first stage is the messy prep area where you chop vegetables (the builder), and the second stage is the clean plate you serve to the customer (the production image). Stage 1: The Builder Dockerfile FROM ubuntu:latest as builder RUN apt-get update && apt-get install -y nginx COPY index.html /var/www/html FROM ubuntu:latest as builder: Starts with a full Ubuntu OS. We name this stage builder so we can reference it later. ...

March 28, 2026 · 1 min · 192 words · Farhun

EMM State of Device in CoreNetwork

Understanding MME States in the EPC: EMM vs. ECM In the LTE Evolved Packet Core (EPC), the Mobility Management Entity (MME) is the brain of the control plane. To manage a device (UE) efficiently, the MME uses two parallel state machines: EPS Mobility Management (EMM) and EPS Connection Management (ECM). Think of it this way: EMM determines if you are “checked in” to the network, while ECM determines if you are “actively talking” to it. ...

February 23, 2026 · 2 min · 348 words · Farhun

Wireshark Port Filter vs Protocol Filter

Wireshark Port Filter vs Protocol Filter When analyzing network traffic using Wireshark, it’s crucial to understand the difference between the filters to effectively isolate and examine relevant data. We will discuss on the basis of port 80 filter and HTTP filter. Because HTTP itself uses the port 80. So, their will be some key difference when using these two filters. Port Filter: For this filter specifically targets traffic on ports. On this case port 80, which is the standard port for HTTP communication. Use this filter when you want to focus solely on TCP connections established on port 80. It captures the entire TCP communication process, including TCP handshakes, acknowledgments, and data transfers. This filter is useful for gaining insights into low-level TCP interactions. Applying filter for port 80 ...

March 29, 2024 · 2 min · 302 words · Farhun

AutoCad Function Key Shortcut

Introduction AutoCAD provides several function key shortcuts (F1 through F12), each of which is associated with a specific command or action. These shortcuts are designed to expedite your workflow and reduce the need to navigate through menus and toolbars constantly. Let’s delve into the most commonly used function key shortcuts and their corresponding functions. Key Combinations F1 - Help F1 is the universal Help key in most software applications, including AutoCAD. Pressing F1 brings up context-sensitive help, allowing you to quickly access information about the tool or command you’re using. It’s a valuable resource for learning and troubleshooting. ...

October 9, 2023 · 3 min · 469 words · Farhun