IDSM-2 Configuration using VACL Capture

Hello Guys.
good Morning....
I need help and i have few questions for configuring my IDSM and also IPS Appliance.
As you know cisco 6500 does not support more than 2 session of SPAN, so this option i do not have to configure for IDSM. both these sessions already utilized and in use.
Now the option left is VACL Capture. Here are my questions.
1) We have Core Layer (VLAN Interfaces and STP Server) Swtiches, and we have Datacenter Switches which has this IDSM-2 installed and also IPS Appliance connected. now i want to configure VACL Capture for this IDSM-2. i tried to configure for my IPS Appliance the VACL Capture does not work. i am not receiving any traffic(packets)  on that capture port where IPS Appliance is configured/connected.
My questions is Do i have to apply this VACL Capture on the Core Layer where all the SVI's are ? or it will work on Datacenter Switche also where there is no SVI for that VLAN which i want to monitor?
2nd Question. if the requirement for VLAN Capture is to configure it on the SVI's switch how can i send this captured traffic to another switch where my IPS Appliance is connected.
Appreciate your help .
thanks.

Dear Altaf
By default the VACL will send traffic on the switch it is configured, to send it remotely you have to combine VACL and RSPAN. However this will again create issues with your 2 sessions limitation (if I understand your scenario correct).
Why don't you move to module to the switch where the traffic needs to be monitored? Btw, seems to be a strange design, if the SVIs are on the Core switch, then what is the purpose of the DC switch?
Regards
Farrukh

