3650 Model conflict "show ver" Vs. the sticker on the outside.

I just received a couple 3650 switches and have found that the model number when I do a "show version" from the CLI is not the same as the sticker on the outside of the unit.
Show Version says it is a WS-C3650-48PD
The outside sticker says WS-C3650-48FD-S
I noticed that cisco.com has both of these listed when looking for software.
Is this an error? Can anybody help me understand this difference?

Disclaimer
The Author of this posting offers the information contained within this posting without consideration and with the reader's understanding that there's no implied or expressed suitability or fitness for any purpose. Information provided is for informational purposes only and should not be construed as rendering professional advice of any kind. Usage of this posting's information is solely at reader's own risk.
Liability Disclaimer
In no event shall Author be liable for any damages whatsoever (including, without limitation, damages for loss of use, data or profit) arising out of the use or inability to use the posting's information even if Author has been advised of the possibility of such damage.
Posting
Cisco lists both, for software upgrades, because they are really the same basic model sold with different options.
The show version tells you the model is a PoE model, but the sticker tells you it was originally sold with the larger power supply (for full power).  (NB: as power supplies can be swapped/revised, the show version is just providing the LCD.)
The sticker's -S suffix also tells you the original feature license was "standard", or IPBase.  (NB: as the license can be upgraded, you would need to run a show license to see what the device is currently licensed for.)

