Disabling Unencrypted Ports (80) for UC Apps

Hello All,
We are planning to disable the unencrypted port for UC apps. Is it possible to do the following:
Sip Proxy CUSP - 80 - Cisco Unified SIP Proxy, will this work with 443 (https) and disable port 80?
Unity Connections - - 80/443 8080/8443 - Redirects to Cisco Unity Connection Administration, will this work with 443 or 8443 and disable the non-secure ports?
(Call Manager Pub) - 80/8080/8443/443 - static http entry page redirects to SSL for login,  will this work with 443 or 8443 and disable the non-secure ports?
(Call Manager Sub) - 80/8080/8443/443 - static http entry page redirects to SSL for login,  will this work with 443 or 8443 and disable the non-secure ports?
Thank you in advance.

I don't handle CUSP, my assumption would be that you also don't have control over it, but someone who handles CUSP would need to confirm.

Similar Messages

  • How can I just disable "navigation toolbar" completely for the App Tabs? I don't want to disable this for other normal tabs.

    How can I just disable "navigation toolbar" completely for the App Tabs? I don't want to disable this for other normal tabs. This is important as otherwise while I am in the app tab, i mistakenly start browsing from that tab and meaning of the app tab is completely lost...

    How can I view my full billing history for the app and music stores without iTunes installed?
    No.
    If my account has been compromised
    If you even think this may have happened, immediately change your password.
    See this -> Apple ID: Changing your password

  • Set Disable or Expiry Date for web app item via Edit form

    I have a user that wants to delete a web app item from a secure zone edit form, but they are not the owner of that web app item.  All items in the web app were imported via a csv file and hence do not have a 'submitted by' user id assigned.
    Is it possible to Disable a web app item using a web app Edit form?  or alternatively, is it possible to set the Expiry Date of a web app item using a web app Edit form?
    Thanks
    Dave

    Sorry Brian, but I'm not sure that answers my question.
    Sure, I can create a single web app item for every single client of my customer, manually.
    Sure, I can create and 'allocate' that single web app item to each customer manually.
    I pray the customer doesn't have hundreds of clients. And I would have to teach my customer how to do this convoluted process for every new client.
    But the one thing this doesn't do is answer the question of updating the value of units held.
    It seems the order module remains the closes to what I am looking for in that it allows an equation, and is automatically customer specific.
    However, I am looking for a way to achieve a single daily update by the customer as to the value of the units held by each client. This can be done via the product module - update price. But this does not update existing orders. Exisitng orders are fixed at the price on the day. The customer wants to update the value once, in one place, and have that amend all existing 'orders' to reflect the new total value of units held by each individual client, and to have this show in each client's member area.
    If you can think of a way of doing this in webapps or via the order module, this is what I am looking for. Anyone?

  • When I try to disable cellular data in the settings for my apps it will toggle fine, but once I exit and go back in to the cellular settings its back on again all by itself.

    I have had a problem with my iphone 4s for some time now but I have just been so busy to try and fix it. When I try to disable cellular data in the settings for my apps it will toggle fine, but once I exit and go back in to the cellular settings its back on again all by itself. However, even though it says the data is on, I can’t use the data when I don’t have wifi. I tried restoring my phone a few times and the last time I did that, it wouldn’t turn my service on so I had to talk with a Verizon agent for a long time trying to fix it and finally they simply sent me another phone. I thought hey new phone, this part will be fixed. However, I got my service to work but it’s still the same problem with the cellular data. I have just left it alone and not worried about it, but it’s still not fixed and thought I could ask on here if anyone had any ideas. It has something to do with the apps actually installed on the iphone. Apps like the mail, safari, settings, itunes apps, etc. All my other apps turn on and off just fine. Does anyone have any ideas?

    Read the User's Guide... it covers how to backup and sync the device as designed.

  • HT201299 My Iphone 4s wont remember the disable cellular data for certain apps as I soon as I switch on the 3g and go back to home and come back again to Cellular the all apps are being enabled..Please help

    My Iphone 4s wont remember the disable cellular data for certain apps as I soon as I switch on the 3g and go back to home and come back again to Cellular the all apps are being enabled..Please help

    First, try a reset: hold down the home button along with the power button until you see the Apple, then let go.

  • Why is my Apple ID still disabled when supposedly  was fixed by apple httsupport this am over 12 hours agora dithery said it would be disabled no longer then 8 hours and I still am unable to buy anything in the I tunes store or pay for any apps or games

    Why is my Apple ID still disabled when supposedly it was fixed by Apple ID support over the phone  this am over 12 hours ago and they  said it ( my Apple ID and password) would be disabled no longer then 8 hours and I still am unable to buy anything in the I tunes store or pay for any apps or games.

    We are fellow users here on these forums. Have you tried logging out of your account on your iPad by tapping on your id in Settings > iTunes & App Store and then logged in and seeing if it then works ?

  • Configuring socket policy for flex apps(with blocked port 843)?

    We have built several flex-based ecommerce apps for a fortune 500 customer of ours, that for various reasons, we need to use sockets to a different domain and requires a socket policy file, but were having trouble configuring our flex apps for deployment in thier enviornment where they are blocking virtually everything except port 80 . The current documentation in in regards to socket policy files and crossdomain files in a non-standard configuration not using port 843 is not providing any useful help to us.
    Here is the scenario:
    Flex apps are served from domain www.a.com in  to users browsers via http. The apps then make socket connections to domain www.b.com:80 where there are php scripts serving json data to the flex apps via port 80 using http(we use sockets because we need to set and read back http headers). The problem is the flex apps cannot make socket connections to the www.b.com domain without errors like below(unless we setup a socket policy server on port 843 of www.b.com, in which case everything works):
    Warning: Timeout on xmlsocket://www.b.com:80 (at 3 seconds) while waiting for socket policy file.  This should not cause any problems, but see http://www.adobe.com/go/strict_policy_files for an explanation.
    Error: Request for resource at xmlsocket://www.b.com:80 by requestor from http://www.a.com/bin-debug/DownloadManagerFlex.swf is denied due to lack of policy file permissions.
    Error: Request for resource at xmlsocket://www.b.com:80 by requestor from http://www.a.com.us/bin-debug/DownloadManagerFlex.swf is denied due to lack of policy file permissions.
    Since we cannot use port  843 for the socket policy file server, we setup the socket policy server on a different ip in the same domain: spf.b.com:80 (using the sample perl code Adobe provides), and per the docs(cited below), use Security.loadPolicyFile("xmlsocket://spf.b.com:80") before we invoke "socket.connect", to supposedly tell the flash player to check there for the socket policy file. The problem, as you can see from the error log, is that the  loadPolicyFile("xmlsocket://spf.b.com:80") is ignored.
    No matter what we do or how we set things up, we cannot get the flash player to recognize the loadPolicyFile(), it always wants to go to the port were making the socket connection on. It is unclear how to properly configure the flex app, socket policy file and crossdomain file for the above scenario. The docs allude to being able to serve  the socket policy file from a different port 80 in the same domain as the socket connection were trying to make, but were having no luck with that.
    ->Can anyone shed some light on how to make this work or what are we  missing/doing wrong? Also, if we can get this to work, are we  stuck with a 3 second delay because this(very large) customer is blocking port 843?
    As an aside,  the documentation for all this is a bit scattered, unclear and contrdictory:
    One document says:(http://www.adobe.com/devnet/flashplayer/articles/fplayer9_security_07.html)
    "This warning usually means one of two things: first, that you need to set up a
                socket policy file server on port 843, which is the first location that Flash
                Player checks by default; or second, that you need to provide more explicit
                guidance to Flash Player from ActionScript by calling loadPolicyFile to indicate the location
                of a socket policy file. When you call loadPolicyFile rather than allowing Flash Player to check
                locations by default, Flash Player will wait as long as necessary for a
                response from a socket policy file server, rather than timing out after 3
                seconds."
    Another document says(http://www.adobe.com/devnet/flashplayer/articles/socket_policy_files.html):
    "If an ActionScript Security.loadPolicyFile() command exists within               the SWF file, then the Flash Player runtime checks that location. Flash Player checks               the destination of the loadPolicyFile() only after it has checked the               master policy file on port 843 for permission to acknowledge other policy               files. If the developer has not specified a loadPolicyFile() command,               then Flash Player checks the destination port of the connection."

    I found the reason why the Flex application was ignoring the socket policy (crossdomain.XML). I have a policy server that listens to port 843 and submits the policy to the Flex client. My policy was getting ignored by the Flex application and I was getting the sandbox security error you were getting. The solution to this problem isto write a null byte right after the policy server sends the policy. I'm using Apache Mina that is wrtten is Java and the null byte is written as follows:
    public void sessionCreated (IoSession session)
            throws Exception
            session.write(_policy);  -- > policy string
            session.write("\u0000"); --> null byte
             //session.close(true); ---> No need to close the session because it is closed by the Flex client after it receives the null byte.
    Now my Flex application can read and accept the policy from port 843 and I'm not getting more security violations.
    Thanks for your reply,
    Alberto

  • Anyway to selectivily enable/disable bluetooth function for selected apps like papago in iphone.

    Hi,
    Anyway to selectively enable/disable bluetooth function for selected apps like papago navigator in iphone.
    I want to maintain bluetooth connectivity to car headset for handsfree driving while papago navigator on ky iphone continuously guide me on the road using the  iphone speaker. So when someone called me on the phone, it will use the car headset. is there such as apps?
    Rgds,
    Kpk

    Hi,
    In pageflow definition, "Train Stop-->Skip" property controls the enable/disable state.
    If Skip value is true (it can be controlled with EL expression) than related link and button in train components are disabled.
    They are enabled other If Skip value is false (It is default).

  • Disable Offline Folders in "OWA for Devices" App

    Is there a way to disable Offline Folders in OWA for Devices?  
    I like this application, but it won't fly with security unless I can disable this Offline Folder feature.  I already have offline folders disabled in OWA, but I guess it does not cross over into this space.
    brian smith

    Hi Smith,
    I don't understand what's 'Offline Folders'. Based on my knowledge, it is .ost on Outlook client.
    If you talk about "Work Offline in OWA", we can disable it via  Using Outlook Web
    App offline.
    However I can't find Exchange build-in method to disable this feature for "OWA for Devices".
    I only find this AllowCopyContactsToDeviceAddressBook parameter in Set-OwaVirtualDirectory and Set-OwaMailboxPolicy cmdlets.
    This parameter specificed if users can copy the contents of their Contacts folder to a mobile device’s native address book when using OWA for Devices.
    Thanks
    Mavis Huang
    TechNet Community Support

  • Disable push notifications for an app but still have badges

    In iOS 4, disabling push for a particular app was pretty straightforward, ON/OFF.  Not only that, but badges still worked (assuming the app supports badges), regardless if notifications were enabled for that app.  For example, I opened Words With Friends and had 2 games waiting me turn.  If I exited the app without taking my turn, you'd see 2 in the app's badge.
    Now in iOS5, there are 5 different ON/OFF knobs you can tweak in the notification menu for a typical app 1) Notification Center 2) None/Banner/Alert 3) Badge app Icon, 4) Sounds 5) View In Lock Screen.  It appears, I'd like some confirmation on this, that if you turn any one of the knobs ON, then push is enabled for that app.  So say I only wanted badges enabled, like the behavior in iOS 4, but still wanted to leave Push off, is this now impossible to accomplish?  Or even better, say I wanted the notification in the Notification Center, but want Push turned off, is this also impossible?

    Talk to the developer.

  • Disabling port 389 for version 4.x/5.x of the Directory server?

    Is it possible to close port 389 for version 4.x/5.x of the Directory server?
    We need to ony enable 636 for SSL communications. WE currently limit 389 access to the CMS (which oddly enough <bold>requires</bold> it - ARRGGGG!) by IP Address. We're currently running NT 4 and have turned off 389 and found that there is a need to have 389 open for some initial operations (ignoring the CMS requirement for testing). We have not fully tested this under Solaris ... but anticipate the same to be true.
    Rich

    iPlanet Directory Server 5 can run without the 389 port enabled... You need to set the LDAP port to 0.
    However, this will prevent the Console and the Admin Server from working correctly. It is OK if you do all the administration of your server using command line utilities.
    Regards,
    Ludovic.

  • Why won't my push notifications for the app snapchat work after yesterday's iOS update?

    After yesterday's update the app snapchat won't send me push notifications anymore

    Hello Nhuphham,
    It sounds like you are not receiving your Snapchat notifications on your iPhone.  I found an article with steps that might help with this:
    Additional Information
    If you have an app that could send frequent notifications (for example, Mail with high-traffic email accounts, Twitter apps, and so on), your iOS device could wake frequently to display the notification (and affect battery life). You can disable "View in Lock Screen" for a particular app in Settings > Notifications > <app name>.
    Troubleshooting notifications
    Push notifications require an active Wi-Fi or cellular connection. If you are not receiving notifications for a specific app, try these steps:
    Verify that the app supports notifications.
    After installing an app or restoring a backup to a different iOS device, open the app at least once to begin receiving notifications.
    If the app requires entering or logging in to an account, you will need to do this before receiving notifications.
    Check Settings > Notifications to ensure that the app is configured for notifications.
    If notifications do not appear only in the Notification Center, verify that the Notification Center setting for the app is enabled.
    If you are still unable to receive notifications and you are using a Wi-Fi connection, verify that the network or firewall is not blocking access to port 5223.
    You can find the full article here:
    iOS: Understanding Notifications
    http://support.apple.com/kb/ht3576
    If you are still not receiving the notifications for Snapchat after following those steps, I recommend continuing with the steps in the following article:
    iOS: Troubleshooting apps purchased from the App Store
    http://support.apple.com/kb/ts1702
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Setup Airport Extreme Port Mapping for Swann DVR16-2600

    Have a Swann video surv system and want to use iPhone 4 and Web to view camera displays remotely.  It requires setting up port mapping for the DVR so it can serve ports 80 and 9000 to the remote display app and web screens.
    Have signed up for a static public ip address from ISP since they do not allow port mapping using DHCP.  Trying to setup so I can use the SwannView application on iPhone 4 and use Webview in browser to access/see security camera displays on/through the DVR.  Not working correctly - only partial success.
    Reconfigured Airport Extreme for the new ip address and tried to setup port mapping for dvr which needs a web port 84 and another port 9000.  Can connect to DVR on internal network using the public static ip:84 and the internal static ip:84 but it only shows a SWANN splash page and an error about not able to load ipaddress:84/65536. Seems like something is preventing the Web display from completely launching - should see a login page but not getting it.
    Airport is set to use static ips in the 10.0.1.2 to 10.0.1.10 range with the DVR assigned 10.0.1.5.  Tried to set the port mapping for 84 and 9000 but not sure those are working correctly.  Swann support tried accessing the DVR over the public ip address and they cannot get through.  So suspect problem is with configuring the Airport Port Mapping settings and services, etc. on the Airport Extreme.  I can get to the DVR internally using the public ip address:84 and the internal static ip address of the DVR:84 but support cannot get to it from external web.
    Tried both Safari and IE 5 and both show same problem trying to launch the Swann login page, etc.  iPhone Swannview app doesn't work either.
    Any ideas about proper port mapping settings for those ports in the Airport Extreme?   Is this correct setting for the Service Type:   _http._tcp   and do you need to add settings for the public and private udp ports.  The udp port fields are empty.  Only have entries in the Private IP Address and Public and Private TCP port fields.
    Is there a way in Safari or IE5 to set security to see the public ip address as a friendly site and not block anything from loading?

    Set port mapping for 85 (not 84) and 9000
    Also, if you haven't, be sure to go into the Swann DVR setup and disable the "enable UPnP" option.    The UPnP protocol will not work with Port mapping feature of the Apple Airport Extreme.

  • The wifi at my school isn't very good. And I can't send iMessages through it. It works for some apps like score center and my radar app, but doesn't work for other apps like clash of clans and iMessage. How can I get it to work on that  wifi network

    The wifi at my school isn't very good. And I can't send iMessages through it. It works for some apps like score center and my radar app, but doesn't work for other apps like clash of clans and iMessage. How can I get it to work on my school wifi. I have an iPhone 4S on AT&T and iOS 7.04

    In a roaming network, your "main" router is the device that would require port mapping/forwarding to be configured in order to access the IP camera from the Internet. This router is also the one that would be provide the private IP address for the camera which you will want to be a static one.
    So as you described your network, the IP cameras should be getting an IP address or you assigned it a static one and this is the address that you would enter in the Private IP address (or equivalent depending on the router used) field when setting up port mapping.
    If you are not able to access this camera from the local network, then this should be troubleshot first.

  • After enabling cellular data, i am receiving mails even if disable "use cellular data for mail", due to this data usage usage use is more, if we have fix please let me know

    Phone Model and OS
    Model - iphone 5
    IOS 8.0.2
    Problem Description
    After enabling cellular data, i am receiving mails even if we disable "use cellular data for mail", due to this data usage usage use is more, if we have fix please let me know.
    Steps:
    1. Enable Cellular Data
    2. Disable mail on "use cellular data for mail
    3. check whether mail is received or not
    tried multiple times and i am getting more billing amount because of data usage

    Mail isn't the only app using data. Turning it off there has no effect whatsoever on whether the rest of iOS or other apps you have installed. In fact most apps use data these days, at a minimum for Notifications and often for gameplay and other features.

Maybe you are looking for

  • Report for batch numbers and delivery

    Dear gurus, Is there a report that I can see batch numbers and delivery at the same time?

  • Export order processing

    Dear All, I am trying to create an export order which will refer to Letter of Credit. Please let me know what are the basic settings for the same. Regards.

  • Is there any difference

    Is there any difference in committing in a FORALL loop and from a FOR loop.????

  • Issue with volume buttons on keyboard

    I have a Pavilion g7-1167dx Notebook, using Windows 8. I've had this problem for a long time, but just got around to trying to fix it.  The raise/lower volume buttons on the keyboard usually work fine.  However, after a while (a few uses or a few day

  • Converting appleworks document into jpeg - image quality

    I am createing a project with some students where we have video taped book reviews. They have then created awards for these books using Applework 6. I have had the kids save the certificates as jpeg2000 files using the best quality. When I drag and d