Similar Messages

  • Scanning/Printing Documents to PDF using Image Capture

    I am trying to scan a document (8.5 x 11) using image capture and then email it so that the recipient can read and print out an identical copy.  Even though I can successfully scan the document as a PDF using Image Capture, the document visually appears MUCH larger when the recipient receives and tries to print it.  The resulting printed copy shows only a fraction of the total text, but blown up.
    I have Image Capture configured as follows:
    Scan Mode:  Flat Bed
    Document:  Text
    Bit Depth:  1
    Resolution:  300
    Source Size:  8.50 x 11.00
    Scaling:  100%
    New Size:  8.50 x 11.00 ;  
    Format:  PDF
    When I view a document scanned using the above settings in Preview, it looks fine.  The only problem is when I view it in Print Preview and/or print it.  Again, it is "blown up".  Can someone tell me what I am doing wrong and how to fix it???  Thanks.

    Try with a resolution of 75 or 150.
    Also when printing there are options to "fit to 1 page". The recipient should do that.

  • This log in user does not have proper rights to use WebCenter Capture

    Hi experts,
    We have WCI 11.1.1.8.0 setup. It has WEC configured. However when I login with "weblogic" user. This is domain admin user. WEC allows user to login and shows top navigation bar. However in the body it shows below message
    "This log in user does not have proper rights to use WebCenter Capture"
    I am sure i have not gives a proper group/ role to this user. I am not sure which one is that.
    Regards,
    Vikrant Korde.

    Hi Vikrant,
    This happens if user is not in Capture Application Role.
    Check this:
    Log in to EM
    Right-click the capture_domain, select Security, and then Application Roles
    In the Application Stripe field, select capture, and then click the Search application roles icon to display the Capture application roles.
    In the Capture User add this weblogic.
    It will work now.

  • Why can I no longer import EDITED photo from my iPad to my Mac using Image Capture from Snapseed app?

    Why can I no longer import EDITED photo from my iPad to my Mac using Image Capture? This is farcical and a real problem having to email them individually to myself and is totally inefficient time wise compared to previously using image capture! Why change this when it was working well and very quickly until the latest change. Now I have to move files from downloads into an appropriate folder, after emailing each individual edited image to myself, then I have to open in Photoshop and rename the file. This is ludicrous and takes forever to do!

    Thank you! I suppected it would be in the settings somewhere. I' ve much to learn...get myself into trouble pushing buttons I don't really understand.

  • Use a capture device twice at the same time?

    I have write a application using JMF. But I have a big question that how can I use a capture device several times at the same time????
    For example:
    I create a player to play video from my webcam on my PC ,and then I want to send the video stream from my webcam to another PC at the same time. But I failed--only one task can work.
    For example:
    1, I write a class Player and another class RTPTransmit. Then I send the same medialocator to two of them. Then there will be a exception said that capture device is in use. And only one task can work.
    2, I write a class Player and another class RTPTransmit. Then I use :
    dataSource1 = Manager.createDataSource( locator );
    dataSource2 = Manager.createCloneableDataSource( dataSource1 );
    then I send dataSource1 to Player object to play video on local PC and send dataSource2 to RTPTransmit to send video to another PC. But only one task will work too.
    My question is that how can I use a capture device several times at the same time???
    I have tried several ways and sill can not find a method. If anyone know how to do,could you tell me please? Thank you very much.

    Yes ,I use Manager.createCloneableDataSource() method to create the clone of the datasource ,but it can not work too. The java doc illustration is :
    Creates a cloneable DataSource. The returned DataSource implements the SourceCloneable interface and enables the creation of clones by the createClone method.
    If the input DataSource implements SourceCloneable, it will be returned right away as the result. Otherwise, a "proxy" DataSource is created. It implements the SourceCloneable interface and can be used to generate other clones.
    When createCloneableDataSource is called on a DataSource, the returned DataSource should be used in place of the original DataSource. Any attempt to use the original DataSource may generate unpredictable results.
    It means that if I clone a datasoure from original datasource, then the createCloneableDataSource() method will return a datasuouce implements interface SourceCloneable, right ? I see that the intereface SourceCloneable has a abstract method createClone() , but when I use createCloneableDataSource() to get a source clone, I find that I can not use method createClone(), why??? For example: data1 is the
    orginal datasource. Then:
    DataSource data1 = Manager.createDateSource( locator );
    DataSource data2 = Manager.createCloneableDataSource( data1 );
    now data2 is the "proxy" datasource which implemnets the interface, right? But I can not use data2.cloneClone() ,why? Then I write the fllowing code:
    DataSource data3 = Mangaer.createCloneableDataSource( data2 );
    DataSource data4 = Manager.createCloneableDataSource( data2 );
    playOnLocalPc = new PlayOnLocalPc( data3 );
    playOnLocalPc.start();
    rtpTransmit = new RTPTransmit( data4 );
    rtpTransmit.start();
    PlayOnLocalPc and RTPTransmit is my own class to play or transmit video stream. But they can not work at the same time. If I play video from webcam on local PC and then start to transmit stream to other PC , the play window will become black. Why?????It is too strange. Dose anyone know the reason ,please tell me, thank you very much. Giving some example code will be better:) Thank you again!

  • Why is the scan size of our epson 15Mb for PDF using image capture?

    Hi All-
    This has been plaguing us since Snow Leopard when we lost the Epson Scanner tool from Epson to Image Capture scanning using our Epson 835 Artisan.
    PDF sizes are ridiculous using Image Capture. 
    For example, 3 pages of text using Image Capture =
         15Mb
    Using the same printer, same 3 pages and the builtin Epson Scanner (from the printer panel) and a USB stick =
         1.2Mb
    This has been happening since the SL upgrade (as mentioned) but I had hoped that Epson/Apple could get their act together on the Epson drivers for ML.  Seems not to be the case.  It is kind of a drag to have a Network available Scanner only to have the built in software be a bum steer.  Not only that, but no relief from Epson since their Scanner program (as bad as it was UI wise, but at least you got a mail-able document) has been discontinued...
    Any ideas?
    jp

    This doesn't answer the question but it is a workaround.
    How is the quality if you do this:
    Open the PDF in Apple Preview
    Choose File/Export
    In Export, choose PDF format with the Quartz Filter option "Reduce File Size"
    If it's ugly, there's a way to adjust the compression settings by using Apple ColorSync Utility to make a modified copy of the Reduce File Size filter with different settings. By playing with this I was able to start with a 7.1MB PDF scan from Image Capture, and export variations based on different Reduce File Size settings:
    5.3MB (JPEG Max) - looks great
    188KB (JPEG Min) - looks good as the 5.3 MB copy actually
    40K (Automatic) - too blurry to be usable
    If you were to perfect your own compression filter you could just export each PDF through Preview after scanning it, or presumably you could build some kind of drag-and-drop conversion utility in Automator although I don't know anything about Automator.
    It's a workaround because I could not determine a way to apply a Quartz filter from Image Capture itself when saving a PDF.

  • After using video capture device to copy VHS to DVD, burnt DVD will play on computer but not

    After using video capture device to copy VHS to DVD, burnt DVD will play on computer but not on DVD player. Tech support for the VCD said my HP DVD burning software has to burn "DVD Video and not DVD data" and to check with HP. How can i check myself.

    Grahamster, welcome to the forum.
    I recommend trying CDBurnerXP for burning video CD's.  I have been using it for years without a glitch.  I use it mainly for burning ISO's, but have used it for all types.  Please let us know if it works or not.
    Signature:
    HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
    HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
    HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
    HP Photosmart 7520 AIO
    ++++++++++++++++++
    **Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
    Intelligence is God given; Wisdom is the sum of our mistakes!
    I am not an HP employee.

  • I am importing videos from my canon sl1 to my macbook when i use iphoto is says "iPhoto cannot import your photos because there was a problem downloading an image." and when i use image capture it says "An error occured while importing. The item 'MVI_1040

    I am importing videos from my canon sl1 to my macbook air when i use iphoto is says "iPhoto cannot import your photos because there was a problem downloading an image." and when i use image capture it says "An error occured while importing. The item ‘MVI_1040'' Thanks in advance

    Can you access the images on the phone with Image Capture (in the Applications Folder) ?

  • How do scan strip negatives via my Epson 4990 scanner using Image Capture since upgrade to OS X Mavericks

    Hello Everyone. OK I upgraded to OS X Mavericks without thinking that by doing this would stop me using my Epson 4990 scanner as no driver / software currently available - OK my fault. Anyway as Epson have not yet provided an update (yet?), all advice being recieved is use "Image Capture" for the time being. I have tried this along with using the "Help" files but unfortunately dont seem to be be any assistance. In simples terms I just wish to scan film negative strips (and transparencies) but it dont seem to be possible. Could any member advised how to get solve this problem as I am in the middle of a major scanning exercise with the worst case senario that I wil have to revert to my Windows based laptop to carry on and temporary reduntant my iMac which defeats the point of the exercise. Thank you in advance (hopefully) 

    Replay I received from Epson today:-
    "In response to your email, we unfortunately do not have any update available for your model at present. We have no confirmed date for this but as far as we are aware this is likely to be in the next two weeks"

  • Using Image Capture to scan with Canon Pixma MX700

    I previously had trouble connecting my Canon Pixma MX700 to my MBP, but soon figured out that I needed a new high speed USB 2.0 cable, versus the old one I was trying to use it with. Doh!
    So now it prints without any trouble at all, and I know that all its features - printing, scanning, fax, copier, are supposed to be compatible with Leopard.
    However, I'm still having issues scanning. I Googled and found a comment somewhere that with this specific model, one has to use Image Capture for the scanning portion, instead of the Canon software.
    Great, so that explained the problem I was having trying to figure out how to GET it to communicate at all with the MBP (downloaded the latest scanner driver from Canon with no result).
    But it still will not scan with Image Capture. Communication is fine- the image is detected and I can see it perfectly in the Image Capture window, am able to change options, etc. Once I drag and select the image I want to scan and click the scan button, nothing happens. Or more specifically, the button will be click-able and for about two seconds it appears to be working (with the scan button substituted by a cancel button), but then the scan button will pop back up and nothing appears in the folder I specified the image to be saved to.
    Now I'm completely stumped. What am I doing wrong?
    Thanks!!!

    With my MacBook running Leopard, I had been able to successfully scan multiple images by pressing the MX7000 scan button and capturing the images with MP Navigator. The MX700 is networked over WiFi. Early on, I learned that it seemed to be more reliable to drive this process using the scan button, rather than trying to initiate the scan from the MP Navigator UI.
    However, recently things stopped working, and after the first image was scanned, subsequent scans would fail, with MP Navigator complaining about not being able to connect to the scanner. This sounds similar to the problem described in the original posting.
    I went to the Canon USA support site and downloaded /installed the latest versions of the MX700 scan driver (13.9.0) and MP Navigator (1.0.4), both available under the "Drivers and Downloads" section for the MX700 support page (be sure to select "Mac OS X" from the pull-down menu).
    http://www.usa.canon.com/consumer/controller?act=ModelInfoAct&tabact=SupportDeta ilTabAct&fcategoryid=238&modelid=15651#DownloadDetailAct
    The new updates seem to have solved the problem, and I can now scan multiple images one after the other. Again, I always initiate the scan from the button on the MX700, and always capture using MP Navigator, which has the really nice feature for creating and editing multi-page PDFs.
    Message was edited by: donbondio

  • Can I use Image Capture to take a picture using a Canon EOS 10D?

    Normally I use a card reader to download digital photos, but today I hooked my camera directly to my iMac. I then noticed the "Take Picture" button, so I tried to use it to take a picture with my Canon EOS 10D. Image Capture didn't refuse, it just showed the 'cogwheel' animated cursor and got stuck. What does this mean - is it that this particular camera won't work or that there is something wrong with the setup? I have other digital cameras, but I don't want to work all this out by experiment alone - how can I find out more about how this feature of IC works and what exactly is going on when I press "Take Picture"? There is absolutely no technical info in the Help files.

    The Help on Image Capture has the following:
    Many cameras let you take a picture using Image Capture when the camera is connected to your computer.
    To take a picture:
    Connect your camera and open Image Capture.
    Click Download Some.
    Click Take Picture.
    The camera snaps a picture, which then appears in the window.
    If you don’t see the Take Picture icon, choose View > Customize Toolbar, and drag the Take Picture icon to the toolbar.
    If the Take Picture icon is dimmed, your camera doesn’t support this feature.
    As the option is available to you, your camera supports +Tethered Shooting+. If it’s not working check your camera’s manual to see do you need this enabled on your camera.
    Regards
    TD

  • I have used Image Capture to scan images/documents and then saved them as either PDFs or PNG files.  For some reason, just this past week Image Capture will no longer save the file.  It scans, and the Scan Results window pops up, but it won't save file.

    I have used Image Capture to scan images/documents and then saved them as either PDFs or PNG files.  For some reason, just this past week, Image Capture will no longer save the file.  It scans, and the Scan Results window pops up, but it won't save file.
    The file name has no special character in it, just letters and no spaces.
    I have done this in the past and it has worked, but now it will not.
    I have not upgraded any software, that I am aware of.
    After scanning, the Image Capture pops up the Scan Results with the file name in the window, but neither the Scan Results nor the Image Capture window responds to inputs.  The Image Capture window is frozen, with only the "Overview" and "Cancel" buttons active (but non-responsive).
    Is this a software issue or a scanner hardware issue?  I am using a HP Photosmart C6200 series printer/scanner on a network using a Time Capsule airport.
    Thanks.

    I had the same problem.
    Got a 90% fix.  Apparently the Mavericks preferences won't work with Yosemite, so I just deleted the Image Capture preferences.
    Unfortunately, the "Scan to" folder seems to be permanently set to the Pictures folder.
    1.  Quit Image Capture
    2.  Go to Finder > Go > Home, which opens up your home folder (named after your user name)
    3.  Open Library > Preferences > com.apple.ImageCapture.plist - Drag this file to the Trash
    4.  Start "Image Capture", click "Details" and change all your settings as you prefer
    5.  Quit and restart "Image Capture".   Notice it remembers all your settings except "Scan to" folder.  It insists on saving to "Pictures".
    That's as far as I was successful.  I tried changing the "Scan to" folder to "Desktop", but on launch, Image Capture always sets it back to "Pictures".
    This is what I tried:
    6.  Download and install "Pref Setter" from http://www.nightproductions.net/prefsetter.html
    7.  Quit "Image Capture".  Right-click on "com.apple.ImageCapture.plist" and open with Pref Setter.
    8.  Search for "Pictures", which finds "~/Pictures" (the tilde character at the start means your home directory).
    9.  Double-click on "~/Pictures" and change it to the folder you prefer.  I like "~/Desktop"
    10. Choose File > Save then Quit from Pref Setter.  Note that re-opening the plist file still shows "~/Desktop"
    11. Start up "Image Capture" -- on startup, "Image Capture" sets "Scan to" folder to "Pictures"
    I consider this a bug.

  • Cant use tetherd capture with nikon d810 on lightroom 5.6 get camera not detected i check and my lightroom up to date

    need help
    what can I do
    I can't use tethered capture with Nikon d810 on light room 5.6 get camera not detected  my light room up to date
    any idea?
    thanks

    Wait.
    Lightroom does not support tethering on the D810 yet. 
    Tethered camera support in Lightroom

  • What setting or codec do I use for Capturing HDV 1080i HDV

    What setting or codec do I use for Capturing HDV 1080i HDV

    Not enough information. The settings you use depends on exactly what format you shot and what device you're using to capture.

  • Using Image Capture to download photos from iPhone--Date Sort

    Hi,
    I have over 2000 photos on my 3G iPhone and I use Image Capture on the Mac to pull them off.
    Since I have so many photos going back a couple years, the file names have repeated, so if I sort by File Name, stuff from last year is mixed in with this year, etc.
    Also, if I sort by date, Image Capture sorts by MONTH-DAY-YEAR, therefore my latest photos are NOT at the top/botttom of the list!
    How can I change the date format in Image Capture so that I can sort by YEAR first?
    Thanks!

    OK, here is my new strategy:
    A new feature of Snow Leopard OSX 10.6 is that Image Capture (and iPhoto) will put a green check mark next to any photos already downloaded. Therefore, it makes it much much easier to figure out the new from the old.
    In addition to that, I went into my iPhone using PhoneView and reset the images back to IMG_00001. This required me to get rid of my thousands of photos on the iPhone, but oh well.
    So starting over seemed to be the best way to manage this mess.
    -out

