I'm developing an application in RealBASIC, but I need the list of interface names to populate a dropdown box.

Parsing ifconfig didn't work (Got eth0, eth1, lo, etc...) I need the name that is displayed in system preferences (Ethernet, Airport, etc...)

Is this possible in RealBASIC or is there a terminal command I can parse?

Thanks, Justin

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

networksetup -listallnetworkservices will give you just the names (with an asterisk before disabled ports, in case you want to leave them out). networksetup -listnetworkserviceorder gives some additional info, like what /dev entry (en0, etc) they correspond to. Check the man page for networksetup for even lots more options...

link|improve this answer
Thanks, I appreciate it :) – Justin Oct 19 '10 at 23:12
feedback

First off I'd ask on a place like the REAL Software forums or one the "NUG" mailing list http://www.realsoftware.com/support/listmanager/ as there's tons more folks that are likely to answer there than there are here.

you might try parsing the output from system_profiler -xml SPNetworkDataType

link|improve this answer
Thanks, I'll take a look at the forums. – Justin Oct 16 '10 at 18:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.