Re: how do I enable UPnP on my router

is it possible to get a router with UPnP. I need for my IP camera.

If you have a gateway from Comcast go to 10.0.0.1 when prompted:username= adminpassword = password  (assuming this is your first time) nose around in the settings, I think you will find what you need.  The firmware on the gateways is quite robust. Sadly, what you want is out of demarc for tier 2, they simply cant help you. 

Similar Messages

  • How can I enable UPnP for my EZXS55W ?

    Hi !
    I don't know how to enable UPnP for the EZXS55W , can you show me step by step ?
    Thank you !

    The EZXS55W is a unmanaged switch. You cannot enable UPnP on it. It is a simple ethernet device. If you have trouble with UPnP then it is a problem with your router but not with the switch.

  • How do you turn UPnP on?

    WRT54G V8 How do you turn Universal Plug and Play on from a second laptop? Im trying to open my NAT so I can get onto more game servers, but i cannot find where to change UPnP.

    Open an Internet Explorer browser page on your wired computer(desktop).In the address bar type - 192.168.1.1 and press Enter... Leave Username blank & in Password use admin in lower case...
    Under the Setup Page Click on Administration Tab under the Administration there is sub tab Management wherein you will find the option to enable Upnp but by default the Upnp port is always enable on the router.
    Are you playing any game on your computer or you are using any gaming device to play games.
    If you are playing the games on any of these devices then you need to open the Ports on  your linksys Router for the specific game .

  • Enabling upnp on Time Capsule

    I want to use the iphone Samsung remote app to control my Samsung LED TV.  Unfortunately for this function needs upnp (universal Plug and Play) to be enabled on the Time Capsule.
    I am using the 2TB Time Capsule, iPhone 4 (iOS 5) and Samsung LED TV UE55D7090.
    How can i activate/enable upnp on my Time Capsule?

    I too was looking to enable "upnp" on my time capsule.  It appears to me that there is no such option but there is a similar function through NAT-port mapping. 
    http://support.apple.com/kb/HT1552
    "Some third-party Internet routers use a technology called UPnP (Universal Plug and Play), which is similar to NAT-PMP. Back to My Mac works with both NAT-PMP and UPnP."
    The language above makes me believe Apple routers do not use UPnP.
    Someone correct me if I'm wrong.
    John

  • I have a Verizon IPhone 4 and i can't figure out how to get my ringtones from an app to my iTunes account, it doesn't have a tab for Ringtones! I have tried unplugging it and checking if would show up but it didn't, how do you enable the ringtone folder?

    I have a verizon IPhone and i can't figure out how to get my ringtones from the app to iTunes, my account doesn't have a ringtone section in the liRingtone Folder?brary, how do you enable the ringtone folder?

    Edit > Preferences.  Select the check box for Ringtones, this will add them to the listing in iTunes. 
    Not sure that really answers your question though.

  • How can I enable embedded pl/sql gateway to run on port 80

    I have a new 11G install on OEL 4.0, database created. I would like to be
    able to access the instance using the pl/sql gateway. Works fine with
    port 8080, the default. How to I enable it to run on port 80?
    I found this statement in the following docuementation:
    http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14259/xdb22pro.htm#ADXDB2500
    Using HTTP(S) on Nonstandard Ports
    By default, HTTP listens on a nonstandard, unprotected port: 8080. To use HTTP(S) on
    the standard port, such as 80, your DBA must chown the TNS listener to setuid ROOT
    rather than setuid ORACLE, and configure the port number in the Oracle XML DB
    configuration file /xdbconfig.xml.I have root priviledges on the box.
    I've tried setting the listener file permissions:
    chown root:dba /u01/app/oracle/product/11.1.0/db_1/bin/tnslsnr
    chmod 6775 /u01/app/oracle/product/11.1.0/db_1/bin/tnslsnr
    Also put root in the dba group.
    The permissions turn out like this:
    -rwsr-sr-x 1 root dba 830854 Jun 17 21:04 /u01/app/oracle/product/11.1.0/db_1/bin/tnslsnr
    I stopped the listener, bounced the database, and started the listener again.
    But it still shows the process being owned by oracle:
    oracle 29682 1 0 21:08 ? 00:00:00 /u01/app/oracle/product/11.1.0/db_1/bin/tnslsnr LISTENER -inherit
    Changing the port is easy:
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SYS>select dbms_xdb.gethttpport as "HTTP-Port" , dbms_xdb.getftpport as "FTP-Port" from dual;
    HTTP-Port FTP-Port
    8080 2100
    At this point, I can access the apex home page with the following url:
    http://hostname:8080/apex/f?p=4550:10:1454849288245548
    I can than change it to port 80:
    SYS>begin
    dbms_xdb.sethttpport('80');
    dbms_xdb.setftpport('2100');
    end;
    2 3 4 5
    PL/SQL procedure successfully completed.
    SYS>SYS>select dbms_xdb.gethttpport as "HTTP-Port" , dbms_xdb.getftpport as "FTP-Port" from dual;
    HTTP-Port FTP-Port
    80 2100
    When I try to access apex with the following url:
    http://rmdcopslnx1.us.oracle.com/apex/f?p=4550:10:1454849288245548
    I get the following:
    Failed to Connect
    Firefox can't establish a connection to the server at hostname.com.
    Though the site seems valid, the browser was unable to establish a connection.
    * Could the site be temporarily unavailable? Try again later.
    * Are you unable to browse other sites? Check the computer's network connection.
    * Is your computer or network protected by a firewall or proxy? Incorrect settings
    * can interfere with Web browsing.I can set the port. Just can't talk to it.
    This is the entry from the listener log:
    <msg time='2008-07-03T15:40:09.741-06:00' org_id='oracle' comp_id='tnslsnr'
    type='UNKNOWN' level='16' host_id='hostname'
    host_addr='xxx.xxx.xxx.xxx'>
    <txt>TNS-12546: TNS:permission denied
    TNS-12560: TNS:protocol adapter error
    TNS-00516: Permission denied
    Linux Error: 13: Permission denied
    </txt>
    </msg>
    So this looks like an permissions problem. But where? I posted
    this on the apex forum here:
    Re: How can I enable embedded pl/sql gateway to run on port 80
    They suggested asking here.

    No, that thread did not provide the information that I need. Some more data:
    I have the port set to 8080:
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SYS>select dbms_xdb.gethttpport as "HTTP-Port" , dbms_xdb.getftpport as "FTP-Port" from dual;
    HTTP-Port FTP-Port
    8080 2100
    At this point, I can access the apex home page with the following url:
    http://hostname:8080/apex/f?p=4550:10:1454849288245548
    I can than change it to port 80:
    SYS>begin
    dbms_xdb.sethttpport('80');
    dbms_xdb.setftpport('2100');
    end;
    2 3 4 5
    PL/SQL procedure successfully completed.
    SYS>SYS>select dbms_xdb.gethttpport as "HTTP-Port" , dbms_xdb.getftpport as "FTP-Port" from dual;
    HTTP-Port FTP-Port
    80 2100
    When I try to access apex with the following url:
    http://rmdcopslnx1.us.oracle.com/apex/f?p=4550:10:1454849288245548
    I get the following:
    Failed to Connect
    Firefox can't establish a connection to the server at hostname.com.
    Though the site seems valid, the browser was unable to establish a connection.
    * Could the site be temporarily unavailable? Try again later.
    * Are you unable to browse other sites? Check the computer's network connection.
    * Is your computer or network protected by a firewall or proxy? Incorrect settings can interfere with Web browsing.
    I can set the port. Just can't talk to it.

  • How do I enable an add-on in Firefox safe mode?

    So recently I have had a problem with Firefox crashing all the time and found out it was an add-on that was causing the problem.
    I have tried opening Firefox in safe-mode to disable add-ons but they are already disabled, so I want to know how to enable an add-on and then to permanently disable it so Firefox will open normally again. . .
    I have already tried to permanently disable all add-ons by using the Firefox options box but nothing happens after I click on the 'make changes and restart firefox' button. After I click it nothing happens and it remains frozen. ([https://support.mozilla.com/en-US/kb/Safe%20Mode Safe mode Window])
    So to make things short, how do I enable an add-on in Firefox safe mode?

    In Firefox 4 and later [http://kb.mozillazine.org/Safe_mode Safe mode] disables extensions and also disables hardware acceleration.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    If disabling hardware acceleration works then check if there is an update available for your graphics display driver.
    You should still see a Disable button or Enable button (if you disabled them all) in the extension Manager (Tools > Add-ons > Extensions) if you start Firefox in Save mode.
    *https://support.mozilla.com/kb/Safe+Mode

  • How do I enable my iTouch? I am trying to update the apps but when I click "Update All", a pop up "Your Apple ID has been disabled." How do I change it so I can enable my iTouch? Thanks.

    How do I enable my iPod? I am trying to update the apps but when I click "Update All", a pop up "Your Apple ID has been disabled." How do I change it so I can enable my iPod? My iPod is not locked (I know my password), but I just can't figure out how to enable it. Thanks.

    This may help:
    http://support.apple.com/kb/ts2446

  • TS3280 How can i enable both paired bluetooth and ios keyboard input at the same time?

    How can i enable both paired bluetooth and ios keyboard input at the same time?
    This is needed for the app im working on. Need some user input via keypad as well as scanner input via a paired bluetooth scanner.

    You probably should not be using a keyboard bluetooth profile for a scanner, I am not a developer for apple so do not know the location for you to find out the correct profile you should be using for an input device that is not a keyboard. Sorry,
    I am sure if you navigate the apple developer site you will probaly finmd what you're looking for.
    https://developer.apple.com

  • How do I enable flash and java on firefox23 as I have the latest versions installed yet the plugin page shows "disabled" with no option to enable

    I have updated to Firefox 23 and it disabled my Java and Flash plugins. I then updated these to Flash 11.8.800.94 and Java to Version 7 Update 25. Now these are showing up on the plug in page but are showing "disabled" with no option to enable. How do I enable them to view content on the web.

    Thanks Philipp but i have already done that and the content started working...
    However, when i closed and restarted the browser it returned back to the same settings...
    I dont think that should happen, but anyway thank you for the solution. At least I can use it by resetting the values if need be
    Appreciate your help

  • How do i enable my iphone with out itunes

    how do i enable my iphone with out itunes how do i enable my iphone with out itunes

    You need a WiFi connection to activate the iPhone without itunes on a mac/pc.

  • How can I enable spell checking for a text box that is just one line, e.g. subject in e-mail?

    In a prior version of Firefox I found a website somewhere that told me what to do to enable spell checking for text boxes that are just one line. I got used to being able to send an e-mail with a Subject Line that didn't have a misspelling. Now it doesn't work. Please tell me how I can enable that again. I am on a Mac using Firefox 6.0.2. Thanks!

    See:
    *http://kb.mozillazine.org/Spell_checking
    *http://kb.mozillazine.org/layout.spellcheckDefault
    You can set the pref <b>layout.spellcheckDefault</b> to <i>2</i> on the <b>about:config</b> page.
    To open the <i>about:config</i> page, type <b>about:config</b> in the location (address) bar and press the "<i>Enter</i>" key, just like you type the url of a website to open a website.<br />
    If you see a warning then you can confirm that you want to access that page.<br />
    *Use the Filter bar at to top of the about:config page to locate a preference more easily.
    *Preferences that have been modified show as bold (user set).
    *Preferences can be reset to the default or changed via the right-click context menu.

  • I have three different e-mail addresses, and need to receive the incoming e-mails from the three sources.  How do I enable my iPhone to do it? Tks in advance.

    I have three different e-mail addresses, and need to receive the incoming e-mails from the three sources into my iPhone (it's presently receiving msgs from only one of them).  How do I enable my iPhone to do it? Tks in advance.

    Many thanks for your help!

  • I have just installed a 2TB time capsule on my iMac i7, it see my second 1TB hard drive but the 256 SSD doesn't come up in the list of hard drives I can back up. How can I enable the time machine to see my first SSD 256gb hard drive?

    I have just installed a 2TB time capsule on my iMac i7, it see my second 1TB hard drive but the 256 SSD doesn't come up in the list of hard drives I can back up. How can I enable the time machine to see my first SSD 256gb hard drive?

    iLife is preinstalled on all the Macs. If you purchased iLife in the App Store or your computer came without DVDs, open App Store > Purchases and download the applications. If your Mac came with discs, insert the Applications DVD and install iLife applications

  • How can I enable SuperFetch?

    Hi,
    I downloaded Java from Java.com (free download) to be able to open a file I received as email attachment. After the download something happened to my laptop pc (Windows 7). I received pop up messages that said something like "Your computer got infected
    you need to install Windows Defender 2015. And they started to pop up almost every second and also the screen view changed. It got upside down or windows messages moved and seemed to be multiplied, very unusual things kept going...
    I stopped it and went online on my tablet pc and looked for what to do if my computer got infected with virus (because that's what I thought happened). From what I read online I made sure that all Microsoft windows experts were all recommending to start
    my pc in safe mode and I found some instructions such as going to Task Manager and ending processes and also to clear some files and folders in Registry Editor. I wasn't able to clear files and folder in Registry Editor. To make short, I came to the conclusion
    that I needed live help from a Microsoft expert. I chatted online with some MS Support Desk techs and followed their instructions but it didn't help at all. When I click on the little flag icon with a red cross sign on it(the one that says Open Action Center)
    it says 1 important message-Turn on Windows Security Center service(Important) I tried to turn it on (I don't know how many times!) but I get the message "The Windows Security Center can't be started"
    I went to Troubleshooting and clicked on Check of Performance issues (under System and Security) it did checking and I got the message "Problems Found- SuperFetch is not running. Not Fixed. 
    My question is: HOW CAN I GET SuperFetch running? or How can I enable SuperFetch?
    Thank you.
    Elif YILDIRIM

    Hi Temur, ok. I do the above procedure and it worked fine
    Now, I have other question?
    How can I reproduce any file (for example: a video, an url page, an image), that is in the flash of DMP?
    Índice de ftp://172.17.15.22/tmp/ftproot/tmp/ftproot/tmp/ftproot/usb_1/
    Subir al directorio superior.
    Nombre Tamaño Última modificación
    Sample Videos.lnk
    1 KB
    17/06/2011
    06:25:00 a.m.
    deployment
    29/06/2010
    04:14:00 a.m.
    lost+found
    25/02/2010
    12:00:00 a.m.
    video futbol en la playa.mp4
    1390 KB
    29/06/2010
    01:08:00 a.m.
    videofutbol.mp4
    1390 KB
    29/06/2010
    01:38:00 a.m.
    I like, that el DMP when loss conectivity with DMM, It display at the LCD screen, the video named videofutbol.mp4, this video As I show in the picture above, already in the flash of DMP.
    I appreciate your early response.
    Thanks

Maybe you are looking for

  • How can I stop iCal from printing an appointment time posted in week view but printed in month view?

    While I keep my calendar in weekly format, I also want to print a single-page monthly calendar. But repeating the time of day in the monthly format takes up space. Is there a solution?

  • Scheduling Process flows

    I have created process flow and created and schedule and attached it to the process flow thru configure and refferred calander and depoyed the process flow again. But the flow doesnt start. Is there anything else to do. I read in form that some _job

  • Reason rewire audio problems

    Hi, I've followed all the instructions posted within this forum and in the manuals but I still cannot get Reason audio in Logic. Midi rewires fine between Logic and Reason, i.e. playing a rewire track in Logic does trigger the Reason rack - audio com

  • Importing referenced images into the Aperture library

    I've searched and seen related questions but not this one exactly. I have images that I unknowingly (new aperture user) imported as referenced files. Now I'd like to import them into the aperture library without loosing ratings, etc so that they are

  • How to remove wrong thumbnail picture associated with MP3/WMA file?

    Win7 associates those little thumbnail sized pictures to some mp3/wma files I have (inside Music library), but some some pictures are wrong. How to "dissociate" those wrong pictures? Furthermore, Win7 seems to fill in informations to music files but