How can I view connected devices and their IP addresses?

I have a TimeCapsule and I want to see a list of connected devices to my network.  I used to be able to do this with the older version 5.x of the Airport Utility, but can't seem to with the new version 6.
Specifically, I don't want to just see wireless clients that are connected. I want to be able to see a list of the devices that are connected to the network via an Ethernet cable as well.

You will need to install v5 utility a tool.. not use v6.. a toy.
You can install v5 into lion.
http://support.apple.com/kb/DL1482
For Mountain Lion you can actually use same version above but the installer is not compatible. There are several posts with info about how to do it. It is easy .. download and use unpkg. Drag the pkg of the file you download onto the unpkg and it will create the v5 utility in your desktop.. just drag the 5.6 utility to your utility folder.

Similar Messages

  • How can I list all users and their DEFAULT tablespace?

    How can I list all users and their DEFAULT tablespace?
    Peter

    Peter, the following short article that lists the most heavily used Oracle rdbms dictionay views might be of interest based on your question:
    How do I find information about a database object: table, index, constraint, view, etc… in Oracle ? http://www.jlcomp.demon.co.uk/faq/object_info.html
    HTH -- Mark D Powell --

  • My safari won't let me view a pdf link, nor can I save it as a document. How can I view these pdfs and links?

    My safari won't let me view a pdf link, nor can I save it as a document. How can I view these pdfs and links?

    Have you installed Adobe Reader and its associated plugin? AFAIK, that's the preferred if not the only way to open PDFs in an embedded view within Safari.
    http://get.adobe.com/reader/

  • HT1386 I copied my my iTunes music from an old computer to a Macbook Pro, but it did not copy the playlists on my nano. How can I transfer the playlists and their content from the nano to the Macbook

    I copied my iTunes music from an old computer to a new Macbook pro but it did not copy the playlists that are on my Nano. How can I copy the playlists and their content on the nano to the Macbook? If I automatically sync the nano from the Macbook, will it scrub the content and existing playlists on the nano?

    You need a third-party program like one of those discussed here:
    https://discussions.apple.com/message/2901170#2901170

  • How can I view submitted responses in their entirety?

    How can I view submitted responses to FormsCentral in their entirety?  The forms were created in Word, made fillable in Acrobat XI, and made submittable in  FormsCentral Plus via our company's website.  I'd like to receive the completed form in its original format rather than sorted by question.  Is this possible?

    For imported PDF files, you currently can not save a response into the original PDF. We will be adding this capability at the end of January (in a few weeks).
    Sorry to have to make you wait.
    Randy

  • How can i compare two databases and their tables

    i have a text.txt file then
    i will insert it into db_header and db_details
    db_header has tbl_pcountheader with fld_Rack_No(char) PK and fld_DateAdded(date) PK
    db_details has tbl_pcountdetails with fld_Rack_No(char) PK, fld_Barcode(char) PK and fld_Quantity(int)
    then i will lookup in db_products
    db_products has tbl_products and tbl_barcodes
    tbl_products has fld_ItemCode
    tbl_barcodes has fld_Barcode and fld_ItemCode
    now i want to make a prompt contains
    Rack No: Date:
    Counter No:
    Barcode | Item Code | Item Description | Quantity
    how can i fill up this by comparing db_details and db_products?
    Private Sub bt_upload_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles bt_upload.Click
    If saveCheckBox.Checked = False Then
    MsgBox("Please click the box to continue.")
    Return
    End If
    If lb_file.SelectedItem Is Nothing Then
    MessageBox.Show("Please select a file.")
    Exit Sub
    End If
    ' Obtain the file path from the list box selection.
    Dim filePath = lb_file.SelectedItem.ToString
    ' Verify that the file was not removed since the Browse button was clicked.
    If System.IO.File.Exists(filePath) = False Then
    MessageBox.Show("File Not Found: " & filePath)
    Exit Sub
    End If
    ' Obtain file information in a string.
    Dim fileInfoText As String = GetTextForOutput(filePath)
    'LookUP db_header, db_details and db_products
    Dim cs As String = "Database=;Data Source=localhost;" _
    & "User Id=root;Password=1234"
    Dim conn As New MySqlConnection(cs)
    Dim ds As New DataSet
    Dim da As New MySqlDataAdapter
    Dim cmd As New MySqlCommand
    Dim dt As New DataTable
    Dim stm As String = "SELECT tbl_pcountheader.fld_Rack_No, tbl_pcountheader.fld_DateAdded, tbl_pcountdetails.fld_Barcode, tbl_products.fld_ItemCode, tbl_products.fld_ItemDesc, tbl_pcountdetails.fld_Quantity FROM db_header.tbl_pcountheader INNER JOIN db_details.tbl_pcountdetails ON db_details.tbl_pcountdetails.fld_Rack_No = db_header.tbl_pcountheader.fld_Rack_No INNER JOIN db_products.tbl_barcodes ON db_details.tbl_pcountdetails.fld_Barcode = db_products.tbl_barcodes.fld_Barcode INNER JOIN db_products.tbl_products ON db_products.tbl_barcodes.fld_ItemCode_fk = db_products.tbl_products.fld_ItemCode GROUP BY tbl_pcountheader.fld_Rack_No, tbl_pcountheader.fld_DateAdded ORDER BY tbl_pcountheader.fld_Rack_No"
    ds = New DataSet
    Try
    conn.Open()
    da = New MySqlDataAdapter(stm, conn)
    da.Fill(ds, "tbl_pcountheader")
    DataGridView1.DataSource = ds.Tables("tbl_pcountheader")
    Dim headers = (From header As DataGridViewColumn In DataGridView1.Columns.Cast(Of DataGridViewColumn)() _
    Select header.HeaderText).ToArray
    Dim rows = From row As DataGridViewRow In DataGridView1.Rows.Cast(Of DataGridViewRow)() _
    Where Not row.IsNewRow _
    Select Array.ConvertAll(row.Cells.Cast(Of DataGridViewCell).ToArray, Function(c) If(c.Value IsNot Nothing, c.Value.ToString, ""))
    Using sw As New IO.StreamWriter("c:\report.txt", append:=True)
    sw.WriteLine(String.Join(",", headers))
    For Each r In rows
    sw.WriteLine(String.Join(",", r))
    Next
    End Using
    ds.WriteXmlSchema("Sample.xml")
    Dim cr As New CrystalReport1()
    cr.SetDataSource(ds)
    CrystalReportviewer1.ReportSource = cr
    CrystalReportviewer1.Refresh()
    Catch ex As MySqlException
    MsgBox("Error: " & ex.ToString())
    Finally
    conn.Close()
    End Try
    ' Show the file information.
    Dim PrintPrompt As String
    PrintPrompt = MsgBox(fileInfoText, MsgBoxStyle.YesNo, "ProofList")
    If PrintPrompt = vbYes Then
    'fileInfoText.print()
    If saveCheckBox.Checked = True Then
    ' Place the log file in the same folder as the examined file.
    Dim bakFolder As String = System.IO.Path.GetDirectoryName(filePath)
    Dim bakFilePath = System.IO.Path.Combine(bakFolder, "back-up.bak")
    Dim bakText As String = "Backed-Up: " & Date.Now.ToString & vbCrLf & fileInfoText & vbCrLf & vbCrLf
    ' Append text to the log file.
    'System.IO.File.AppendAllText(bakFilePath, bakText)
    My.Computer.FileSystem.WriteAllText(bakFilePath, bakText, append:=True)
    'My.Computer.Network.UploadFile(bakFilePath, "C:\Documents and Settings\SAPC-TECH\My Documents\back-up file.bak", "", "", False, 1000)
    'My.Computer.FileSystem.DeleteFile(bakFilePath)
    'Form2.Show()
    End If
    'Note: This message box shows that you've uploaded a file and back up it.
    MessageBox.Show("Already backed-up to ")
    Else
    'Me.Close()
    'Application.Exit()
    'End
    End If
    'Me.DialogResult = System.Windows.Forms.DialogResult.Cancel
    'Form2.Close()
    'Me.Close()
    End Sub
    here's my final code that solves my problem.
    i just make the environment of vb into mysql console
    so that i can call all the database that i wanted.

    Private Sub bt_upload_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles bt_upload.Click
    If saveCheckBox.Checked = False Then
    MsgBox("Please click the box to continue.")
    Return
    End If
    If lb_file.SelectedItem Is Nothing Then
    MessageBox.Show("Please select a file.")
    Exit Sub
    End If
    ' Obtain the file path from the list box selection.
    Dim filePath = lb_file.SelectedItem.ToString
    ' Verify that the file was not removed since the Browse button was clicked.
    If System.IO.File.Exists(filePath) = False Then
    MessageBox.Show("File Not Found: " & filePath)
    Exit Sub
    End If
    ' Obtain file information in a string.
    Dim fileInfoText As String = GetTextForOutput(filePath)
    'LookUP comparison db_details to db_products
    'Dim connString As String = "Database=db_products;Data Source=localhost;" & "User Id=root;Password=1234"
    'Dim conn As New MySqlConnection(connString)
    'Dim cmd As New MySqlCommand()
    'Try
    ' conn.Open()
    ' cmd.Connection = conn
    ' cmd.CommandText = "SELECT Database1.dbo.TableName.ColumnName, Database2TableName.Name, 'The reason why Database 2 isnt defined is the fact that it has been defined in the connection" _
    ' FROM Database2TableName INNER JOIN _
    ' Database2TableName2 INNER JOIN _
    ' WHERE (Database1.dbo.TableName.ColumnName = '')"
    ' cmd.Prepare()
    ' cmd.ExecuteNonQuery()
    ' conn.Close()
    'Catch ex As Exception
    'End Try
    ' Show the file information.
    Dim PrintPrompt As String
    PrintPrompt = MsgBox(fileInfoText, MsgBoxStyle.YesNo, "ProofList")
    If PrintPrompt = vbYes Then
    'fileInfoText.print()
    If saveCheckBox.Checked = True Then
    ' Place the log file in the same folder as the examined file.
    Dim bakFolder As String = System.IO.Path.GetDirectoryName(filePath)
    Dim bakFilePath = System.IO.Path.Combine(bakFolder, "back-up.bak")
    Dim bakText As String = "Backed-Up: " & Date.Now.ToString & vbCrLf & fileInfoText & vbCrLf & vbCrLf
    ' Append text to the log file.
    'System.IO.File.AppendAllText(bakFilePath, bakText)
    My.Computer.FileSystem.WriteAllText(bakFilePath, bakText, append:=True)
    'My.Computer.Network.UploadFile(bakFilePath, "C:\Documents and Settings\SAPC-TECH\My Documents\back-up file.bak", "", "", False, 1000)
    'My.Computer.FileSystem.DeleteFile(bakFilePath)
    Form2.Show()
    End If
    'Note: This message box shows that you've uploaded a file and back up it.
    MessageBox.Show("Already backed-up to ")
    Else
    Me.Close()
    Application.Exit()
    End
    End If
    Me.DialogResult = System.Windows.Forms.DialogResult.Cancel
    Form2.Close()
    Me.Close()
    End Sub
    here's my code wherein i have to compare the two database and save it into .txt file
    i just have to get this items
    Rack No:
    Date:
    Counter No:
    Barcode:
    Item Code:
    Item Description:
    Quantity:
    as a prooflist to be print out.

  • How can i view data files and print them?

    I'm collecting very large data files with the DAQ. Afterwards I'd like to be able to view them (zooming in and out and scrolling) then print when I get a view I like. How can I do this? Is there code out there already? What are some ways of easily visualizing large data files without using tons of PC memory and waiting for every data point to load?

    There are some basic techniques that are useful in this sort of application. First, to get an overview of an entire dataset, a good place to start is to read in the file 20 or 30 samples at a time. As you read each block, perform an average and only plot the average. This on-the-fly decimation allows you to see very large blocks of data without bogging down you system.
    Second, for the zoom function use the cursors. When the user selects an area to zoom in on, read just the values between the indices the user selects. If the selection is small enough you can display the data directly, otherwise you can decimate it as before-though probibly using a smaller block size.
    For reading the position of the cursors, use property nodes.
    The basic thing to rem
    ember is that most PC screens are at most a couple thousand pixels wide. This video resolution places an absolute limit on the number of datapoints that you will be able to see without aliasing. In general it's better to decimate the data yourself than to let the video card do it.
    Let me know if you have any specific questions
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • How can I view the devices using my cell number to receive texts?

    My family has a lot of devices and they all use my apple ID which allows texts to go to all the devices because its registered in my apple id. I think my texts are going to other devices but i dont know which ones. Is there a way to see this without having the device just so i can see a list that is using my cell phone number.
    I know how to turn it off but when i do it want to make sure its all of the devices that are turned off from my texts. Also is there any way to make sure that only my phone gets the texts?

    Hello nonyabeezwax,
    After reviewing your post, I have located an article that can help in this situation. It contains a number of troubleshooting steps and helpful advice concerning iMessage issues. You may want to consider signing out of iMessage on those additional devices:
    iOS: Deactivating iMessage
    http://support.apple.com/kb/ts5185
    Thank you for contributing to Apple Support Communities.
    Cheers,
    BobbyD

  • How can I view my bookmarks and settings on someone else's computer temporarily, if they don't use Firefox/Mozilla?

    Sometimes I am using a computer that is not mine and wish to access my favorites and/or bookmarks from their computer without downloading Firefox. Is there a way to log in, like I do with Google, and have my personal setup re-created on their computer until I sign out? (replicating my computer's home page w Favorites & Bookmarks)

    How about using Firefox Portable on a USB stick?
    http://portableapps.com/apps/internet/firefox_portable
    You can then '''Sync''' the Portable version with your official Firefox version which is installed on your own PC.

  • How can i view the ellipse and the points on the ellipse in order to modify the settings when i'm using the iris blur filter on Photoshop CC 2014

    I can't use this blur filter (diaphragm) because i see nothing that could allow me to increase, decrease or move the ellipse that normally appear(?) on the screen. What's amazing is that this filter does his job on photoshop CS6, but not on Photoshop CC 2014 ?! Thanks in advance for your help.  Serge.

    Start from the beginning
    - Select the Rectangle Tool - go to Options Bar, ensure 'Shape' options is on from the the Pick a Tool Mode drop down list.
    - Draw Rect. This should create a vector Shape Layer.
    - Select it in the Layers Panel: The Properties Panel then should highlight the Density and Feather options.
    What happens here when you drag the Feather slider? On my end it feathers the vector shape as a whole.
    If you need further masking capabilities, then apply a Layer Mask to the Shape and proceed with the Properties Panel Density/Feather options.
    h

  • How can i view full websites and prevent mobile sites loading?

    I have an HTC desire HD when I view a website using FireFox mobile I get the mobile version of the web page. I would like to disable this and get the normal version of the web page. As most of the time the mobile pages do not have all the same features as the full page. I could do Thor with my previous mobile browser.

    If you want to appear to be a desktop browser install the Phony extension. Open the preferences and set the user agent to Desktop Firefox
    https://addons.mozilla.org/en-US/mobile/addon/phony/

  • I'm new to the Apple products. How can I view pdf files since Apple and Adobe don't play together?

    I'm new to the Apple products. How can I view pdf files and videos since Apple and Adobe don't play together? Also, what operating system does the iPhone use? I'm a Windows person.

    You may want to download and read the manual for your phone. It may answer a lot of the basic questions.
    http://support.apple.com/manuals/#iphone
    There is an app on your phone called "Mail". Yes, it's for reading your email.
    Best of luck.

  • HT5900 How can I view photos stored on my iPad on my HD TV

    How can I view the photos and videos stored on my iPad on a HDTV?

    Connect iPad to TV
    http://ipad.about.com/od/iPad_Guide/a/How-To-Connect-Your-Ipad-To-Your-Tv.htm

  • How can I view or sort or group my CONTACT GROUPS together in Outlook 2010?

    How can I view (in my contacts list or address book) or sort/group my CONTACT GROUPS together in Outlook 2010, separately from the individual contacts?

    In the Contact folder, use a custom view that shows only Contact groups.  Create the filter on the filter dialog's Advanced tab -
    Message Class contains IPM.DistList
    Screenshot: http://screencast.com/t/s465l5w16q
    Diane Poremsky [MVP - Outlook]
    Outlook & Exchange Solutions Center
    Outlook Tips
    Subscribe to Exchange Messaging Outlook weekly newsletter

  • How can I view my iCloud contacts from someone else's iPhone? I don't want to change their phone settings.

    Yesterday I ran into a problem that was eye opening to say the least. I could not not access my contacts in order to find a friend's phone number. No one remembers phone numbers any more. God knows I don't.
    I was on a jetski and it broke down. I was stranded at a dock miles away. I needed to contact my friend to tell him (a) I'm ok, (b) where I was, (c) to bring a tow. Of course I had no phone on me because it would have gotten soaked.
    People were kind enough on the dock to let me use their smart phones to attempt to retreive the phone number and call for help. But I quickly discovered that it is impossible.
    On an iPhone, I tried to use their Safari browser to go to www.icloud.com. When you do that, it simply redirects you to the apps. But it isn't my phone, and their apps are logged in to the owner's accounts. I wasn't about to update the settings in a stranger's phone.
    One guy let me try his iPad with Cellular. Same problem as the iphones. It would not let me use www.icloud.com. It insisted that I use the native iOS apps.
    On an Android, www.icloud.com would simply refuse to work. It would say it was not supported.
    The question I have is: How can I view my contacts from someone else's smart phone in an emergency situation?
    Second question: Why can't I use www.icloud.com on a smart phone's web browser like I can on regular computer?
    I got lucky. I happened to know my mom's home number. Many hours later she was home and I was able to use a phone to call her. She brought up www.icloud.com on her home computer, logged on as me, and read me the phone number I was seeking. But what are the chances of being able to call a trusted person who has access to a computer to do this for you?

    Without "pretending" to be yourself on the other phone (change settings) there's nothing else you can do.
    iOS devices are meant to be single user and can't view iCloud.com the same way a Mac or PC can do.
    You need to find a desktop or laptop machine (Mac or PC) to log in at iCloud.

Maybe you are looking for

  • Possible to prevent Firefox from loading two versions of Flash, without disabling PLID scan?

    Our IT department—what a great way to start a question—does not roll out regular updates for Flash. To bridge this security gap for Firefox on my work computer, I copy the following files: * flashplayer.xpt * FlashPlayerPlugin_<version>.exe * FlashUt

  • Searching for a string in the xml present in a particular row and column.

    Hi All, We have a table in which in one of the column a complete payload xml is getting stored. Is there any way to search for a particular string in the stored xml of a particular row? Thanks in Advance, Bob

  • What is the use of materialised view in ORACLE

    Hi All, What is the use of Materialised view in ORACLE.Can anyone please help me out by giving a real time example in banking application (How MV is used in banking applications). Thanks & Regards, SB2013

  • Synchronous Calls

    We are going to write an adapter module to edit some payload that is coming in to the SOAP adapter as SYNCRHONOUS call. My issue is on the way back the (Sync Response) the tags that were taken out of the payload on the way in should be put back. I as

  • Change html generated by SAP portal

    Hi all Along with our web team I am looking into re-skining the SAP portal and was just wondering if there is a way of effecting the html code generated for each page of it. I know you can change the CSS tags, images via the theme editor etc but was