Reply
Thread Tools
Posts: 2 | Thanked: 0 times | Joined on Jul 2007
#1
How do I find my device's IP address so that once I install dropbear, I can SSH in? I've searched all over, and it's killing me. I can't figure it out.
 
Posts: 16 | Thanked: 1 time | Joined on Jul 2007
#2
BUMP... i tried Netstat from windows but couldnt find my N770
I went to myipaddress.com from the N770 and it gave me the same IP address as my PC
 
Posts: 101 | Thanked: 12 times | Joined on Jun 2007 @ Greensboro, NC
#3
Take a look at the little desktop applet "iphome", found at
http://www.mulliner.org/nokia770/
I installed the 0.4-1 version on my N800 and when activated by a checkbox in "select applets", it shows my assigned ip along with some statistics.
 
Posts: 15 | Thanked: 1 time | Joined on Jun 2007
#4
There are serveral ways to get your ip addres.

1.) goto Tools --> Connection Manager.
From the appMenu, select "Internet Connection", then IPAddress

2.) Another App, called "WiFiInfo" is here:
http://www.anderenen.de/anderenende/maemo.html

3.) Another option is the IPHome applet from here:
http://www.mulliner.org/nokia770/

4.) or you can make your own, with this simple python script (requires Python runtime)

-------------[ ipaddr.py ]-------------------------

#!/usr/bin/python
import gtk
import commands

window = gtk.Window(gtk.WINDOW_TOPLEVEL)
window.connect("destroy", gtk.main_quit)
window.set_title("IP Address")


textview = gtk.TextView()
textview.set_editable(False)
textbuffer = textview.get_buffer()
ip = commands.getoutput("/sbin/ifconfig")
textbuffer.set_text(ip)

sw = gtk.ScrolledWindow()
sw.add(textview)
sw.show()
textview.show()

window.add(sw)
window.show()

gtk.main()
 
Posts: 26 | Thanked: 5 times | Joined on Jul 2007
#5
Or the standard *nix way:
From an xterm, type: /sbin/ifconfig

I was going to make some snide remark about the .py method, but I see that it's using /sbin/ifconfig too.
 
tarvoke's Avatar
Posts: 15 | Thanked: 1 time | Joined on Jun 2007 @ cape cood
#6
I also prefer ifconfig
but this system monitor applet is decent
https://garage.maemo.org/frs/downloa...ialog1_1_2.jpg
(does clutter up the top toolbar-dealie a bit tho)
__________________
you can't phone home if you don't have a home phone
 
Reply

Thread Tools

 
Forum Jump


All times are GMT. The time now is 22:07.