Tag

Bridge

0 views collected around this technical thread.

Raymond Ops
Raymond Ops
Dec 20, 2024 · Operations

Master Docker Networking: Types, Drivers, and Practical Commands

This article explains Docker networking fundamentals, covering the main network types (bridge, host, overlay, macvlan, none), their drivers and container modes, how to configure and manage networks with Docker CLI commands, and important security and isolation considerations for containerized applications.

BridgeContainersDocker
0 likes · 19 min read
Master Docker Networking: Types, Drivers, and Practical Commands
Top Architect
Top Architect
Feb 21, 2023 · Cloud Native

Docker Container Networking and Network Modes Explained

This article provides a comprehensive guide to Docker container networking, covering the default networks, the four network modes (bridge, container, host, none), Linux network namespaces, veth pair creation, and practical container operations such as hostname configuration, DNS settings, port mapping, and custom bridge setup.

BridgeContainer NetworkingDocker
0 likes · 27 min read
Docker Container Networking and Network Modes Explained
Architect's Guide
Architect's Guide
Feb 20, 2023 · Cloud Native

Docker Container Networking and Network Modes Explained

This article provides a comprehensive guide to Docker container networking, covering the default networks, the four network modes (bridge, host, none, container), virtual Ethernet pairs, Linux network namespaces, and practical configuration examples such as port mapping and custom bridge creation.

BridgeContainer NetworkingDocker
0 likes · 26 min read
Docker Container Networking and Network Modes Explained
Top Architect
Top Architect
Dec 13, 2022 · Backend Development

Using LuaJ to Call Java Methods from Lua and Vice Versa

This article explains the main features of LuaJ, provides usage examples for calling Java static methods from Lua (including handling signatures and return values), demonstrates how to pass Lua functions to Java, and shows how to embed and execute Lua scripts within Java code.

BackendBridgeJNI
0 likes · 12 min read
Using LuaJ to Call Java Methods from Lua and Vice Versa
Efficient Ops
Efficient Ops
Dec 6, 2022 · Cloud Native

Master Single-Host Container Networking with Linux Namespaces, veth, and Bridges

This article explains how to virtualize network resources on a single Linux host using network namespaces, virtual Ethernet (veth) pairs, bridges, IP routing, NAT, and iptables, enabling containers to communicate with each other, the host, and the external world without writing custom code.

BridgeContainer NetworkingLinux Namespaces
0 likes · 27 min read
Master Single-Host Container Networking with Linux Namespaces, veth, and Bridges
Top Architect
Top Architect
Nov 28, 2022 · Cloud Native

Docker Container Networking: Modes, Configuration, and Practical Commands

This article explains Docker's built‑in container networking, describing the three default networks, the four network modes (bridge, container, host, none), how to inspect and configure them with commands, use veth pairs and network namespaces, and perform common container operations such as port mapping and custom bridge creation.

BridgeDockercontainer
0 likes · 27 min read
Docker Container Networking: Modes, Configuration, and Practical Commands
Efficient Ops
Efficient Ops
Oct 16, 2022 · Operations

How Docker Manages Container Networking: veth Pairs, Bridge, and Custom Networks

This article explains Docker's networking fundamentals, covering Linux veth pairs, the default docker0 bridge, container linking with --link, the creation and use of custom bridge networks, and how to connect containers across isolated networks for reliable service communication.

BridgeDockerVeth
0 likes · 11 min read
How Docker Manages Container Networking: veth Pairs, Bridge, and Custom Networks
Xiaohongshu Tech REDtech
Xiaohongshu Tech REDtech
Sep 8, 2022 · Frontend Development

Technical Overview of Xiaohongshu Mini‑App Runtime Architecture and Engineering

The Xiaohongshu mini‑app runtime uses a dual‑thread container separating a Render UI layer and a Service logic layer, linked by a serialized Bridge, with unified iOS/Android containers, Webpack‑based build outputs, priority‑queued messaging, pre‑loading, and AOP performance monitoring to provide fast, scalable, merchant‑focused mini‑apps.

BridgeMini AppRuntime Architecture
0 likes · 17 min read
Technical Overview of Xiaohongshu Mini‑App Runtime Architecture and Engineering
Efficient Ops
Efficient Ops
Mar 28, 2022 · Cloud Native

Understanding Docker Networking: veth Pairs, Bridge, and Custom Networks

This article explains how Docker isolates containers using Linux veth pairs, the default docker0 bridge, the deprecated --link method, and how to create and use custom bridge networks for reliable service‑name communication and cross‑network connectivity.

BridgeDockerVeth
0 likes · 11 min read
Understanding Docker Networking: veth Pairs, Bridge, and Custom Networks
Tencent Cloud Developer
Tencent Cloud Developer
Mar 21, 2022 · Game Development

Implementing a Lua Bridge with C++ Reflection – Lura Library Overview

The article shows how the Lura library uses C++ reflection to build a concise Lua bridge that automatically registers functions, properties, and object lifecycles via userdata and meta‑tables, simplifying bridge code compared to traditional libraries while supporting coroutines and profiling.