Maybe you are looking for

  • Problem with KT4V mainboard

    I have: AMD athlon 1900XP+, MSI KT4V (not raid), 256MB DDR (333MHz), BARRACUDA IV 80GB, GF440MX etc. OS: WindowsXP Profesionall When i plug second HDD (BARRACUDA IV 80GB) on secondary master and i want copy data with Primaty HDD to Secondary HDD my c

  • Can't type or play music and videos.

    I spilled water on my iPod, now every time when i'm typing it blocks after a few letters. I also can't play music and videos, when i pres play it just sets itself back on pause. Anyone has advice?

  • This message could not be delivered?

    I bought a .Mac account and it set up everyone on my computer automatically. When I open Mail and try to send mail I get an error message saying: This message could not be delivered and will remain in your Outbox until it can be delivered. The connec

  • To find purchasing organisation for material

    Hi Experts, Sounds quite a trivial query but i really could not find the way out to link material with purchasing organisation. Please note that we do not want to use Puchasing Info record tables. This is so because requirement itself says automating

  • Windows Server Active Directory services

    Hi, We have installed Windows server 2008 R2 as a primary domain controller. the domain controller "xxxxxxx" (2008R2 SP1) gets freeze intermittently and at the time of issue we are not able to ping and take RDP session of this server from any other s