Compare commits

...

3 Commits

Author SHA1 Message Date
5cbbad8b8b - Update SPEC file. 2025-09-09 18:57:39 +02:00
e1fa9f09e9 - Add internal IP reporting to myip command,
- Add internal IP service CGI script.
2025-09-09 18:52:46 +02:00
15b28c8f43 - Filter output to remove errors and only keep IP 2025-09-09 17:50:31 +02:00
5 changed files with 81 additions and 3 deletions

View File

@ -2,7 +2,8 @@ Welcome to Rx3 MyIP!
This is a small tool to return the public IP address.
This is a small tool to return the extern public IP address and optionnally the internal private IP,
The internal IP service is also included.

View File

@ -1,3 +1,20 @@
------------------------------------------------------------------------------------------------------------------------------------
MyIP V 1.1.0 - A. GIBERT - 2025/09/09
------------------------------------------------------------------------------------------------------------------------------------
- Add internal IP reporting to myip command,
- Add internal IP service CGI script.
------------------------------------------------------------------------------------------------------------------------------------
MyIP V 1.0.1 - A. GIBERT - 2025/07/26
------------------------------------------------------------------------------------------------------------------------------------
- Filter output to remove errors and only keep IP
------------------------------------------------------------------------------------------------------------------------------------
MyIP V 1.0.0 - A. GIBERT - 2025/04/25
------------------------------------------------------------------------------------------------------------------------------------

View File

@ -1,5 +1,5 @@
%define name myip
%define version 1.0.0
%define version 1.1.0
%define release %mkrel 1rx3
%global debug_package %{nil}
@ -50,5 +50,11 @@ install -D -pm 755 %{name} $RPM_BUILD_ROOT%{_bindir}/%{name}
%changelog
* Tue Sep 9 2025 Arnaud G. GIBERT <arnaud@rx3.net> - 1.1.0-1rx3.mga9
- Update to 1.1.0
* Sat Jul 26 2025 Arnaud G. GIBERT <arnaud@rx3.net> - 1.0.1-1rx3.mga9
- Filter output to remove errors and only keep IP
* Sun Apr 6 2025 Arnaud G. GIBERT <arnaud@rx3.net> - 1.0.0-1rx3.mga9
- Create initial SPEC file for 1.0.0 on Mageia 9

View File

@ -1,3 +1,52 @@
#!/bin/bash
dig +short myip.opendns.com @resolver1.opendns.com
if [[ "$1" == "-h" ]]
then
echo "myip [-i] | [-a] | [-h]"
echo "default: external IP"
echo " -i: internal IP"
echo " -a: internal + external IP"
else
if [[ "$1" == "-a" ]]
then
INT_FLAG="TRUE"
EXT_FLAG="TRUE"
VERBOSE_FLAG="TRUE"
else
VERBOSE_FLAG="FALSE"
if [[ "$1" == "-i" ]]
then
INT_FLAG="TRUE"
EXT_FLAG="FALSE"
else
INT_FLAG="FALSE"
EXT_FLAG="TRUE"
fi
fi
fi
if [[ ${VERBOSE_FLAG} == "TRUE" ]]
then
INT_LABEL="internal_ip: "
EXT_LABEL="external_ip: "
else
INT_LABEL=""
EXT_LABEL=""
fi
if [[ ${INT_FLAG} == "TRUE" ]]
then
INT_IP="$( curl -s http://www.rx3/cgi-bin/myip.cgi | grep -E '^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+$')"
echo "${INT_LABEL}${INT_IP}"
fi
if [[ ${EXT_FLAG} == "TRUE" ]]
then
EXT_IP="$( dig +short myip.opendns.com @resolver1.opendns.com | grep -E '^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+$')"
echo "${EXT_LABEL}${EXT_IP}"
fi

5
var/www/cgi-bin/myip.cgi Executable file
View File

@ -0,0 +1,5 @@
#!/bin/sh
echo "Content-type: text/plain"
echo ""
echo "$REMOTE_ADDR"