Similar Messages

  • I'm using ver. 3.4.5. After having a problem importing  some photo's I now have all my library showing up in the one project. I'm worried about just deleting this project in total. Any help would be appreciated

    After importing a small group of photo's I noticed that aperture didn't create a project for them as usual. The only place I could see them was in last imported. While last importwas open I selected the photo's and told aperture to creat a new project using the selected one's. I named the project with the date using all cap's so I would know which one it was.  What I have now is my whole library showing up in this one project.  If I import more pictures It does two things. A new project is created as it normally does. These new thumbnails also show up in the problem project. I tested to see what would happen if I deleted one old picture while the problem project was open. It went to the trash. It was also removed from its original project.  If I ignore this what seems to happen when importing at this time is that a new project is created that you can open, it acts normal. The file only contains the correct amount pictures.  If I then go to the problem project the thrumbnails show here also.
    About 6 mos ago I switch to Aperture from iphoto. I never combined the two libraries.  I have around twelve thousand photo's. December 1st I backed up my imac with Time Machine. I don't want to back up again until I get this problem in check.
    Thanks for any help, Dale

    Hi Andy,
    I'm using Mac OSX 10.7.5 
    No the one with the caps seems to be working normally.This project with the caps now has four files. Originally I created it with about fifteen. I deleted eleven of them and edited the remaining four. The four files each have one version and its original. It wasn't until after I completed this work that I noticed the privious project when opened and scrolled had the entire library in it.
    The test I did went like this. With the problem opened I deleted one file that I new existed prior to this problem.      I than opened that project that I new it was from to see if it got deleted and found it gone and moved to trash. I think that tells me that if I delete all the files in the problem project I'll be in trouble. I also have inported to projects each with one file that I edited. They are working fine. I took a look in the problem project and this last
    two imports show the thumdnails in it.
    Currently on my Hard Drive I have 275 GB free space.  My photo's take up 138 GB. As I said on Dec. 1st I backed up the system using time machine. So all of Dec. and part of Jan. inports won't be on it. I could work around the problem project and move those file to a safe place. I think it best not to back up the system with Time Machine until I'm confident the Aperture is runing properly. I'm happy that I control these system backups manually.
    I'll need to find out how to copy the Aperture library to another place. I'm sure I can poke around and fined out the process.
    Thanks Andy for the come back!

  • Store value in data model without showing it in table

    Hi,
    How can I store something in my table model without showing it in my table? I have an arraylist which contains a list of my own data objects. I have my own table model like
    public class MyTableModel extends AbstractTableModel {
                  public Object getValueAt(int row, int col) {
                   TableDataObject tdo  = (TableDataObject) data.get(row);
                   switch(col) {
                        case 0:
                             return tdo.getFoo();
                                     default:
                                             break;
    }my "hidden" value is stored in the data list...but I have to get the hidden value from my table model, not from my arraylist.

    Nothing to it, but to do it:
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.table.*;
    public class ColumnModelExample {
        public static void main(String[] args) {
            Object[] columnNames = {"hidden", "column 1", "column 2"};
            Object[][] rowData = {
                {"hidden 0","row 0, col 1","row 0, col 2"},
                {"hidden 1","row 1, col 1","row 1, col 2"},
            TableModel model = new DefaultTableModel(rowData, columnNames);
            JTable table = new JTable(model);
            TableColumnModel columnModel = table.getColumnModel();
            columnModel.removeColumn(columnModel.getColumn(0));
            JFrame f = new JFrame("ColumnModelExample");
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(new JScrollPane(table));
            f.pack();
            f.setLocationRelativeTo(null);
            f.setVisible(true);
    }One typical use of this is for displaying the records of a database table, where you don't want to
    show the user a sequence column which would only confuse the user...

  • User Property changes show up on the outlook 2013 UI correctly but it does not show up on the MailItem User Properties in Shared Account between PCs Environment

    Hello There,
    I have written an Outlook Add-In to add several User Properties to our incoming emails. This add-in will be installed in 100 computers in different states and our Exchange server is hosted in our datacenter in CA. 
    Everything works great but there is an odd thing happens and that is when one PC changes a UserProperty Value all the other PCs  show up that change on their outlook UIs but when I get the MailItem object from the same other PC is
    not showing the changes. But if I shutdown outlook on that PC and open it up again the changes will be showing up in the MailItem object. It seems to me that MailItem doesn't refresh but UI does.
    Does anyone know how I can refresh the MailItem after its UserProperties has been changed from another pc in a shared account environment.   
    These are my codes to save a property and show all properties:
    Public Sub SaveUserProperty(xName As String, xValue As String)
    Dim ns As Outlook.NameSpace = Me.Application.GetNamespace("MAPI")
    Dim oMailItem As Outlook.MailItem = Nothing
    Dim oUserProperties As Outlook.UserProperties = Nothing
    Dim oUserProperty As Outlook.UserProperty = Nothing
    Try
    oMailItem = ns.GetItemFromID(curMailId)
    oUserProperties = oMailItem.UserProperties
    oUserProperty = oUserProperties.Find(xName)
    If oUserProperty IsNot Nothing Then
    oUserProperty.Value = xValue
    End If
    oMailItem.Save()
    Catch ex As Exception
    MsgBox(String.Format("{0}: {1}{2}", "SaveProperty", vbTab, ex.Message))
    Finally
    If Not IsNothing(oUserProperty) Then
    Marshal.ReleaseComObject(oUserProperty)
    oUserProperty = Nothing
    End If
    If Not IsNothing(oUserProperties) Then
    Marshal.ReleaseComObject(oUserProperties)
    oUserProperties = Nothing
    End If
    If Not IsNothing(oMailItem) Then
    Marshal.ReleaseComObject(oMailItem)
    oMailItem = Nothing
    End If
    If Not IsNothing(ns) Then
    Marshal.ReleaseComObject(ns)
    ns = Nothing
    End If
    End Try
    End Sub
    Public Sub ShowUserProperties()
    Dim builder As StringBuilder = New StringBuilder()
    Dim ns As Outlook.NameSpace = Me.Application.GetNamespace("MAPI")
    Dim oMailItem As Outlook.MailItem = Nothing
    Dim oUserProperties As Outlook.UserProperties = Nothing
    Dim oUserProperty As Outlook.UserProperty = Nothing
    Try
    oMailItem = ns.GetItemFromID(curMailId)
    oUserProperties = oMailItem.UserProperties
    For Each oUserProperty In oUserProperties
    builder.AppendFormat("{2}:{0}{3}{1}", vbTab, vbNewLine, oUserProperty.Name, oUserProperty.Value)
    Runtime.InteropServices.Marshal.ReleaseComObject(oUserProperty)
    Next
    If (builder.Length > 0) Then
    System.Windows.Forms.MessageBox.Show(builder.ToString(), "The UserProperties collection")
    End If
    Catch ex As Exception
    MsgBox(String.Format("{0}: {1}{2}", "ShowUserProperties", vbTab, ex.Message))
    Finally
    If Not IsNothing(oUserProperty) Then
    Marshal.ReleaseComObject(oUserProperty)
    oUserProperty = Nothing
    End If
    If Not IsNothing(oUserProperties) Then
    Marshal.ReleaseComObject(oUserProperties)
    oUserProperties = Nothing
    End If
    If Not IsNothing(oMailItem) Then
    Marshal.ReleaseComObject(oMailItem)
    oMailItem = Nothing
    End If
    If Not IsNothing(ns) Then
    Marshal.ReleaseComObject(ns)
    ns = Nothing
    End If
    End Try
    End Sub

    Outlook will not see the latest changes downloaded from Exchange (or changed through MAPI bypassing the Outlook Object Model on the local machine) until the MailItem object is completely released and reopened. The explorer list shows the changes since it
    is fed off the underlying folder contents table, not the cached MailItem object.
    There is nothing you can unless you make sure the MailItem object is released and is never kept referenced fro any prolonged periods of time.
    Dmitry Streblechenko (MVP)
    http://www.dimastr.com/redemption
    Redemption - what the Outlook
    Object Model should have been
    Version 5.5 is now available!

  • Ipod Not Showing Up In The List In Itunes

    Hey, ive had problems with my ipod lately. basically when ever i plug my ipod into my computer, it appears in mycomputer and itunes also opens. i have run the diagnostic in the help menu in itunes and it is detecting my ipod HOWEVER it will not show up in the list on the right hand side!!!! I have tried all the things suggested by apple such as reinstalling and many other things like ending the process etc. no luck.. plz help!

    Have you tried simply resetting hte ipod while it's connected to the PC?
    If that doesn't help, here is an article with a long list of other stuff to investigate.
    http://support.apple.com/kb/TS1369
    You need to expand each link and read all the stuff. For example, under
    "Connect iPod to a high-powered USB port"
    the 4th line down says
    +If the issue persists, try disconnecting other USB devices from the computer such as printers, cameras, scanners, external hard drives, and USB hubs to determine if there is a conflict in the USB chain.+
    That is a step you wouldn't want to skip, as it can really narrow things down.

  • Fact table with 2 time keys, measures showing together in the same report

    Hello,
    I am using OBI EE and I have the following scenario: a fact table hold information about enquiries. An enquiry may or may not generate an appointment. So in my fact table I have two date columns: enquiry date and appointment booked date (not the date of the appointment itself, but when it was actually booked).
    This raises a couple of questions. First question is: I can only have one logical FK to the Times table, how to create two LFKs for those 2 dates? Should I create a logical copy of the Times table in the BMM, along with another time dimension?
    Second question is how to display both pieces of data in the same report. For instance, in a summary report per month I want to see the number of enquiries made and appointments booked in each month. Most likely they will be different numbers and refer to different rows in the database. What is the best way to model this in the BMM?
    For instance, in October there were 10 enquiries, 8 of them were converted into appointments along with 3 enquires made in September. So, the report should show for October: number of enquires: 10, number of appointments: 11 (8 from October + 3 from September)
    Sorry if this is a basic question but I couldn't find around any examples of this scenario.
    Thanks,
    Luis

    Genius, that works perfectly, thanks!
    Just one issue that I noticed... I have other dimensions on that fact table, one of them is "channel". Channel is linked to a column in the original fact table, as is Number of Enquiries.
    If I include Channel in a report that shows Number of Enquiries and Number of Appointments, the Number of Appointments column only shows zeros, while the Number of Enquiries column still shows the correct numbers:
    Month    Channel   Enquiries   Appointments
    Jan 09   Email      100           0
             Phone      120           0
    Feb 09   Email       87           0
    ...Then I figured out that I needed to add a PFK for all dimensions to the aliased fact table, not only for the times dimension.
    Thanks again
    Luis

  • I bought acrobat adobe professtional version II in 2012.  Now I re-download this software to my new computer.  All info was downloaded.  But when I oopened the file, I need to verify the serial number.  It showed up that the serial number is valid, but th

    I bought acrobat adobe professtional version II in 2012.  Now I re-download this software to my new computer.  All info was downloaded.  But when I opened the file, I need to verify the serial number.  I entered.  But it showed up that the serial number is valid, but the qualifying product could not be found.  I could not be able to find Ver 11 from the list.  What can I do?

    The qualifying product is the older version that you owned before you purchased the upgrade to version.  It is what qualifies you to use the less expensive upgrade version.  So you need to select the older version and provide its serial number to prove that you qualify for using the upgrade.
    Error "This serial number is not for a qualifying product" | CS6, CS5.5, CS5
    http://helpx.adobe.com/creative-suite/kb/error-serial-number-qualifying-product.html

  • Can't get wallpaper to show up in the background on my iPhone 3G

    Can't get wallpaper to show up in the background on my iPhone 3G????
    I have tried everything I can think of. But for some reason Apple has not made this easy to do. I just can't seem to get a Wallpaper to show up in the background. I can get it to show up on the lock screen, but that's it. Am I missing something? Has any one fond this simple feature hard to figure out?

    WHAT! Oh, come on. This was the only reason I was interested in iOS4. I mean really I knew a lot of features wouldn't work cause of the lack of procesor speed, but the Walpaper is just a static graphic, what is so hard with that? I mean three OS's ago I hacked my iPhone and got that feature working. Apple did the pooch on this one. I hope this is not like holding back features like they do on cars to sell the over priced ones.
    Gee! I am so ******! I spent a living H E Double Hocky Sticks trying to get the darnm OS on my iPhone and none of the features except the very poorly implemented folder or is tit a tray directory thing. Well it's back to OS 3 and hacking it to get it to work properly.

  • Hi, I have a mac book pro running mavericks and recently tried to connect to a 3rd ten apple tv but the airplay icon is not showing up in the top bar. I then tried my girlfriends laptop running mountain lion and it showed up straight away. Any suggestions

    Hi, I have a mac book pro running mavericks and recently tried to connect to a 3rd gen apple tv but the airplay icon is not showing up in the top bar. I then tried my girlfriends laptop running mountain lion and it showed up straight away. Any suggestions?

    How old is the MacBook Pro?  AirPlay is only supported on 2011 and newer models, due to the requirements it has in hardware for graphics acceleration.

  • I have album covers showing up on the wrong album in iTunes.   iTumes will not let me delete them.  I have a new laptop with Windows 8.

    I have album covers showing up on the wrong album.  iTunes will not allow me to delete them.  It acts as though it did, but does not, with no error message.

    Hi,
    No available software and drivers for Windows 8.1:
       http://support.hp.com/us-en/product/HP-Photosmart-C5500-All-in-One-Printer-series/3575176/model/3575...
    Please try Software and drivers for Windows 8 for the series:
        http://ftp.hp.com/pub/softlib/software12/COL30128/mp-109095-2/PS_AIO_04_C5500_NonNet_Full_Win_WW_140...
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Why doesn't the Radio option show up in the Library in iTunes 11?

    Everything else selected in preferences shows up in the Library (Movies, TV Shows, Tones, etc) but not Radio.  What am I missing?
    I also verified that there is no conflict with Parental Controls.
    BTW, I'm not a fan of the new look of iTunes at all.
    iTunes 11
    2011 iMac

    Radio is now grouped in with the Music section and appears on the right side of the list at the top.

  • Why is my iPad is not showing up in the Devices list in iBook Author?

    Why is my iPad not showing up in the Devices list in iBook Author? iBook ver is up to date. iTunes sees the iPad. What gives...
    Message was edited by: drydruid

    OK, the problem is partly solved. iBooks Author is not 'smart' enough to realize the iPad had been plugged-in and iBook on if all that happens after iBooks Author is already started. On the off chance that that was the problem I Quit iBA, made sure the iPad was connected and iBook was on then restarted iBA. Sure enough, there it was.
    I really like Mac's but sometimes they're not as smart as they think they are.

  • Built-In Ethernet Port Doesn't Show Up In The Network Preference Pane

    My ethernet port no longer shows up in the Network preferences pane under Network Status. The status Airport and the Internal Modem are still displayed though. Plugging in an ethernet cable causes my machine to crash; sometimes I get a message that I need to hold down the power button to reboot, and other times command line-like text is displayed on top of whatever was on screen.
    The only change I've made to my system since last using a wired connection was installing Security Update 2006-001 on March 1st and OS X Update 10.4.5 on February 14th. After running the 10.4.5 updater, my machine initially refused to reboot. On the first attempt, it played the start up chime, but the screen remained black. The second time, the Apple logo appeared, but the spinning pinwheel never did. The third attempt was successful and my system appeared to be functioning normally.
    How do I get my ethernet port to work again?

    Does "Built-in Ethernet" show up as a choice in the 'Show:" popup? If so, is it configured as you would expect? For instance, if "TCP/IP" is set to use DHCP, do you have an IP address, subnet mask, etc.? There is an "off" setting for TCP/IP; make sure that hasn't been selected somehow.
    There is also an "Assist Me" button that will let you launch the diagnostics app. Does this also crash the Mac? If not, what are the results of its tests?
    Also, you may want to do a permissions repair with Disk Utility if you haven't done this since applying the updates.
    If you still get crashes, there may be a conflict with a log-in item, particularly if you have any third party ones. (Check that in the "Accounts" pref.) One way to diagnose things like that is by creating a new test account & logging into it. If the problems go away, you can assume a user cache, .plist, or login item is the problem.
    If none of this turns up anything, you may need to reinstall the OS. Short of that, you can try downloading the 10.4.5 combo update & running it. It replaces more components than the "delta" update so it just might do the trick. Besides, if you end up having to reinstall the OS, having the combo version handy will save you the time of downloading & installing any incremental updates to get back to 10.4.5.
    As always, backup all important files before applying any updates.
    Good luck!

  • I have a "hacker" PC showing up under the "Shared" section of the Finder

    Today I noticed a PC computer icon showing up under the "Shared" section of the finder. The computer name was brn_921bc1. I immediately went into System Preferences and turned off file sharing. Is it really that easy for a PC hacker to come into my computer? Please help, as this seems to be a huge security threat.
    Thanks!!

    polishedstaple wrote:
    Today I noticed a PC computer icon showing up under the "Shared" section of the finder. The computer name was brn_921bc1. I immediately went into System Preferences and turned off file sharing. Is it really that easy for a PC hacker to come into my computer? Please help, as this seems to be a huge security threat.
    Thanks!!
    I doubt this is a hacker but you do seem to have an insecure setup. If you have your computer connected directly to a cable modem then you are essentially on a shared subnet with lots of other people Most of them aren't hackers -- probably none of them are. But this situation does leave you vulnerable which is why many people prefer to place a router in between their cable modem and their computer even if they are only connecting a single mac or pc to the internet.
    My first suggestion is that you turn on your Mac's firewall immediately. Open your System Preferences and type "firewall" in the search box. Hit return. When the firewall screen opens select "Allow only essential services". You should do this before you finish reading this thread.
    My next suggestion is to buy what's called a NAT router and stick it in between your cable modem and your mac as soon as practical. This will give you a far more secure setup than you can get with a software firewall alone. If you need help setting it up, come back here and I'm sure you can find the advice you need.

  • How do I get shared computers to show up in the sidebar in Leopard?

    Still trying to come to terms with Leopard's way of doing things, and can't get shared computers to show up in the sidebar. I've never shared computers before, so need very basic instructions on how to do this. I thought I had set up for other specific computers to share, but nothing happens. Do they need to be using Leopard too?
    Thanks for any help.

    All of the things that folks seem to be having problems with are broadcast or multicast based. If you're not seeing things, chances are really good it's because you're not seeing the broadcasts / multicast packets. Why? Donno... shouldn't be any different than Tiger and "works fine for me".
    Here is how you see what multicasts are going on the wire (broadcast are just another type of multicast):
    sudo tcpdump -nvvXi en1 -s 1500 multicast
    When you do this, if it's the first time you've run sudo, it will give you a warning and ask for your password since this is a privileged command. The next time, it will only prompt you for a password (unless you ran it recently and your password is cached).
    There are a few different types of broadcasts that you'll want to be looking for. Note: These are only examples of each type - there are multiple sub-types of these to advertise other details. I'm only giving generic descriptions of each - the packet data in yours will be different, but a similar format.
    _This is a AFP Multicast (udp/5353)_
    You'll see here my wife's macbook advertising its services. This data gets collected and put in the mDNSResponder cache for when you need it. It is also used to make stuff show up on your finder.
    21:08:18.189071 IP (tos 0x18, ttl 255, id 26790, offset 0, flags [none], proto: UDP (17), length: 232) 192.168.15.101.5353 > 224.0.0.251.5353: [udp sum ok] 0*- [0q] 5/0/1 Melissa.device-info.tcp.local. TXT "model=MacBook2,1", Melissa.afpovertcp.tcp.local. (Cache flush) SRV Macintosh-3.local.:548 0 0, Melissa.afpovertcp.tcp.local. (Cache flush) TXT "", services._dns-sd.udp.local. PTR afpovertcp.tcp.local., afpovertcp.tcp.local. PTR Melissa.afpovertcp.tcp.local. ar: Macintosh-3.local. (Cache flush) A 192.168.15.101 (204)
    _This is a NetBIOS/NBT/SMB/Windows Share Broadcast (udp/137)_
    This is what your system looks for to make Windows systems show up on your finder.
    21:06:34.226681 IP (tos 0x0, ttl 64, id 41952, offset 0, flags [none], proto: UDP (17), length: 78) 192.168.15.101.50581 > 192.168.15.255.137: [udp sum ok]
    NBT UDP PACKET(137): QUERY; REQUEST; BROADCAST
    TrnID=0x28DB
    OpCode=0
    NmFlags=0x11
    Rcode=0
    QueryCount=1
    AnswerCount=0
    AuthorityCount=0
    AddressRecCount=0
    QuestionRecords:
    Name=_MSBROWSE_ NameType=0x01 (Unknown)
    QuestionType=0x20
    QuestionClass=0x1
    _This is a UPnP (Universal Plug and Play) Broadcast (udp/1900)_
    These are used for things like your Internet router, UPnP Music Servers, and other similar devices to advertise what they can do (similar to the Bonjour packets - but a different standard).
    21:08:25.042607 IP (tos 0x0, ttl 4, id 25012, offset 0, flags [none], proto: UDP (17), length: 353) 192.168.15.1.1900 > 239.255.255.250.1900: [udp sum ok] UDP, length 325
    0x0000: 4500 0161 61b4 0000 0411 9434 c0a8 0f01 E..aa......4....
    0x0010: efff fffa 076c 076c 014d d47e 4e4f 5449 .....l.l.M.~NOTI
    0x0020: 4659 202a 2048 5454 502f 312e 310d 0a48 FY.*.HTTP/1.1..H
    0x0030: 6f73 743a 3233 392e 3235 352e 3235 352e ost:239.255.255.
    0x0040: 3235 303a 3139 3030 0d0a 4361 6368 652d 250:1900..Cache-
    0x0050: 436f 6e74 726f 6c3a 6d61 782d 6167 653d Control:max-age=
    0x0060: 3630 0d0a 4c6f 6361 7469 6f6e 3a68 7474 60..Location:htt
    0x0070: 703a 2f2f 3139 322e 3136 382e 3135 2e31 p://192.168.15.1
    0x0080: 3a38 302f 7570 6e70 2f73 6572 7669 6365 :80/upnp/service
    0x0090: 2f64 6573 5f70 7070 2e78 6d6c 0d0a 4e54 /des_ppp.xml..NT
    0x00a0: 3a75 726e 3a73 6368 656d 6173 2d75 706e :urn:schemas-upn
    0x00b0: 702d 6f72 673a 7365 7276 6963 653a 5741 p-org:service:WA
    0x00c0: 4e50 5050 436f 6e6e 6563 7469 6f6e 3a31 NPPPConnection:1
    0x00d0: 0d0a 4e54 533a 7373 6470 3a61 6c69 7665 ..NTS:ssdp:alive
    0x00e0: 0d0a 5365 7276 6572 3a4e 542f 352e 3020 ..Server:NT/5.0.
    0x00f0: 5550 6e50 2f31 2e30 0d0a 5553 4e3a 7575 UPnP/1.0..USN:uu
    0x0100: 6964 3a75 706e 702d 5741 4e43 6f6e 6e65 id:upnp-WANConne
    0x0110: 6374 696f 6e44 6576 6963 652d 315f 302d ctionDevice-1_0-
    0x0120: 3030 3137 3366 3638 6364 3861 3a3a 7572 00173f68cd8a::ur
    0x0130: 6e3a 7363 6865 6d61 732d 7570 6e70 2d6f n:schemas-upnp-o
    0x0140: 7267 3a73 6572 7669 6365 3a57 414e 5050 rg:service:WANPP
    0x0150: 5043 6f6e 6e65 6374 696f 6e3a 310d 0a0d PConnection:1...
    0x0160: 0a .
    If you're not seeing these packets, you're not going to see anything in your finder.
    Why would you not see them?
    1) Your firewall is blocking them from going out from the system that is sharing data
    2) Your firewall is blocking them from coming in from the system that is looking for the data
    3) The necessary services are not started on either system
    4) Your network does not properly forward multicast and broadcasts between hosts
    I've posted a number of threads on how to figure out each of the above situations. An easy thing to check is to do a 'netstat -anp udp' and see if there is a *.XXX where XXX is the port number listed in each of the descriptions. If there is, your system is listening for the packets and I'd check the firewall. If there is not, your system isn't setup right to listen for them (double check your file sharing settings and options).

Maybe you are looking for

  • Report print attributes - custom report layout

    Hi there, I've looked for this information in the web and in this forum without luck so far... We have here BI Publisher and I use the "Enable Report Printing" option in a traditional report in Apex 4.0.2. That works great. But instead of using the "

  • All web images are being saved as web clippings...

    Dear Apple Community, For the past 2 days every image I try to save to my mac from a website (via Safari), remote server (ie: .me), etc. Is being saved as a .RTF web clipping. When I click on the files, TextEditor opens, but the file is empty even th

  • Provide - Endprovide with SD n MM modules

    Hi experts can any one tell me im learning ABAP-HR, in this im working with LDB, i have a doubt that can't we use Provide - Endprovide of LDB with SD and MM Modules .

  • Please help me find solution to my BB Z10

    Please help me findout solution on what im gonna do to use again my BB Z10. Its totaly blackout when it opens its just the logo. I bought it 2ndhand only.this was the 2nd tym situation i dont know why other cp tech here in bicol dont know what soluti

  • Change phone number associated with iPad

    How do I change the phone number that my iPad is identified with?   I'd like the iPad to be identified with my wife's iPhone, not mine. Otherwise I cannot use face time. Any thoughts?