IP address has more numbers than Mac allows

Hi,
I'm trying to hook up a security camera system (for the barn), and I'm having trouble - I had it set up last year, can't remember what I did. Anyway, the unit hooks up to a router (the AE base station via ethernet), and I'm trying to use a PC laptop to watch from the house - I was given an IP address xxx.xxx.xxx.xxx, but it seems like it's more numbers than Mac likes. Also, I am trying to Port Map, since that's what the instructions say (5000 to 5003), but have no idea how to do this.
Help?

When setting up port mapping in a router you only use the last number (.xxx) on the right of the IP address. The first three numbers (xxx.xxx.xxx) are the same for all devices connected to a router.
Message was edited by: Retired Engineer

Similar Messages

  • How to add extra options for style of images.   iPad version has far more options than Mac version

    How to add extra options for style of images in pages.   iPad version has far more options than Mac version

    Thank you, you made me go look again and I realised the ones I use on the iPad are under Borders not style and they are on Mac also.  I feel a bit silly but I wouldn't have got there without your prompting.  Do you mean by "create your own"  using the borders and then saving as a style or can you create something that is not in either?
    Thanks again

  • Does anyone know of a simple home accounting application? iBank does not seem to be that user friendly and has more features than I need. I would like something that will connect to my bank and will allow the creation of a budget that is simple.

    I am looking for a very simple home accounting application. iBank seems to not be very intuitive and it has more features than I need. I am looking for the ability to create a budget and keep a bank register with the ability to connect to my bank and do updates.

    I have a small business, I chose Quickbooks because anything else cost much more. That triggered the hiring of a bookkeeper who knew how to use it. It was not the cheapest choice after all.

  • My dad bought an iPhone 4S, and I have the exact same model. Neither of us have the iOS6 update. His phone has 4G, mine doesn't. He also has more features than I. Why is that?

    My dad bought an iPhone 4S, and I have the exact same model. Neither of us have the iOS6 update. His phone has 4G, mine doesn't. He also has more features than I. Why is that?

    Both of you should update to iOS 6 and then you will be
    the same if you have the same  model iPhone.

  • My itunes library has more songs than my ipod will hold.

    My itunes library has more songs than my ipod will hold. What is the best way for me to choose what actually goes on the ipod?

    Or, when you are synching choose the songs you want on the IPod by checking them in the library, then tell it to only synch checked items.
    To be honest, the 'smart playlist' is probably a simpler way though. Go to playlists, click 'create new smart playlist' and choose your parameters from there. As you add new music to the library the playlist will update itself.

  • Study: Oracle database software has more flaws than SQL Server

    Hi,
    Study: Oracle database software has more flaws than SQL Server
    Microsoft is often unfairly slammed for security issues, says NGSS
    http://www.computerworld.com/action/article.do?command=viewArticleBasic&articleId=9005383&intsrc=hm_list
    Post your comments on this stupid artical.
    Thanks!
    M T

    This is a case where size does matter.
    When they say errors reported on oracle are about 4 times more than the ones reported on SQL server they forgot to say something like: SQL server is able to do... what a 10%, a 5% or whatever of what oracle can do.
    Anyway who sayd this forgot to say that they worked with microsoft trying to improve SQL sever security features as well.
    http://www.nextgenss.com/press-releases/ngs-and-the-sql-server-security-essential-guide/
    They have a reason to say it. Who would say "I made a bad job!"
    In my opinion there is no way yet to compare oracle to any other DBMS under any point of view.
    Bye Alessandro

  • Sound output has more bass than old model

    Hello
    I've just purchased a new MAC PRO. I've noticed that the sound in the headphones has a lot more bass presence than the old model.
    Anyone else found this
    In iTunes, eq is Flat or off. I can't find anything else that would changed the sound quality
    Thanks

    "- 16-bit, 44.1Khz - the sound was not quite as "wide" as the 24 bit files, but the kick drum, bass guitar, and even the snare sounded markedly more full and punchy. The bass line could be heard un-interrupted pulsing at the bottom."
    The "wide" is perfectly understandable since our perception of depth and width relies a lot on low-level ambient cues that could easily be lost in a 16-bit system vs a 24-bit system.
    The other part is harder...just another man's theory here, but if we were to take this to extremes...say a 3-bit system: off, soft and loud.
    It would be true then that anything over a certain input level threshhold would be assigned as a "loud" bit. Could that make certain characteristics and sounds appear more "punchy"? Obviously, there are 2 to the 16th power levels of resolution in a 16-bit byte, but I'm just wondering if this concept could affect the perception more so than with a 24-bit system.
    Another factor to consider is that 12-bit systems would generally have more distortion in the analog section than a high-end 24-bit converter. Distortion can definitely affect the perception of both loudness and 'punchiness'. Remember, the signal goes through analog circuits before it hits the converter chip. That analog portion is pretty critical to how the system sounds.
    That's why two a/d converters can use the same converter chips and even the same clocks, but still sound different.

  • How to get items from a list that has more items than the List View Threshold?

    I'm using SharePoints object model and I'm trying to get all or a subset of the items from a SharePoint 2010 list which has many more items than the list view threshold (20,000+) using the SPList.GetItems() method. However no matter what I do the SPQueryThrottledException
    always seems to be thrown and I get no items back.
    I'm sorting based on the ID field, so it is indexed. I've tried setting the RowLimit property on the SPQuery object(had no effect). I tried specifying the RowLimit in the SPQuerys ViewXml property, but that still throws a throttle exception. I tried using the
    ContentIterator as defined here:http://msdn.microsoft.com/en-us/library/microsoft.office.server.utilities.contentiterator.aspx,
    but that still throws the query throttle exception. I tried specifying the RowLimit parameter in the ProcessListItems functions, as suggested by the first comment here:http://tomvangaever.be/blogv2/2011/05/contentiterator-very-large-lists/,
    but it still throws the query throttle exception. I tried using GetDataTable instead, still throws query throttle exception. I can't run this as admin, I can't raise the threshold limit, I can't raise the threshold limit temporarily, I can't override the lists
    throttling(i.e. list.EnableThrottling = false;), and I can't override the SPQuery(query.QueryThrottleMode = SPQueryThrottleOption.Override;). Does anyone know how to get items back in this situation or has anyone succesfully beaten the query throttle exception?
    Thanks.
    My Query:
    <OrderBy>
        <FieldRef Name='ID' Ascending='TRUE' />
    </OrderBy>
    <Where>
        <Geq><FieldRef Name='ID' /><Value Type='Counter'>0</Value></Geq>
    </Where>
    My ViewXml:
    <View>
        <Query>
            <OrderBy><FieldRef Name='ID' Ascending='TRUE' /></OrderBy>
            <Where>
                <Geq><FieldRef Name='ID' /><Value Type='Counter'>0</Value></Geq>
            </Where>
        </Query>
        <RowLimit>2000</RowLimit>
    </View>
    Thanks again.

    I was using code below to work with 700000+ items in the list.
    SPWeb oWebsite = SPContext.Current.Web;
    SPList oList = oWebsite.Lists["MyList"];
    SPQuery oQuery = new SPQuery();
    oQuery.RowLimit = 2000;
    int intIndex = 1;
    do
    SPListItemCollection collListItems = oList.GetItems(oQuery);
    foreach (SPListItem oListItem in collListItems)
    //do something oListItem["Title"].ToString()
    oQuery.ListItemCollectionPosition = collListItems.ListItemCollectionPosition;
    intIndex++;
    } while (oQuery.ListItemCollectionPosition != null);
    Oleg
    Hi Oleg, thanks for replying.
    The problem with the code you have is that your SPQuery object's QueryThrottleMode is set to default. If you run that code as a local admin no throttle limits will be applied, but if you're not admin you will still have the normal throttle limits. In my
    situation it won't be run as a local admin so the code you provided won't work. You can simulate my dilemma by setting the QuerryThrottleMode  property to SPQueryThrottleOption.Strict, and I'm sure you'll start to get SPQueryThrottledException's
    as well on that list of 700000+ items.
    Thanks anyway though

  • N97 V2 music player has more bugs than a hundred y...

    My problem is back!
    This is what I have done in the past hour.
    Exported my contacts to vcf onto memory card. Removed the card.
    *#7370# - hard reset
    Went through all that... Then remembered I hadn't wiped mass storage.
    Wiped mass storage (Which it kept complaining it couldn't do until I removed all the default active apps on the front screen). After removing them it eventually formatted it
    *#7370# - hard reset
    Let it get settled...
    Connected to USB, did a firmware update check. 2.00.19, no update available. Disconnected USB.
    Removed all the front screen **bleep**, added shortcut 2, put my normal shortcuts onto it.
    Added my wifi destination
    Opened the browser, went to google.co.uk via my wifi, added that as bookmark
    Put the memory card back in (there are no apps on it, I never got round to using it for anything).
    Imported my contacts back from the memory card.
    Went into music player, zero tracks shown. Good.
    Connected USB, started Nokia Music PC application (latest version, had checked). Right clicked on one album 13 tracks.
    Let it send them over to the N97.
    Disconnected phone. Started N97's music player. It says music library corrupt, scanning... Says 13 tracks found.
    Artists shows one artist, 13 tracks. Albums shows 1 album. All looks good.
    Go into the album, pick on a track, starts playing.
    Volume control does nothing. Touch volume control does nothing. Headset remote control, volume, forward and reverse do nothing. Touch screen pause/play forward and reverse do work, but there is no way to control volume.
    I've screwed up this music player app before the Nokia system has even got round to sending me the Welcome text message (which I have seen too many times!).
    Okay, I'm going to write the next bit line by line as I do it... So bear with me... It's step by step. You never know, it might help anyone that gives a damn (Nokia hopefully), fix it!
    *#7780# - soft reset
    Front screen now just shows shortcuts1 and 2, but the shortcuts themselves have switched back to Nokia's defaults.
    Music player volume now works!
    Connect to USB, send another mp3 album. PC app says (and shows on the %age bar) transferring 5 tracks. Album has 18. Nokia Music system tray icon says complete after 5, but the little arrows shows things are still being transferred. Waited for them to finish. Click the N97 icon and it's showing both albums, with all 18 tracks the second one really does have.
    Disconnect USB
    Go into Music library on N97, no auto refresh message. Showing only the original album with 13 tracks.
    "Options\refresh library" nothing shows as scanning, just appear straight back at the artist,album,playlist option screen. Albums still shows just the first one.
    Option\music library details says 13 tracks
    Playback and volume still work.
    Using the file manager, mass storage, music there's my 2nd artist, the album, and all the mp3 files. I can click them and play them. Volume still works.
    Select original (found) album, select delete. Everything shows 0, even though 2nd album is there in the mass memory, file mgr shows it. First artist and albums folders are still there, but empty (Nice house keeping Nokia).
    Reconnect USB, Nokia Music just shows the "invisible" 2nd album, and will play it.
    Pick a 3rd album of 11 tracks... Send that to N97.. No progress bar or anything shown, just wait for the arrows to stop flashing and then confirm N97 is showing two albums (the invisible on and new one) on the PC app.
    Disconnect USB.
    Back on the N97... Apps, Music.. Says Music Library 11 songs (that's the 3rd album)... Go into it..
    Albums (no songs)
    All songs (no songs)
    Artists: The artist from 3rd album is shown... 11 songs!
    Click it... Shows the album name, 11 songs.
    Click the album, and click the first track to play it... Long delay of a few seconds...
    Starts playing... Volume not working again!
    Try refresh library... again, nothing, no progress bar...
    No change, no volume control.
    Now here's the really weird bit... If I go and find the mp3 file on the mass storage, and play it from there, volume control works! Come back through the music play app, play the same track, volume won't work.
    *#7780# - soft reset
    Welcome message, yeah yeah... Ooooh, very fast confirmation text message...
    Apps, Music, Music Library (11 songs), go into that, click Albums.... "Cannot perform whilst USB connected" **bleep**?I disconnected that ages ago when i said I did. After that every attempt to go into Albums dumps me back to the Music app showing "Last player - blank" "Music Library 11" etc etc...
    Exit all the way out and try to go back in...Artists does the "USB connected" error. Albums just dumps me out. Playlists says "File corrupt". All songs say "(no songs)". Podcasts and Genres say "USB connected", composers "General system error" and after that I get a couple of other system errors from other options and then it just dumps me back out.
    *#7780# - soft reset
    Ovi welcome... blah blah...
    Apps, music, music library (11 songs), go into it, option\refresh... Ooooh, something happens, a progress bar! 18 files added! That's 3rd album...
    Albums show both... Artists show both
    Pick one for playback... Volume control is back!
    Right... Time to try a different tack...
    Connect USB, mass storage mode this time (all previous attempts have been PC suite mode).
    Create a now folder in music for the artist name (as stored in ID3 tag), create subfolder in that for the Album name (as stored in ID3). Copy mp3 files.
    Eject USB device, wait for windows to confirm... It does.
    Disconnect USB cable.
    App\music\Music Library (29 songs - Thats the two previous albums). Go into it, previous tracks shown, playback/volume okay.
    Refresh library works again... Now 3 albums, volume works.
    Back to USB (mass storage mode).
    This time deliberately doing the storage structure wrong... \music\albumname\mp3s (normally \music\artist\albumname\mp3s).
    Music library still showing the 48 tracks from the first 3 albums... Seems to open a bit slower... Still works though.
    Refresh library... 13 files added...
    4 albums... All working...
    Looking with file mgr from badly arranged folder is still as I made it... I guess the Nokia Music PC app creates the tree format, and the N97 doesn't actually need it.
    Okay, proof of pudding test...
    Connect via USB (mass storage).
    Delete the album I created with the mangled folder structure.
    Copy 20 folders of mp3 albums across using just windows file manager to the mass storage drive's music folder.
    Eject USB storage device from windows....
    Oh... Up until now I was almost certain I would be able to use N97 as an MP3 player as long as I avoided the Nokia Music PC app...
    Apps\Music\music library shows 61 songs, which is what it had...
    Go into it, click albums and I'm getting the USB device connected message. It's not, and the icon isn't even showing on the phone, so I can't go into the player to see if volume works.
    Refresh isn't displaying anything, or doing anything I can see. Playlists say the file is corrupt...
    *#7780# - Soft reset
    Apps\Music\music library (61 songs).. go in, "Repairing corrupted library. Searching for music and podcasts"
    After a little while... 2 hundred and something found...
    Yup, all there...
    Guess what...
    Volume control is screwed again!
    Manually telling it to scan for new tracks doesn't do anything.
    *#7780# - Soft reset
    Apps\Music\music library (276 songs)... Go in "Repairing corrupted library....."
    2 seconds later "Search complete 0 file(s) added"
    All albums there, still no volume control.
    Okay, that enough... No more...
    Hopefully that is enough to give Nokia a clue as to what is wrong, and may I just make a slight suggestion.
    TEST WITH MORE THAN HALF A DOZEN TRACKS YOU **^(*&)(*)(*(*£$%^*(#!
    I'm off to buy a 7lb club hammer.

    Last night I had a thought...
    I wondered if the N97's Music player was getting upset when scanning my music because I had the jpg of the album cover in the folder with it (I tend to do that). As I hadn't bothered reloading any music since my last hard reset I thought I would give it a try.
    I removed all non-mp3 files from my music folders.
    Connected N97 in PC Suite mode
    Started Nokia Music PC app and transferred one album. Let it finish, closed the PC Nokia Music app, gave it a few seconds to settle, disconnected the N97 and had a look.
    It appeared in the music player and worked.
    Ooooh, right, in for a penny, in for a pound as they say... I connected it back up and sent over another 6 albums. Again closed the Nokia Music app... Waited a few seconds and disconnected the N97.
    Went and had a look... "Library corrupt, scanning.... blah blah"... Oh dear, here we go again. But no, a progress bar actually appeared, and after a minute it said "0 file(s) added", but they were all there. All the album art appeared (I'd already embedded that in the mp3 files days ago). All the albums, all the music.
    They played, and the volume worked!
    Yay! Thinks me... Solved... And goes to bed a happy man.
    I set my alarm (on the phone) for the morning and turn the phone off so nobody can phone me before my alarm (which really screws up my sleep!).
    This morning the alarm goes off.
    I hit stop. It asks if I want to turn the phone on, I say yes.
    It asks for my lock code (which I have enabled). I enter it. It says code correct.
    Flash of white on the screen... and it asks for my lock code again, which I enter... It says correct again.
    This time I get the Nokia tune.
    It comes up to the normal front screen, jumps itself onto the application screen, throws up a system error and reboots.
    It comes back up (without asking for a pin) and this time settles at the front screen looking for all the world like a working phone... A text message arrives to prove at least that's working.
    Hmmm... I wonder about my music...
    Well it's all there... But guess what... Volume control doesn't work again!
    Oh and clicking "Podcasts", of which I have zero, still produces, and has always produced (even straight after a hard reset), the message "Out of memory, please remove something"... Pressing it again produces "System Error". After that nothing in the Music Library menu works, all produce "System Error". You have to close it and restart to get anything in Music Library to "work".
    I wouldn't say I am short of memory. DeviceInfo (from moubail.com) Shows
    C: 32.68 MB free
    E: 30116.46 MB free
    F: (8Gig card) 7120.86 MB free
    RAM: 48.83 MB free.
    I keep my C: drive clear of everything. Even my text message storage has been switched to E: (not that I have may since all the hard/soft reboots. Most of them are the "Welcome to nokia" message. Anything that gives me the option to install to another "drive" gets put onto E:
    I haven't installed any of the 3 files offered in since the hard reset "SW Update", N-Gage, Nokia Messaging or Ovi Contacts.

  • ITunes thinks iPhone has more music than it really does, and won't sync

    I have an iPhone 4 running iOS 7.1, and am running iTunes 11.1.5 on Mavericks.
    I was using iTunes Match on the iPhone, but I don't want to do so any more because I have acquired a lot of music that I can't upload to iTunes Match. (This is because my wife has her own iTunes Match account, and Apple won't allow two different iTunes Match accounts to be used simultaneously on the same computer, even under different user accounts. So because my wife uses her iTunes Match account under her user account on the same computer, I cannot activate my own iTunes Match account and upload my additional music.)
    So I turned off iTunes Match on the phone. I then went into Settings - General - Usage - Music and deleted all the music on the phone.
    The phone now shows as having no music on it at all, both in Settings and in the Music app itself.
    I hooked the phone up to iTunes in order to sync a new load of music onto it. Under "Summary", the usage bar shows no music on the phone at all, and a total of 10.99 GB free. This is exactly as expected.
    I have ticked "Sync only checked songs and video". In my iTunes library, only ten songs are checked. So I am attempting to put only ten songs onto the phone (for now).
    I go over to the "Music" tab of the phone. I check "Sync Music". Suddenly a huge blue bar appears at the bottom, and it now says I'm over capacity by 975.8 MB. And yet at the top of the screen, next to "Sync Music", it also says "10 songs". So it knows I only want to put 10 songs on the phone, and yet it thinks that this is too much for the 10.99 GB free space on the phone.
    Heading over to the "On This iPhone" tab of the phone, I see that all of the music that I previously deleted from the phone is showing up here, even though it's no longer on the phone. If I double-click on any of the items, they don't play, and an exclamation mark symbol appears next to them, indicating that the tracks aren't actually present. If I right-click on any of the items, the only options I have are to play them, get info, check the rating, or show in iTunes Store. There's no delete option.
    It looks like, as long as I don't try to sync the iPhone, iTunes recognises that there's no music on it, and it's got over 10 GB of free space. But as soon as I try to sync it, iTunes thinks that the old, deleted music is still on it, and that I therefore have no space to put anything more on. So it refuses to sync any music to the phone, even though there's plenty of space for it.
    I have tried ejecting the phone, restarting it, and remounting it. I have also tried signing out of my account on the phone and signing back in. It makes no difference. I don't know what else to do.
    So I can't sync the iPhone. What's going wrong, and what can I do to make it work?

    Same problem here. Mine is a iPhone 5s......

  • Browser view of cloud has more apps than aam

    I've noticed that there are more apps available in my browser view of the cloud than is available in the downloaded Adobe Application Manager. Why is this, and why can't I download them?

    You need a 64 bit operating system to run After Effects and Premiere Pro. I'm guessing you have Win 7 32 bit?
    Adobe does not do the greatest job of explaining this to customers.
    Many times they've been requested to add an explanatory note to the Cloud to avoid exactly this kind of confusion. Unfortunately this request has not yet reached the right people in Adobe (or perhaps they don't see the need for it) so no explanatory note has yet been added.

  • Ipod has more space than computer!!!!

    Hello, I've run into a bit of a problem. I've recently bought a 30 G ipod w/ video, but my computer only has 20 G. Obviously less now, as I've had it for a few years... so lets say 3 G. Is there any way I can keep all my music on my ipod w/o [sync-ing it and keeping all the music on my hard drive]?
    Thank you much =]
    ~ musezilla

    You simply have to change the update option of your iPod to "manually manage music and videos". You can get details here: Managing content manually on iPod
    One major word of caution. If you delete songs from your PC and have no back up other than the iPod you will risk losing them permanently if your iPod fails or you find you have to restore it to solve a problem. You should consider investing in an additional internal or external hard drive to store/back up your music. Alternatively at the very least back up songs you can't replace such as iTunes downloads to CD or DVD. Forum member Buegie has compiled a very extensive procedure for backing up your music which you'll find at this link: Backing up iTunes
    Something else to be aware of when using an iPod in manual mode is that the "Do Not Disconnect" message will remain on the display until you physically eject the device. In that case use Safely Remove Hardware icon in the Windows system tray on your desktop or check this link: Safely Disconnect IPod

  • If a Nokia 5800 has more resolution than an iPhone...

    How come video etc looks rubbish on it?  On an iPhone youtube/iPlayer is crystal clear, on my 5800 its a blocky mess

    The Nokia 5800 does have a higher resolution that the iPhone. In fact, the 5800 has a much better screen (e.g. greater viewing angle, doesn't go dark blue when you view from an angle). Unfortunately, the CPU/graphics subsystem on the 5800 do not have enough grunt to display video at the native resolution of the screen, so the typical video you watch on the 5800 is at a quarter of the screen resolution or less. On the other hand, the iPhone has no problem displaying video at its native resolution. Applications like the iPlayer stream video to the iPhone at its native resolution at a reasonably high bit rate (higher than the equivalent Nokia streams) and the result is video that looks much better than on the 5800.

  • Return order has more quantity than original order - one item

    Gurus,
    In one of the original sales order (VA01 tcode) having quantity as 1 (ie one line item) and then when return order is posted against that original order using order idoc .
    Return order idoc has only one quantity for that item. But return sales order created with two quantity for that item.
    Any way in our process Return order is created based on original order using original to return copy control.
    This is only one order got affected. We never get such a scenario in our SAP system.
    Any inputs will be greatly appreciated
    Thanks
    Praba
    Edited by: Prabaharan Rangasamy on Jan 12, 2011 5:50 PM

    Hello,
    Please check whether return sales order is really created via Idoc message. Go to sales order header and check the created by field under sales tab.
    It seems that the return sales order is created manually, and second line item (extra item) is added manually before this return sales order is actually saved, so the change log didn't appear
    Br,
    Tushar

  • What to do if iPod has more capacity than computer's HDD?

    I just got myself the 160GB iPod Classic, only to realize some weeks later that how can I fill it up if my MacBook has only 120GB of HDD?
    Is there a way to fill it up without having to sync back to iTunes? I would mostly use it for videos, either from ITS or from my DVD collection.
    Thanks in advanced.

    You could always buy a large external drive (say 500GB) and keep your iTunes library there and then your drive will definitely be large enough to hold everything your iPod does.
    Patrick

Maybe you are looking for