Net Tools is a collection of shell functions designed to simplify and streamline various common networking tasks. This toolkit is ideal for system administrators, network engineers, and anyone who frequently works with network configurations and diagnostics in Unix-like environments.
ping_test
: Test the connectivity to a server or IP address.dns_lookup
: Perform a DNS lookup to retrieve IP addresses associated with a hostname.trace_route
: Diagnose the path issues to a given host with trace route.ip_config
: Display the current IP configuration of your system.network_stats
: View network interface statistics.
Source the net_tools script in your shell to access its functions:
source /path/to/net_tools.sh
After sourcing, you can directly call any function with the required arguments:
ping_test example.com
dns_lookup example.com
trace_route example.com
ip_config
network_stats
- Bash shell
- Unix-like operating system (Linux, macOS)
- Standard networking utilities (
ping
,nslookup
,traceroute
,ifconfig
,netstat
)
This project is licensed under the MIT License - see the LICENSE file for details.