How do I make the following work with Cisco 302-08G ??

I would like to sniff (using wireshark) all traffic in my home. I have a 4-port Cisco wireless/wired router that allows for a guest account. I also have Cisco SF302-08 that I bought so I could use its port/vlan mirroring capability. How should I configure the network, given the aforementioned equipment,  so that I can get a single point sniff.
 Assume I have two wireless clients, one using the "regular" wireless SSID, and the other using the "guest" SSID.  I can see 192.168.1.x (regular SSID) and 192.168.169.x (guest ssid)  on the internet side of the wireless router. So far so good. But, I would like to use 302-08 to actually allow the guest SSID/network communicate with the regular SSID/network. For example, if I ping 192.168.169.x from 192.168.1.x, I would like to see a response. Can I make them communicate properly with the 302-08 ?? if so, what do I need to do ?? (I will also have wired clients tied into the 302-08..so its important that it be the central sniffer point)
thanks

Hi. Welcome to Cisco Home Community.
You may also visit the Cisco forums at https://supportforums.cisco.com/
if you have inquiries on advanced network setup involving the Cisco 302-08G switch.

Similar Messages

  • I have Win 7 saved (installation file) in My MacBook Pro Licence version. How can i install it on MacBook Pro. After installation how can i make it to work with Parallel desktop or VMware fusion software.

    I have Win 7 saved (installation file) in My MacBook Pro Licence version. How can i install it on MacBook Pro. After installation how can i make it to work with Parallel desktop or VMware fusion software. I can buy these softwares.

    http://www.simplehelp.net/2009/02/02/how-to-install-windows-7-in-os-x-using-para llels-desktop-a-complete-walkthrough/
    http://blogs.parallels.com/consumertech/2011/10/24/install-windows-right-from-wi thin-parallels-desktop-7-guest.html

  • How Can I make the following query faster

    Hi Guru
    I want your valuable suggestion to make the following query faster.I did not write all required columns list. I gave here all those columns where I have conditon like decode,case when,or subquery
    (SELECT CASE WHEN REPORTED_BY IS NULL THEN
              (SELECT INITCAP(EMP_NAME) FROM HR_EMP WHERE EMP_NO = M.EMP_NO_RADIO)
         ELSE (SELECT INITCAP(EMP_NAME) FROM HR_EMP WHERE EMP_NO = M.REPORTED_BY) END RADIOLOGIST_NAME,
         (SELECT TEAM_NAME FROM DC_TECHTEAMMST WHERE TEAM_NO = M.GROUP_NO) GROUP_NAME,
         CASE WHEN M.RESULT_ENTRY_LOCK_BY IS NOT NULL THEN 'R'
    WHEN M.REPORT_DONE = 'D' THEN 'D'
    WHEN M.REPORT_DONE = 'P' THEN 'P'
    WHEN M.REPORT_DONE = 'F' THEN 'F'
         WHEN NVL(M.IMG_CAPTURED,'X') NOT IN ('B','Y') OR M.QA_RESULT = 'F' THEN 'S'
    WHEN NVL(M.IMG_CAPTURED,'X') IN ('B','Y') AND NVL(M.QA_RESULT,'X') NOT IN ('B','P') THEN 'Q'
         wHEN NVL(M.IMG_CAPTURED,'X') IN ('B','Y') AND NVL(M.QA_RESULT,'X') IN ('B','P') THEN 'C'
    END STATUS,
         (SELECT DECODE(NVL(V.DELIVERY_STATUS,'N'),'E',3,'U',2,1)
              FROM FN_VOUCHERCHD V WHERE V.VOUCHER_NO = M.VOUCHER_NO AND V.ITEM_NO = M.TEST_NO) DELIVERY_STATUS,
         trunc((start_time-order_end)*24,0)||' hr'||':'||
         decode(length(trunc(to_char(MOD((M.start_time-M.order_end)*24,1)*60),0)),2,to_char(trunc(to_char(MOD((M.start_time-M.order_end)*24,1)*60),0))
              ,1,to_char('0'||trunc(to_char(MOD((M.start_time-M.order_end)*24,1)*60),0)))||' mi' duration_order_capture,
         DECODE(R.CONFIDENTIAL_PATIENT,'Y','*',NVL(R.NAME,R.name_lang_name||' '||R.name_lang_fname)) PAT_NAME,
         FNC_PATIENTAGE(R.REG_NO,'',R.CONFIDENTIAL_PATIENT) pat_age,
         DECODE(R.CONFIDENTIAL_PATIENT,'Y','*',R.PATIENT_SEX) PAT_SEX
    FROM DC_MODALITYAPPOINTMENT M,DC_TESTMST T,OP_REGISTRATION R
    WHERE M.ACCESSION_NO IS NOT NULL AND NVL(M.CANCEL_FLAG,'N') = 'N'
    AND (NVL(T.SP_GEN,'S') = 'S' OR NVL(M.DOC_REQ_GEN,'N') = 'Y')
    AND M.TEST_NO IS NOT NULL AND M.TEST_NO = T.TEST_NO AND M.REG_NO = R.REG_NO)
    How can I make the above query faster.
    Query condition or indexing whatever is preferable please guide me.
    The approximate data of tables
    DC_MODALITYAPPOINTMENT 2,000,000
    A lot of updating is going on some columns of this table.all columns are not in the select list, Insertion is happend in batch process by back-end trigger of another table.
    Primary key based one column,
    OP_REGISTRATION 500,000
    Daily insertion on this table around 500 records,updation is not much.
    Primary key based one column 'reg_no'
    DC_TESTMST
    Total records of this table not more than 1500.This is setup table. Insertion and updation is not much on this table also
    I have to create a view based on this query .
    and I have to create another view to serve another purpose.
    In the 2nd view I need this query as well as I need another query by using union all operator based on a table(dc_oldresult)
    which have 1,600,000 records.There is no DML on this table
    SELECT      NVL((SELECT USER_DEFINE_TEST_NO FROM DC_TESTMST WHERE TEST_NO = SV_ID AND ROWNUM = 1 ),SV_ID) USER_D_EXAM_NO,
    (SELECT TEST_TYPE FROM DC_TESTMST WHERE TEST_NO = SV_ID AND ROWNUM = 1 ) EXAM_TYPE,
         NVL((SELECT TEST_NAME FROM DC_TESTMST WHERE TEST_NO = SV_ID AND ROWNUM = 1),'Exam Code: '||sv_id) EXAM_NAME,
         (SELECT PAT_NAME FROM OP_REGISTRATION WHERE REG_NO = HN) PATIENT_NAME,
         (SELECT PAT_AGE FROM OP_REGISTRATION WHERE REG_NO = HN) PATIENT_AGE,
         (SELECT PAT_SEX FROM OP_REGISTRATION WHERE REG_NO = HN) PATIENT_GENDER
    FROM DC_OLDRESULT
    WHERE HN IS NOT NULL AND SV_ID IS NOT NULL AND UPPER(ACTIVE) = 'TRUE'
    Should I make join DC_OLDRESULT, OP_REGISTRATION and DC_TESTMST? or The eixisting subquery is better?
    I use OP_REGISTRATION and DC_TESTMST in both query
    Thanks in advance
    Mokarem

    When your query takes too long ...

  • Hi Team, I wuold like to know if you have any app to make Firefox OS working with cisco Call Manager 10.5. Something like Cisco Jabber for Android or iOS.

    I'm interesting on buying a Firefox Smart Phone, but
    I would like to know if are any app to install on Firefox OS smart phone in order to work with cisco call manager 10.5.
    Something like Cisco Jabber for Android o iOS.
    Thanks,

    Hi Itech,
    If Cisco Jabber has a webapp, or mobile version of their website available, you should technically be able to access it through Firefox OS.
    You may also search Firefox Marketplace for an alternative solution:
    * [https://marketplace.firefox.com/]
    - Ralph

  • Mac pro / Laserjet 4 / Os 10.6 - how do I make the printer work?

    Hi,
    I have a 2008 Mac Pro running 10.6.8 and an ancient yet still thriving HP Laserjet 4 that I was  using over an ethernet/Jetdirect connection with my G5 for years - how do I get them to talk to each other?
    I'm running the printer connection through a router, but the Mac Pro has 2 ethernet ports so I guess I can plug the printer in directly if that's simpler.  The IP of the printer is 192.168.5.40 and I've tried setting it up with the "Add a printer" dialogue but can't get it to work.
    I've read through a lot of posts and looked at a lot of Websites but I can't find step by step instructions for getting the computer to see the printer.  I have Gutenprint drivers installed if that helps.
    And - just to keep the discussiion concise:
    - I know that there are better newer printers that I could buy for cheap, but that isn't going to happen right now.
    - I know that 10.6 isn't the most recent OS
    I'm hopipng for truly step-by-step instructions that even I can understand.
    Thanks!

    So maybe it's a problem with the printer's IP?
    Yes. As far as your network is concerned, the printer is just not there.
    You will not be able to progress until you assign it an IP address accessible to your LAN. Apparently it needs to be 192.168.1.x (a 1 in the place that is now a 5), where x = a large enough number that is not likely for router to assign to other equipment.
    Your challenge is to assign the printer that IP address. Let's use the address 192.168.1.150.
    HP's support pages for that printer and its Jetdirect card say, rather unhelpfully:
    Using the front panel of printer
    The IP address may also be changed using the front panel of the HP Jetdirect device. This method of front panel configuration varies greatly depending on the model of HP printer that is being used (consult the User's Guide for the front panel instructions for a particular printer). Click here to go to the HP Web site. Use the Search and search for Front Control Panel TCP/IP Configuration .
    I did that and it didn't really get me anywhere, since there seem to be few if any references to the non- "MP" or "V" etc. variants of the original LaserJet 4. So, try to find a setting in the printer's front panel that bears any resemblance to "network settings" or "IP address".
    If you are able to navigate its front panel to a place where you can enter the IP address 192.168.1.150 be sure to press GO or ENTER or ONLINE or whatever you think might make the setting "stick" after you enter those digits. Print the same test page you did before, and ensure its IP address has really been changed. Then, then try the ping command again, with its new IP address:
    ping 192.168.1.150
    If you are unable to determine a way to use the printer's front panel to change its IP address, you should be able to use Terminal to set it. This will get a bit cumbersome so use it only if you are unable to change the printer's IP address some other way:
    Terminal is a program in your Mac's Utilities folder.
    Locate Terminal and open it. At the command prompt, type the following exactly as written (copy and paste the following to avoid errors):
    sudo arp -s 192.168.1.150 00:60:b0:91:21:e7
    ... and press Return. You will get a warning of impending disaster should you make a mistake, and requesting your Mac's Administrator password to proceed. Type your password (which will not appear as you type it) and press Return. Unless something went wrong the command prompt should immediately reappear as if nothing happened.
    Next try the ping command again:
    ping 192.168.1.150
    You should receive ping responses from the printer as in my earlier example.
    If you do, then congratulations because you have made it all the way to Step 1
    You still have to add the printer in System Preferences > Print & Fax, using this new IP address, and make sure the Gutenprint driver works.
    Edit: The reason your printer works with your old G5 running Tiger is that it is using AppleTalk for communication. AppleTalk doesn't exist in Snow Leopard. This is the reason you must use IP for communication on your Mac Pro. Your old G5 should continue to work with the printer as it always has.
    another Edit: HP's support page alleges that the Terminal command arp above will only work with JetDirect firmware versions x.08.03 and later only. Yours appears to be A.05.05, so the front panel option may be all there is. If that does not work I have one more idea but it's an even bigger pain.

  • How can I make the links work when the site is published.

    I am a new iWeb user and have built the website www.realmoroccotours.com and am having a few problems that I hope someone can help me with.
    First - in Iweb everything works fine but when it is published the links in the top and bottom menu do not work. If I clic on the link before the page is fully loaded it odes work. My host gave me the following information but I have no idea what it means or how to fix it. I have rebuilt the whole site but still the same thing happens.
    +> One of your javascript files that you have installed in the header of the main+
    +> page is blocking the screen with transparent image preventing links from+
    +> clicking. Please remove conflicting javascript and reload that page again.+
    Secondly, the site loads very slowly - although not all the time. Any suggestions on how to make it faster loading would be appreciated.

    All it means is that the image is blocking the navigation menu/overlapping - all you need to do is move it out of the way and the menu should work. Do a view all in iWeb and you can then see what is overlapping and what you need to move.
    You could also build your own nav menu if you like so that your site will be found more easily - javascript, which the iWeb menu is, is not always found that easily. You don't need to re-build the whole site - just the nav menu.
    If you want to speed up your site, then you could try using Web Crusher or iWeb Maestro to speed it up - you need to do this post publishing though, so publish to a local folder and then run it through either of these to get rid of the bloated code that iWeb creates and then upload your site.

  • How do I make adobe bridge work with canon rebel t2i camera?

    I have photo shop cs3 and never had a problem with Bridge before. Now I purchased a new canon rebel t2i and it will not recognize adobe bridge.  Anyone know how I can make this work?

    I am biased against e-mail for three reasons:
    1. All too frequently the message sent is blank and the one posting never knows.
    Not so frequently anymore
    2.  Any edits to a post never get reposted, so those using e-mail are "in the dark".
    Yes, but then again, one should read first what was written before sending it to the world (and sometimes it can be pretty to be in the dark...)
    3.  They do not get the advantage of scrolling up and down the responses to see what others said, reviewing what was said that did not work, or seeing what was not suggested.
    That is solved by hitting the links in the email to visit the forum or thread. Mail is just faster and the times I have to look at the history are far less to normal posts. I do find it more confusing with the general forums and I'm clueless where the moved discussions come from, like this thread that seems to be answered and is about an old version and a problem that has been discussed many times before.
    Guess old fashoned, but don't see any advantage to having my e-mail clogged with dozens of posts each day.  I follow 4 forums.
    Don't know what email you are using, I do have Apple mail but used to work with Entourage (the MS Outlook version for Mac) but both do have the option to create rules. I created a folder for each forum or other source that moves the mail automatically to the folders for the particular forums. Also have the option for Smart folders that creates a copy from predefined sources and puts it in those folders for better overview and searching...

  • How can I make Mail to work with hotmail?

    How can I make Mail to sync and work with hotmail, since hotmail is my primary mail provider, I have mail set up to work with g mail but the hotmail account is the one I use the most.

    You have to have a premium Hotmail account to allow for POP3, like Gmail has for free.

  • How can I make the thesaurus work for spanish words?

    I have been using pages for about 4 months now, and usually I use it in english. I am currently writing a document in spanish but I can't manage to make the thesaurus, dictionary and wikipedia work for spanish words. I really need this to find synonyms.
    Any idea what do I need to do? I don't want to change the whole pages into spanish, nor I want the spanish spell check (I know how to do that), I only need the thesaurus.

    Dear me, doesn't Español work?

  • I'm trying to open a folder found in a department drive that i have full access to via a link on a website but nothing happens. How do I make the link work?

    The link connects to my G drive and it should open up a folder for me to store things on my hard drive. This works on IE although I usually use firefox at home so I changed my browser at work. Can you tell me how to make these links work so that i can use a website online that will connect to my offline folders?
    Would appreciate it very much.

    Please update to Firefox 20.0.1 immediately, before continuing using the Internet. Firefox 3.6 is no longer supported and has critical security flaws.

  • How do I make the button reset with Flash actionscript?

    Hello, I recently made a flash banner that changes frames when you click the next frame and last frame buttons, and it also goes to the next frame on a timer. The thing is, I need the timer to go back to it's starting point when you click one of the buttons, so you don't end up seeing a frame for 2 seconds. Initially, the timer starts at 7 seconds, and when you click a button, I'd like it to go back to 7 seconds. Here's my .FLA file:
    http://uppit.com/v/5761GXW6
    Also, whenever the banner goes through all of the frames and comes back to the first frame with the buttons, the first frame next_btn stops working for some reason. Thanks if you can solve this.
    So yea, if anyone could tell me where to put what actionscript code, or just do it and reupload it for me, I'd appreciate it a lot. Thank you. =)

    K so here's the code for the timer:
    var secTimer:Timer = new Timer(1000, 7);
    startTimer();
    //secTimer.addEventListener(TimerEvent.TIMER, tik);
    secTimer.addEventListener(TimerEvent.TIMER_COMPLETE, skipFrameT);
    //next_btn.addEventListener(MouseEvent.CLICK, resetTimer);
    //prev_btn.addEventListener(MouseEvent.CLICK, resetTimer);
    /*function tik(e:TimerEvent):void
    trace ("tik");
    function startTimer ():void
    secTimer.start();
    //trace ("timer Started");
    function skipFrameT (e:TimerEvent):void
    //trace ("time stoped");
    resetTimer();
    play();
    startTimer();
    function resetTimer()
    secTimer.reset();
    //trace("Timer Reseted");
    That spans across that one layer for every frame. I tried adding the following into every button frame on the buttons layer:
    secTimer.reset();
    secTimer.start();
    Now, what happens is the frames never stop. It just continues to go. I need the timer to go back to 7 seconds. Thanks =)

  • How do I make the pages larger with firefox? I like to use this but text is was to small. So I always go back to internet explorer. HELP

    I don't have any tool space on the top of the page. only home and favorites google too. I also don't have to bottom where I can press to get to my programs. I do like firefox. But the text is way to small. How do I fix these things?

    Make sure that you do not run Firefox in full screen mode (press F11 or Fn + F11 to toggle; Mac: Command+Shift+F).
    *https://support.mozilla.org/kb/how-to-use-full-screen
    If you are in full screen mode then hover the mouse to the top to make the Navigation Toolbar and Tab bar appear.
    Click the Maximize button (top right corner of the Navigation Toolbar) to leave full screen mode or right-click empty space on a toolbar and choose "Exit Full Screen Mode" or press the F11 key.
    You can use an extension to set a default font size and page zoom on web pages.
    *Default FullZoom Level: https://addons.mozilla.org/firefox/addon/default-fullzoom-level/
    *NoSquint: https://addons.mozilla.org/firefox/addon/nosquint/
    *http://kb.mozillazine.org/Zoom_text_of_web_pages

  • How can I make pdf to work with Mac OS 10?

    All I get is code. Trying to transfer bank statements. It worked with Rev9. No luck with 10 Any work around?

    sandydarcy wrote:
    Jeff
    I hope you can work magic. I have tried to use: Adobe Acrobat 11.0.03, Adobe Reader 9.2.0, Adobe Reader 10.0.03. Use Safari 6.0.5 with Apple OSX 10.2.4 I try and get my bank statements from US Bank and all I can download or look at is some kind of code. Looks like source code. My wife OSX 10.2.4 works with Adobe Reader 9.2.0 on her new iMac desktop.
    Thank you for your help and/or anyone out there that has an idea.
    Number of things...
    There IS NO WAY that a NEW iMac, which is a Intel Mac, is running OS 10.2.4, which is a PowerPC Operating system. OS 10.2.4 was OBSOLETE in  April 2003. The final update for OS 10.2 was 10.2.8 http://support.apple.com/kb/DL1194.
    Version
    Build
    Date
    OS name
    Notes
    10.2
    6C115, 6C115a
    August 24, 2002
    Darwin 6.0
    Original retail release
    10.2.1
    6D52
    September 18, 2002
    Darwin 6.1
    About the Mac OS X 10.2.1 Update, codename Jaguar Red
    10.2.2
    6F21
    November 11, 2002
    Darwin 6.2
    About the Mac OS X 10.2.2 Update, codename Jaguar Blue or Merlot
    10.2.3
    6G30
    December 19, 2002
    Darwin 6.3
    About the Mac OS X 10.2.3 Update, codename Jaguar Green
    6G37
    Updated retail release
    6G50
    Server edition; retail release
    10.2.4
    6I32
    February 13, 2003
    Darwin 6.4
    About the Mac OS X 10.2.4 Update, codename Jaguar Pink
    10.2.5
    6L29
    April 10, 2003
    Darwin 6.5
    About the Mac OS X 10.2.5 Update, codename Jaguar Plaid
    10.2.6
    6L60
    May 6, 2003
    Darwin 6.6
    About the Mac OS X 10.2.6 Update, codename Jaguar Black
    10.2.7
    6R65
    September 22, 2003
    Darwin 6.7
    Removed from distribution due to defects
    10.2.8
    6R73
    October 3, 2003
    Darwin 6.8
    About the Mac OS X 10.2.8 Update; released as 6R50 for one day
    6S90
    About the Mac OS X 10.2.8 (G5) Update
    Also, the HIGHEST version of Safari that will run with OS 10.2.4 is Safari 1.0.3
    Operating system
    Operating system version
    Latest Safari version
    Support
    Mac OS X
    Mac OS X v10.2 "Jaguar"
    1.0.3 (August 13, 2004)
    2003–2005
    Mac OS X v10.3 "Panther"
    1.3.2[1] (January 11, 2006)
    2003–2007
    Mac OS X v10.4 "Tiger"
    4.1.3[2] (November 18, 2010)
    2005–2010
    Mac OS X v10.5 "Leopard"
    5.0.6[3] (July 20, 2011)
    2007–2011
    Mac OS X v10.6 "Snow Leopard"
    5.1.9[4] (April 16, 2013)
    Since 2009
    Mac OS X v10.7 "Lion"
    6.0.5[5] (June 5, 2013)
    Since 2011
    OS X v10.8 "Mountain Lion"
    Since 2012
    Microsoft Windows
    Windows 2000
    3.0.3 Beta (July 31,2007)
    2007
    Windows XP
    5.1.7[6] (May 9, 2012)
    2007-2012
    Windows Vista
    Windows 7
    2009–2012
    Windows 8
    2012
    I'd recommend using Firefox to download your bank statements and Mac Preview to open them if you're actually using OS 10.2.4

  • How can i make the valueChangeListener works for all item under foreach?

    Hi,
    My jspx file have the following content:
    <af:forEach items="#{pageFlowScope.directiveStep.paraItems}"
                                                       var="item">
                                              <af:panelLabelAndMessage label="#{item.name}"
                                                                       id="plam2"
                                                                       for="soc1">
                                                 <af:panelGroupLayout id="pgl2"
                                                                      layout="horizontal">
                                                    <af:selectOneChoice id="soc1"
                                                                        value="#{item.howValue}"
                                                                        required="true"
                                                                        valueChangeListener="#{pageFlowScope.directiveStep.howToSetDirectivePropValueChange}"
                                                                        autoSubmit="true">
                                                       <f:selectItem value="Set Value}"
                                                                      id="si1"/>
                                                      <f:selectItem value="Choose a Value"
                                                                      id="si1"/>
                                                    </af:selectOneChoice>
                                                    <af:switcher facetName="#{item.selectWay}"
                                                                 id="switch1">
                                                       <f:facet name="true">
                                                          <af:selectOneChoice id="soc2"
                                                                              required="true"
                                                                              value="#{item.value}">
                                                             <f:selectItems value="#{pageFlowScope.directiveStep.procVarItems}"
                                                                            id="si2"/>
                                                          </af:selectOneChoice>
                                                       </f:facet>
                                                       <f:facet name="false">
                                                          <af:inputText id="it1"
                                                                        required="true"
                                                                        value="#{item.value}"/>
                                                       </f:facet>
                                                    </af:switcher>
                                                 </af:panelGroupLayout>
                                              </af:panelLabelAndMessage>
                                           </af:forEach>
    The ui is like:
    label name     |    selectOneChoice : 'Set Value' or 'Choose a Value'   |        inputText (if it is 'Set Value') / selectOneChoice (if it is 'Choose a Value')
    The weird thing is when i click the selectOneChoice of the two or later row, the ValueChangeListener will be invoked, it indeed change the value  of 'selectWay' correctly. But the UI will not update. If later i do the same thing to the first row, all other rows in UI will update corrently.
    Any suggestions? Very appreciated for any repiles.
    Thanks.

    Hi,
    on problem I spot is that all your components created by the forEach loop have the same ID value. I suggest you change the ID to e.g. id="soc_#{item.index}" for zhe select one choices. In addition, I don't see where you refresh components after the change
    Frank

  • Everytime I try to open a creative cloud product, the program closes. I need to use both illustrator and indesign for school and I was wondering if anyone had any advice on how to actually make the program work?

    If anyone has any advice on how to make creative cloud programs work please let me know!
    Any help is appreciated.

    These questions below may be for a different product... but the KIND of information you need to supply is the same, for the products you use
    More information needed for someone to help... please click below and provide the requested information
    -Premiere Pro Video Editing Information FAQ http://forums.adobe.com/message/4200840

Maybe you are looking for