| Author |
Message |
wuwei

Joined: 15 Sep 2007 Posts: 739 Location: de
|
Posted: Sun 29 Apr 2012, 14:17 Post subject:
External IP address for use in CONKY |
|
I have been battling the issue of showing the external IP address in Conky on and off.
It seems that the problem was solved here
http://www.murga-linux.com/puppy/viewtopic.php?p=483184
But since that post none of the codes mentioned there seem to work anymore.
So I did a little research and experimenting and found this code to work alright in establishing a file with just the external IP in it.
| Code: | my_ipno=$(wget http://cmyip.com -qO - | grep -Ewo '\b([0-9]{1,3}\.){3}[0-9]{1,3}\b' | uniq)
echo $my_ipno >/tmp/iptest |
I found part of it on the forum here, but can't seem to locate the post anymore, where it was mentioned. So credit goes to the unknown author.
More details on the issue can be found in my German thread here
http://murga-linux.com/puppy/viewtopic.php?t=63720
second and third post down the page.
|
|
Back to top
|
|
 |
L18L
Joined: 19 Jun 2010 Posts: 1715 Location: Burghaslach, Germany
|
Posted: Sun 29 Apr 2012, 15:06 Post subject:
External IP address Subject description: I can have IP |
|
Hi wuwei,
what about "official" solution
| Code: | | wget -O - -q icanhazip.com |
| /usr/sbin/ipinfo wrote: | #!/bin/bash
# AUTHOR: Vovchik
# PURPOSE: GUI to show IP config info
# DATE: 14 May 2009
#120201 BK: internationalized.
#120323 replace 'xmessage' with 'yaf-splash'.
export TEXTDOMAIN=ipinfo
export OUTPUT_CHARSET=UTF-8
# --------------
# functions
# --------------
# --------------
get_data()
# --------------
{
nl='
'
# external ip
var0="`wget -O - -q icanhazip.com`" |
|
|
Back to top
|
|
 |
wuwei

Joined: 15 Sep 2007 Posts: 739 Location: de
|
Posted: Tue 01 May 2012, 08:04 Post subject:
|
|
Okay L18L
(schoen dich hier drueben zu sehen)
Your code works, but what is the file for?
I need the number for Conky, not just stand-alone?
|
|
Back to top
|
|
 |
L18L
Joined: 19 Jun 2010 Posts: 1715 Location: Burghaslach, Germany
|
Posted: Tue 01 May 2012, 11:51 Post subject:
External IP address Subject description: 1 known author |
|
| Code: | | echo `wget -O - -q icanhazip.com` > /tmp/iptest | is shorter than | Code: | my_ipno=$(wget http://cmyip.com -qO - | grep -Ewo '\b([0-9]{1,3}\.){3}[0-9]{1,3}\b' | uniq)
echo $my_ipno >/tmp/iptest |
It is not my code, it is vovchik´s
|
|
Back to top
|
|
 |
wuwei

Joined: 15 Sep 2007 Posts: 739 Location: de
|
Posted: Tue 01 May 2012, 14:59 Post subject:
|
|
A point well taken L18L.
I'll store both codes away safely.
These websites for showing one's IP come and go. So its a good idea to have several options.
Thanks for your input.
|
|
Back to top
|
|
 |
|