How to manage traffic of livestreams or youtube

Hi all,
at the moment we are discussing about how to control or limit traffic used by livestreams. At the moment there are many web pages with livestreams of the olympic winter games and customers facing very high traffic by hd videostreams.
So we are now thinking about managing this videostreams by implementing some policies on the proxies.
And we alternatively think about how to restrict traffic of videostreams or youtube video using asa.
Did not find anything in the knowledgebase. Do you have any hints how to manage this?
thank you in advance and best regards
Vincent

Just go trough Manage application and Modify application and use reindex and full process.
This normally should fix your issue.
Regards
Sorin Radulescu

Similar Messages

  • How  encode streaming and publish it to  youtube and livestream in one process ?

    Dears ,
    We  start encode  to  youtube  and another process to livestreeam.com  , that conusmes   much of cpu ,
    I want to configure to start encode to youtube and livestream.com in one process that will minimize CPU consuming for encoding  by 50%
    Kindly advice how to configure  it ?
    thanks.

    There isn't any good way around this.  If you want to send a stream to two different platforms... you have to have two different encoders.  In order for FMLE to take the output of a single compressed stream and deliver it to two different streaming servers (Livestream and YouTube) you have to be running a streaming server.
    A streaming server will take one single "input" stream, and deliver it to multiple endpoints.  Those endpoints could be viewers who want to watch, or they could be other streaming servers.  In any event, what your asking for is handled by a streaming server... and FMLE is an encoder, not a streaming server.
    What your asking to do can be done... but it's going to be very expensive, and I'm assuming you want to keep this low cost.  Your cheapest solution is to use a computer that has the CPU horsepower to run two copies of FMLE -- each encoding and sending a stream to the two different endpoints (Livestream and YouTube)... or simply purchase a second computer and have each computer handle each stream encoding individually.

  • How to manage Rescue and Recovery Backups

    Hi I've been using disk image backup solutions since the days of powerquests Drive Image. And have had my days with Ghost and Acronis Trueimage. I recently built a clean Vista image on my T400, and I'd like to take advantage of the Lenovo Rescue and Recovery 4.21 tool since it the recovery technology is already part of my system and I have tested it once.
    I'm used to the idea that a backup tool will produce an image file, which I can manage myself, moving to various media....hiding under my bed etc. With RnR, I've noticed it prefers to control the directory's where backups are placed (this is a bit annoying to me, but I can live with it, as long as it's isolated to the RRBackup directory - which it appears may not be the case). I do appreciate it's ability to specify various backup media locations (network, CD, 2nd HDD, USB) and recognize that it's a simple approach for basic usage.
    Recently I've backed up my image to USB drive, and also to the local disk. I'd like to take that back up and split it up into DVD's and burn it to disk. I know there is a built in RnR feature which lets us copy backups from the local drive (why only local drive ??) to USB/Network/CD, but unfortunately the CD copy feature burns directly to my thinkpad burner...which is a CDR device, not a DVDR device. I'd like to use the DVDR device on my desktop...
    Anyway, I'd like to know if there is more resources on how to manage RnR Backups. I found the following guide http://www-307.ibm.com/pc/support/site.wss/MIGR-70344.html (which is hard to get on Lenovo's site...google finds it better), I'm still reading it, but so far it appears more focused on the pre-desktop area than backup management.
    Any insight would be appreciated.
    Thanks!

    Hi Danielle,
    Consider this allegory; factory settings will make your thinkpad like a never driven 0 meter car [with reference to software]. Hence it will be far-flung from it's previous state. Apart from what you have already saved on memory stick, all settings and the software you have installed on the notebook will be lost.
    I hope this helps.
    Maliha (I don't work for lenovo)
    ThinkPads:- T400[Win 7], T60[Win 7], IBM 240[Win XP]
    IdeaPad: U350
    Apple:- Macbook Air [Snow Leopard]
    Did someone help you today? Compliment them with a Kudos!
    Was your question answered today? Mark it as an Accepted Solution! 
      Lenovo Deutsche Community     Lenovo Comunidad en Español 
    Visit my YouTube Channel

  • Change cipher strength for management traffic

    Hi All,
    I’m performing a new deployment for my customer on a C370 Ironport and my customer has an internal team performing a band test on the Ironport box. The results show that the management traffic (HTTPS) is only using medium strength traffic (56bits – 112bits) in which does not meet the compliance of the organization. From the knowledge base, I checked that our management traffic is using either RC4-SHA or RC4-MD5. Any way to change this to AES or 3DES?
    Besides that, in the band test, customer also notices that the box supports anonymous SSL ciphers. Any way to disable this?
    Thanks.

    Hi there,
    check out these articles:
    Article #1399: How can I alter what ciphers are used with the Graphical User Interface (GUI)? Can I disable SSL v2 for the GUI? Link: http://tools.cisco.com/squish/80676
    Article #1367: How do I prevent the IronPort appliance from negotiating null or anonymous ciphers? Link: http://tools.cisco.com/squish/3637E
    So to exclude low and anonymous ciphers, sompthing like this would apply:
    HIGH:MEDIUM:-SSLv2:-aNULL:@STRENGTH
    Hope that helps,
    Andreas

  • VLAN for Management Traffic

    Hello Everyone,
    I'm still learning cisco and networks in general but I need to separate management traffic from the regular network.  The switch is a cisco catalyst 5406-E.  My question is do I need to create a new subnet for the VLAN and how would I do that? The commands I have to create a VLAN and add the switch ports are
    Switch(config)# vlan 15
    switch(config-vlan)# name Management
    switch(config)# interface GigabitEthernet2/6
    switch(config-if)# switchport access vlan 15
    Now this creates vlan 15 and adds the GE 2/6 interface to vlan 15.  How do I add it to a new subnet?  Am I going in the right direction?

    In general, if you want to use separated VLAN for management, you can create VLAN + SVI (routed interface of the VLAN) with IP address + some access list on SVI and VTY (“SSH/telnet lines”) for better security.
    Example:
    ==== C4500 – L3 SWITCH CONFIG ====
    //create VLAN 15
    vlan 15
    name MGMT
    //create access list with ip addresses, from which management of all switches with SVI 15 will be accessible
    //Note: this access list (ACL) does not control access to management of L3 switch/router where the ACL is applied on SVI, only to all other switches in VLAN 15 that have default gateway set to ip address 10.0.15.1 (see next step)
    ip access-list extended MGMT_SWITCH
    remark ====ICMP====
    permit icmp any 10.0.15.0 0.0.0.255
    remark ====ADMIN====
    permit ip 10.0.1.0 0.0.0.255 10.0.15.0 0.0.0.255
    remark ====MONIORING-SERVERS====
    permit ip 10.0.100.0 0.0.0.255 10.0.15.0 0.0.0.255
    remark ====NTB-SERVICE====
    permit ip 10.0.200.0 0.0.0.255 10.0.15.0 0.0.0.255
    //create SVI/interface of the VLAN 15, add IP address and assign access list
    //Note: DO NOT assign empty access list to interface, it can make your router inaccessible!
    interface Vlan15
    description MGMT
    ip address 10.0.15.1 255.255.255.0
    ip access-group MGMT_SWITCH out
    //create ACL for VTY line of L3 switch/router; this ACL controls access only to management of L3 switch, access to all other switches with SVI 15 is controlled by previous ACL
    ip access-list standard VTY
    remark ====ADMIN====
    permit 10.0.1.0 0.0.0.255
    remark ====MONIORING-SERVERS====
    permit 10.0.100.0 0.0.0.255
    remark ====NTB-SERVICE====
    permit 10.0.200.0 0.0.0.255
    //assign ACL to vty lines
    line vty 0 4
    access-class VTY in
    ==== OTHER L2-ONLY SWITCHES CONFIG ====
    //create VLAN 15
    vlan 15
    name MGMT
    //create SVI 15
    interface Vlan15
    description MGMT
    ip address 10.0.15.50 255.255.255.0
    //set default gateway/default route to SVI of c4500
    ip default-gateway 10.0.15.1
    //some higher-level switches require use of following CLI parameters instead:
    ip routing
    ip route 0.0.0.0 0.0.0.0 10.0.15.1
    This is just one of many ways to do the management separation.

  • How to Manage the Resource Master in Primavera Enterprise Version

    We are using P6 enterprise version in our company having a central database. We had created our own unique resources and standardised across the enterprise and is Admin protected. However we often have to import some schedules sent by our consultant/client. In those schedules they have their own resources.
    So when we import these schedules, it also imports the resources along with it and pollutes our resource master.
    Can anyone let me know, how to manage such a situation.
    Regards

    We have met this issue. You have few ways to deal with it, but each has its own +ve and -ve.
    1- You may create a separate "Working" db into which you can import those files and keep them there only. Your master db shall be used for maters and your own program only.
    2- You may do the same for checking the resourses, vet them before importing into the final db
    3- P3 and MSP importation allows you to select the node to which the resources will be located. We have created a resource node called "Imported Resources" and dumped all those resources into it. Our users don't have access to that node so those resources can only be used on the imported program and can't be assigned to any other program / activity
    4- Enforce your supply chain to use the same resource list. We managed to do that for our main and subcontractors. That formed part of their contracts.

  • How I Managed to Install Windows 8.1 Pro on an iMac 27-inch, Late 2013

    As is typical with many of my Boot Camp installs, this one did *not* goes as smoothly as planned. This installation was particularly troublesome, so I thought I would share how I managed to set up Boot Camp on a brand new iMac (27-inch, Late 2013) using a Windows 8.1 Pro DVD and an external Apple SuperDrive. These are the steps I took:
    Download Boot Camp Support Software 5.1.5640 (http://support.apple.com/kb/DL1721)
    Copy Boot Camp Support Software to empty MS-DOS (FAT)-formatted USB key
    Run Boot Camp Assistant and select third option only (Install Windows 7 or later version)
    Computer would reboot after Boot Camp Assistant finished but would boot back into Mac environment and not continue Windows installation
    Boot computer holding down option key and select Windows (with DVD icon) and go through initial setup process (could go as  far as trying to format Boot Camp partition as NTFS and then got stuck)
    Quit Windows installer and reboot computer holding down option key and select EFI Boot
    Run Windows installer
    These same steps worked for another iMac (same model) that I set up later the same day.

    Note: These types of discs or activities are not supported by DVD or CD sharing:
    DVD movies.
    Audio CDs.
    Copy protected discs such as game discs.
    Install discs for an operating system such as Microsoft Windows (for use with Boot Camp), or Mac OS X.
    Burn a CD or DVD

  • How to route traffic across subnets when one NIC is a hyper-V virtual switch?

    Having a bit of a problem with a hyper-V environment which does not seem to route network traffic on two different subnets between each other.
    If it were a purely physical server with two NICs and a gateway set traffic would automatically be forwarded between the two different subnets.
    However when one of those NICs is a hyper-V virtual switch this simple routing no-longer seems to work and no traffic gets forwarded between subnets?
    Situation is:
    Hyper-V server with two NICs
    NIC 1 = 192.168.0/24 - main Internal company network.
    NIC 2 (hyper-V virtual switch.) = 192.168.1/24 - connects to ADSL internet router
    Virtualized Domain Controller.
    One or two virtualiszed NICs as necessary
    How then does traffic get routed between these two subnets?  If RRAS has to be configured to do this where is the best place to do it, on the hyper-V host or on the virtualized domain controller?
    Thanks,

    Hi ,
    You can create an internal virtual switch and configure an IP for it (I assume it is 192.168.1.2/24) .
    After you enable RRAS in hyper-v host  there will be two gateways for different subnets  .
    " NIC 2 (hyper-V virtual switch.) = 192.168.1/24 - connects to ADSL internet router "
    The problem is here ,if  these VMs need to access internet .
    So , these VMs can not configure their gateway same as the IP of internal virtual switch , you may set VM's gateway as the ADSL internet router's IP meanwhile add a static route entry for every VM .
    Please refer to the Syntax :
    route add -p 192.168.0.0 mask 255.255.255.0 192.168.1.2
    Hope this helps
    Best Regards
    Elton Ji
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • How to manage one wsp and dll for multiple clients in farm environment

    1. There is a product which is developed using C sharp , jquery,CSS and sharepoint object models which have been packaged into .wsp file. Whenever we introduce new functionality to the product we used to branch the
    previous code as a version , say Version 1.0 and new functionality of the product will in another solution. This is how we are managing the code in TFS as versions. Each newer version will have new functionalities. We do not give latest functionality for all
    the clients. Each client is having its own version of functionality. Technically in order to access the functionality, the wsp solution should be present in the solution repository which is available in SharePoint central administrator site. This solution
    will be deployed on the client’s site. We are following the above process in SharePoint standalone installation where we used to purchase dedicated server per client and installed sql, SharePoint foundation 2010 as standalone installation and adding the client
    related version of the code to the solution repository. Later host on the site which is created for that client purpose. This process is same for all the clients where we purchase individual server for each client .
        Now we want to host our product in farm environment of sharepoint foundation 2010 where we are going to try 3 level architecture. 
    • SQL Server-In this sever we are going to install sql server 2008R2 standard edition. Which should serve the database service for all the web applications/sitecollections which we are going to create in Web front end server.
    • Application server- In this server we are going to install the sharepoint as farm and will install search server express for serving search functionality for our product
    • Web front end server- In this server we are going to add this server to Sharepoint farm which we have created in application server. Here we are going to create web applications and site collections for all the clients.
    In this scenario how to manage multiple versions of same wsp solution?
    Another major issue w.r.t the architecture of the product and new approach for client deployment as follow.We have CSS, jquery files for serving the functionality.These files have been mapped to 14 hive folder.If any changes we do one of the jquery file or
    css file which is meant for latest version and not for old version, then how to manage this new functionality for that particular css or jquery file in 14 hive folder, since there is only one 14 hive folder. What is the best practice to make this happen? Another
    thing is, how to manage dll files for individual client?

    It sounds like you have a farm scoped solution at work. In that case you can only have a single instance of it per farm, you'd have to branch each version so they appear to be seperate solutions entirely (thus ruining your clients upgrade process).
    Bluntly i don't think a single farm can manage all your user environments.

  • How to manage photos from multiple accounts

    Hi,
    i am trying to solve one problem. I have one iMAC where i have two user profiles connected to different AppleIDs. Next to it there are two iPhones and two iPads. I am trying to find out, how to manage photos from all these devices using one account on iMAC. Second question is if there is any finction in iPhoto that can publish images to NAS server? Second alternative for me is to byu iCloud drive space and use Family sharing for publishing photos. Bellow text schema is attached, it is only my idea and i dont know if this could work like this. Did anyone somehow solved this configuration? Thanks

    I can see the screenshot if I double click on it.  However, here is it again.  Being Halloween maybe it'll show.

  • My family put multiple devices on the icloud, and I need to know how to manage duplicate entries.  Specifically contacts.  If I fix the contact list on my pc will it push the info out to the other devices and maintain it correctly?

    My family put multiple devices on the icloud, and I need to know how to manage duplicate entries.  Specifically contacts.  If I fix the contact list on my pc will it push the info out to the other devices and maintain it correctly?

    All devices signed into the same iCloud account will finish up with the same contacts. Of course if prior to joining iCloud two family members each had an entry for Uncle Fred, then you will finish up with two contact cards for Uncle Fred, and so on. If you tidy this up on your computer then the changes will propagate to everyone else.

  • How to manage my daughter's new phone account

    We just got my 11 year old daughter her first phone (a Samsung S3 Mini). The salesman told us we would be able to use the "Family Base" to control/ turn-on-off her phone, text, web access and email and we would have full control there. Our main goal (as we explained) was to let her have the phone, texting, and gmail, but to turn off her web access (unless she was being supervised - at home). He told us we would definitely be able to keep GMail on, and separately control her web access.  Now that I am looking through the Family Base control center, I'm not really seeing all that.  I see you can manage phone and texting (which we've decided to let her have on), but I don't see management of web access, and I don't see exactly how to manage that separately from her ability to email.
    My second issue is... I would like to activate a "Find my Mobile" or "Find My Phone" type service (because I'm worried about her leaving her phone somewhere) but I'm wondering if this service requires that her phone have web access (and maybe location services on?) so that it can function.
    Surely there are other adults out there trying to manage their kids the same way I am. Can someone please give me some tips/ best practices or suggestions on how to manage all this?
    In addition to my concerns about managing her web usage (while maintaining email), what's the best "find my phone" that I should implement?
    Thank you in advance.

    A few things you can do here.
    1) The Verizon Rep Lied to you
    2) You can download Parental Control Apps from the Play Store that are password protected and work much better then Family Base. Look at those and dump Family Base
    3) Download Where's my Droid. It will do all of the find my phone options and much more. check it out
    4) You might also want to download something like Phone Tracker which will allow you to track the phone and its whereabouts near real-time so you can see where she is at all times. (Check local laws in your area first though to make sure you are legal doing this)

  • How to Manage Creative Cloud for Teams | Learn Creative Cloud | Adobe TV

    This is a short video about how to manage and administer Creative Cloud for teams using a new, intuitive web-based tool called the VIP Admin Console. The Admin Console allows IT administrators to add Creative Cloud seats, assign or re-assign these seats to team members, monitor storage allocation and more. This short video shows you how this is done.  
    http://adobe.ly/ZDWoCl

    Can I assign more than one seat to a user?
    In our studio we have 7 workstations - so far we just had 7 CSs in Volume Licensing. We have licenses assigned to machines rather than people - any of the artists can sit on an available machine and just start working.
    What is the equivalent for CC?
    Do I create a single Adobe ID for our studio and assign 7 seats to this user and then use it on all machines for installations, or do I have to create 7 Adobe IDs (one per workstation) and assign a single seat to each of them?

  • My iCloud storage is very nearly full but i can't find out how to manage it!

    I keep recieving an e-mail saying that my icloud backup is almost full but i have no idea how to manage this. I don't want to purchase more back up, is there a way of managing it?

    Welcome to the Apple Community.
    settings > iCloud > storage & backup > manage...

  • HOW TO MANAGER APPROVE LEAVE REQUEST AT A TIME MORE THEN TWO

    Hi Experts,
    This is Kalyan.I am working on ess/mss . How to manager approve four work items at a time .
    And how to add  Custom Fields in UWL .Can u please help me.
    Regards,
    Kalyan

    Hi Kalyan
      Suppose if multiple persons raise workflows like Leave, Travel, Claims, Loan every workflow is different. You cannot have single workflow and single work item. The work item comes to UWL for the approver. In the UWL you can customize the screen put a radio button in the screen such that only approve and reject button. So every wprk item can be just selected with approve and reject radio button on the UWL itself. Finaly update button will update the entier page with the approvals. But this is very very very difficult.
      Think logically Y the approver wants to do mass approval. Suppose the approver receives the leave work item without seeing the leave quota will he approve?. Similiarly for travel without seeing the expense amount will the approver approve the trip.
    UWL is for all the module like Travel, Leave, Claims, Loan etc. Every module the approval screen itslef different. So mass approval is not possible.
    If ESS is implemented only for Leave or Travel or Payroll then its possible. In that case customize the UWL with radio button and after mass approve or rejection finally need to update. But this is absolutly not advisable since every person the data are different.  So mass approval is not advisable.
    I think am logically correct?
    Regards
    vijay

Maybe you are looking for