[Newbies] How you could get your public IP from Squeak

Edgar J. De Cleene edgardec2001 at yahoo.com.ar
Mon Jun 25 10:36:28 UTC 2007


My router is NOGA KN-S1060

| stream wanIp |
    stream := HTTPSocket
                httpGet: 'http://192.168.1.1/sys_status.htm'
                args: nil
                user: 'admin'
                passwd: 'admin'.
    stream upToAll: 'wanIP'.
    wanIp := stream upTo: $;.
    ^ wanIp := (wanIp findTokens: '"') at: 2

And I have a Mac , a Windows PC and a Linux box on my small LAN

Perhaps this could be useful to some

Edgar




More information about the Beginners mailing list