Skip to content

Releases: dmikushin/namealive

namealive v1.2.0

03 Feb 06:32

Choose a tag to compare

Changelog

Other changes

Installation

Via go install

go install github.com/dmikushin/namealive@latest

Download binary

Download the appropriate binary for your platform from the assets below.

Linux/macOS

# Download and extract (replace VERSION and PLATFORM)
tar xzf namealive_VERSION_PLATFORM.tar.gz
sudo mv namealive /usr/local/bin/
sudo chmod +x /usr/local/bin/namealive

Windows

Download the zip file, extract, and add to your PATH.

Quick Start

# Scan default range
sudo namealive

# Scan specific range
sudo namealive -r 192.168.0.0/24

Full Changelog: v1.1.0...v1.2.0

namealive v1.1.0

19 Jan 22:49

Choose a tag to compare

What's New

Features

  • Automatic network range detection from local network interfaces when -r flag is not specified
  • --interface flag to filter by specific interface names (can be used multiple times)
  • --list-ranges flag to show detected networks without scanning
  • --max-cidr flag to limit network size (default /24 = 256 addresses)
  • --force flag to override CIDR size limits for large networks

Improvements

  • Filter out loopback (127.x.x.x) and link-local (169.254.x.x) addresses automatically
  • Skip inactive network interfaces
  • Remove duplicate IPs when multiple interfaces share the same network
  • Updated documentation with new features and examples

Usage Examples

# Auto-detect and scan all local networks
sudo namealive

# Show detected networks without scanning
namealive --list-ranges

# Scan specific interface only
sudo namealive --interface eth0

namealive v1.0.0

01 Oct 20:24

Choose a tag to compare

Changelog

Other changes

Installation

Via go install

go install github.com/dmikushin/namealive@latest

Download binary

Download the appropriate binary for your platform from the assets below.

Linux/macOS

# Download and extract (replace VERSION and PLATFORM)
tar xzf namealive_VERSION_PLATFORM.tar.gz
sudo mv namealive /usr/local/bin/
sudo chmod +x /usr/local/bin/namealive

Windows

Download the zip file, extract, and add to your PATH.

Quick Start

# Scan default range
sudo namealive

# Scan specific range
sudo namealive -r 192.168.0.0/24

Full Changelog: ...v1.0.0