> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tsukineos.top/llms.txt
> Use this file to discover all available pages before exploring further.

# Networking Tools: net, ping, and iwr

> Use net to scan and connect to Wi-Fi, ping to test connectivity, and iwr to download files.

# Networking Tools

TsukineOS includes the custom network tool `net`, the ICMP test tool `ping`, and the HTTP download tool `iwr`. Each tool has an equivalent alias with the `tsukine_` prefix. The functionality is identical, so use whichever fits your scripts or habits.

## net: Wi-Fi Management

`net` is the entry point for the TsukineOS network configuration daemon. Use it from the command line to scan for and connect to wireless networks.

| Command              | Description                               |
| -------------------- | ----------------------------------------- |
| `net scan`           | Scan for available Wi-Fi SSIDs            |
| `net connect <ssid>` | Connect to the specified wireless network |

```bash theme={null}
net scan
net connect MyHomeNetwork
```

`tsukine_net` is an equivalent alias with identical behavior.

<Note>
  Wired networks (Ethernet) are usually detected and connected automatically at boot, with no manual configuration needed.
</Note>

## ping: Connectivity Test

`ping` is TsukineOS's ICMP connectivity test tool. Use it to verify whether a host is reachable, whether on the public internet or a local network.

```bash theme={null}
ping tsukineos.top          # Test internet connectivity
ping 192.168.1.1            # Test local network
```

`tsukine_ping` is an equivalent alias.

<Tip>
  After connecting to Wi-Fi, run `ping tsukineos.top` before installing packages to confirm connectivity and avoid package index fetch failures.
</Tip>

## iwr: HTTP Download

`iwr` is TsukineOS's built-in HTTP download tool. Point it at a URL to download the file to the current directory.

```bash theme={null}
iwr https://example.com/file.tar.gz    # Download a file
```

`tsukine_iwr` is an equivalent alias.

<Note>
  This page was translated by AI and may contain inaccuracies. The Simplified Chinese version is authoritative.
</Note>

***

© 2024-2026 TsutokiTeo/JunweiZhang. All rights reserved.
