[REBOL] Re: Ip adress
From: vdemongodin::free::fr at: 8-Jan-2003 19:39
Hello, If you have a local network you can do this: adresses: get-modes tcp:// 'interfaces foreach interface adresses [ if (interface/addr <> 127.0.0.1) and (interface/addr <> 172.16.10.1) [ ISP-IP: interface/addr ] ] Where 172.16.10.1 is the local network card ip address. Vincent.