BridgeC++CodeGeneration
0 likes · 23 min read
Implementing a Lua Bridge with C++ Reflection – Lura Library Overview
Efficient Ops
Efficient Ops
Feb 27, 2022 · Cloud Native

Master Single-Host Container Networking with Linux Namespaces, veth, and Bridges

Learn how to virtualize network resources on a single Linux host using network namespaces, virtual Ethernet devices, bridges, and NAT, enabling isolated containers to communicate with each other, the host, and the external internet without complex code, while covering setup, routing, and port publishing.

BridgeContainer NetworkingLinux Namespaces
0 likes · 28 min read
Master Single-Host Container Networking with Linux Namespaces, veth, and Bridges
Cloud Native Technology Community
Cloud Native Technology Community
Jan 20, 2022 · Cloud Native

Understanding Single‑Host Container Networking with Linux Namespaces, veth, Bridges and iptables

This tutorial explains how to isolate, virtualize and connect container network stacks on a single Linux host using network namespaces, virtual Ethernet pairs, a Linux bridge, routing, NAT and iptables rules, and shows how to expose container services to the external world.

BridgeContainer NetworkingLinux Namespaces
0 likes · 28 min read
Understanding Single‑Host Container Networking with Linux Namespaces, veth, Bridges and iptables
58 Tech
58 Tech
Oct 26, 2021 · Mobile Development

Swift and Objective‑C Interoperability: Moduleization and Mixed‑Language Integration Practices at 58.com

This article details 58.com’s Swift migration initiative, describing the background of Swift adoption, the objectives of the mixed‑language project, the practical steps for SDK module‑ization, bridging techniques, nullability annotations, macro handling, +load replacements, and future plans for improving Objective‑C to Swift integration.

BridgeModuleObjective-C
0 likes · 29 min read
Swift and Objective‑C Interoperability: Moduleization and Mixed‑Language Integration Practices at 58.com
Refining Core Development Skills
Refining Core Development Skills
Oct 14, 2021 · Cloud Native

Understanding Linux Bridge and veth for Docker Networking

This article explains how Linux bridge and virtual Ethernet (veth) devices work together to enable communication between Docker containers, covering the creation of network namespaces, veth pairs, bridge setup, kernel implementation details, and packet forwarding processes.

BridgeDockerLinux
0 likes · 15 min read
Understanding Linux Bridge and veth for Docker Networking
Efficient Ops
Efficient Ops
Sep 7, 2021 · Cloud Native

How Does Kubernetes Networking Really Work? A Visual Deep Dive

This article explains the core principles of Kubernetes networking, covering pod IP allocation, intra‑node communication via veth pairs and bridges, and inter‑node packet routing using CIDR blocks and cloud provider routes, all illustrated with diagrams.

BridgeCNIKubernetes
0 likes · 8 min read
How Does Kubernetes Networking Really Work? A Visual Deep Dive
ByteFE
ByteFE
Jul 27, 2021 · Mobile Development

Bridge Communication Between Native and Webview in Hybrid Development: Methods, Implementation, and Event Handling

This article explains from a frontend perspective how JavaScript and native code communicate in hybrid apps, covering injection and interception bridge methods, their implementation details, SDK initialization, message flow, and native event listening with code examples and compatibility considerations.

BridgeHybridJavaScript
0 likes · 15 min read
Bridge Communication Between Native and Webview in Hybrid Development: Methods, Implementation, and Event Handling
Efficient Ops
Efficient Ops
Jul 4, 2021 · Cloud Native

Master Single-Host Container Networking with Namespaces, veth, Bridges & NAT

This guide walks through building isolated single‑host container networks on Linux using network namespaces, virtual Ethernet pairs, bridges, routing and NAT, showing step‑by‑step commands to create, connect, and expose containers, troubleshoot connectivity, and understand Docker’s networking models.

BridgeContainer NetworkingDocker
0 likes · 29 min read
Master Single-Host Container Networking with Namespaces, veth, Bridges & NAT
ByteDance ADFE Team
ByteDance ADFE Team
Jun 30, 2021 · Mobile Development

Understanding JSBridge: Implementation and Communication Between WebView and Native

This article explains what JSBridge is, details its implementation using URL interception and iframe tricks, and walks through the full communication flow between a WebView and native code on iOS, including code examples for registration, message handling, and callbacks.

BridgeJSBridgeJavaScript
0 likes · 12 min read
Understanding JSBridge: Implementation and Communication Between WebView and Native
ByteFE
ByteFE
Jun 17, 2021 · Mobile Development

Understanding JSBridge: Implementation and Communication Between WebView and Native

This article explains what JSBridge is, details its implementation using URL interception and iframe tricks, and walks through the registration, message handling, and call flow between WebView and native code on iOS, providing full code examples and a step‑by‑step process overview.

BridgeJSBridgeNative Communication
0 likes · 11 min read
Understanding JSBridge: Implementation and Communication Between WebView and Native