IP-Info is a C# console application that provides information about IP addresses. It allows users to look up information for a specific IP address or check their own public IP address.
1:1. Install the Microsoft packages:
A)
wget https://packages.microsoft.com/config/debian/12/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
B)
sudo dpkg -i packages-microsoft-prod.deb
C)
rm packages-microsoft-prod.deb
1:2. Installing the .NET SDK:
sudo apt-get install -y dotnet-sdk-8.0
2:1. Clone the repository:
A)
git clone https://github.com/jetblack90/IP-Info.git
B)
cd IP-Info
2:2. Build the project:
dotnet build
3:1. Run the application:
-
To check your own public IP address:
dotnet run -myip
-
To look up information for a specific IP address:
dotnet run [IP_ADDRESS]
3:2. Get help commands:
- To check the help commands:
dotnet run -h or --help
- Ensure that the .NET Core SDK is installed on your system.
- Make sure any external dependencies are properly installed.
- The application should be cross-platform compatible.