SShortSingh.
Back to feed

Azure Tutorial: Securing a Dedicated SFTP Subnet with Network Security Groups

0
·1 views

A hands-on Azure walkthrough demonstrates how to add structured network security to an existing virtual network built in a prior exercise. The guide covers creating a dedicated subnet called ftpSubnet within the guided-project-vnet, intended solely for SFTP traffic. A network security group named ftpNSG is then configured with an inbound rule permitting only TCP traffic on port 22, the standard port used by SFTP. The NSG is subsequently linked to ftpSubnet, enforcing those access restrictions at the subnet level. Together, these steps ensure the subnet accepts only its intended traffic, closing off unauthorized access to the network segment.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

Company Laid Off Its Entire AI Coding Team Mid-Project, Leaving Platform Unmaintained

A software company built a platform entirely through an AI-only development unit called the 'Super Individual Department,' with no product manager or requirements document guiding the process. A PM was only hired after the platform already existed, tasked with writing requirements retroactively, while QA began testing a product built without standard processes. Despite chaotic testing conditions, the AI-focused team resolved bugs quickly and kept the project moving. The entire Super Individual Department was abruptly laid off this week, leaving open bug tickets unresolved and no engineering team behind the platform. The incident has prompted reflection on how AI-driven workflows can obscure critical dependencies on the human teams managing them.

0
ProgrammingDEV Community ·

How to Start Learning Web Accessibility in 2026: Key Resources and Context

The European Accessibility Act, which took effect in June 2025, has renewed attention on web accessibility across EU member states, covering sectors from e-commerce to banking and transport. Despite the legislation, widespread adoption of accessibility as a code quality standard remains limited, though awareness among frontend developers and UX designers is growing. The rise of AI coding assistants since 2022 adds complexity, as these tools often generate code based on existing inaccessible patterns and cannot be relied upon without human verification. WCAG 2.2, published in 2023, remains the current recommended accessibility standard, while WCAG 3.0 is still under development with no near-term release expected. For those new to the topic, practical tools like Chrome DevTools' Lighthouse audit offer a hands-on entry point to identifying and understanding accessibility issues.

0
ProgrammingDEV Community ·

Engineer Spent 3 Months Fixing Rankings When the Real RAG Problem Was Document Selection

A software engineer spent three months repeatedly swapping out ranking algorithms — including BM25, hybrid retrieval, and cross-encoder rerankers — in an attempt to improve a retrieval-augmented generation (RAG) system. Despite each change reshuffling search results, the correct architecture document never appeared in the top results because it was never entering the candidate set to begin with. The engineer eventually realized that ranking can only reorder documents already selected, meaning no algorithm could surface a document excluded at the selection stage. This led to a reframing of retrieval as three distinct layers: selection, assembly, and ranking — with selection being the most consequential yet most neglected. The engineer now argues that optimizing ranking while ignoring upstream selection is a fundamental misdiagnosis of retrieval quality problems.

0
ProgrammingDEV Community ·

A Technical Guide to File Compression: PDF, Image, Video and Documents Explained

File compression is a common need in everyday digital work, addressing problems like oversized email attachments, large PDFs, and storage-hungry media files. Compression broadly falls into two categories: lossless, which preserves every bit of original data using algorithms like DEFLATE and LZMA, and lossy, which discards information less perceptible to human senses to achieve smaller sizes. Lossless compression suits text, code, and spreadsheets where data integrity is critical, while lossy compression is better suited for images, audio, and video where minor quality loss is acceptable. Techniques such as DCT and inter-frame prediction power lossy formats like JPEG and H.264, whereas ZIP, PNG, and FLAC rely on lossless methods. Most document formats like PDF and Word use both approaches simultaneously, applying lossless compression to text and lossy compression to embedded media.

Azure Tutorial: Securing a Dedicated SFTP Subnet with Network Security Groups · ShortSingh