RSPAN does not put IPv6 multicast traffic into port

Hi.
There is two switches in the equation:
WS-C2960-24TT-L    12.2(55)SE5           C2960-LANBASEK9-M
and stack of
Switch Ports Model              SW Version            SW Image
     1 12    WS-C3750G-12S      12.2(55)SE8           C3750-IPSERVICESK9-M
     2 12    WS-C3750G-12S      12.2(55)SE8           C3750-IPSERVICESK9-M
*    3 24    WS-C3750G-24T      12.2(55)SE8           C3750-IPSERVICESK9-M
3 is a master
There is VTP domain with pruning off and RSPAN VLAN 1001
core#sho vlan remote-span
Remote SPAN VLANs
1001
there is RSPAN session on first:
#sho monitor session 1
Session 1
Type                   : Remote Source Session
Source Ports           :
    Both               : Fa0/11
Dest RSPAN VLAN        : 1001
Port Fa0/11 is in access mode, VLAN 303
and on second:
core#sho monitor session 1
Session 1
Type                   : Remote Destination Session
Source RSPAN VLAN      : 1001
Destination Ports      : Gi3/0/2
    Encapsulation      : Native
          Ingress      : Disabled
Problem is that i can't see any IPv6 multicast traffic (like ICMPv6 RA or such) on Gi3/0/2 which is absolutely sure there, because if i remove monitoring session on core switch and put Gi3/0/2 into trunk mode, i can see packets i need in vlan 1001:
# tcpdump -s0 -nnvei eth1 vlan 1001 and ip6
tcpdump: WARNING: eth1: no IPv4 address assigned
tcpdump: listening on eth1, link-type EN10MB (Ethernet), capture size 65535 bytes
14:17:37.059045 50:57:a8:f0:72:1b > 33:33:ff:00:00:01, ethertype 802.1Q (0x8100), length 90: vlan 1001, p 0, ethertype IPv6, (class 0xe0, hlim 255, next-header ICMPv6 (58) payload length: 32) 2abc:abc:1:600b::2 > ff02::1:ff00:1: [icmp6 sum ok] ICMP6, neighbor solicitation, length 32, who has 2abc:abc:1:600b::1
          source link-address option (1), length 8 (1): 50:57:a8:f0:72:1b
14:17:38.083266 50:57:a8:f0:72:1b > 33:33:ff:00:00:01, ethertype 802.1Q (0x8100), length 90: vlan 1001, p 0, ethertype IPv6, (class 0xe0, hlim 255, next-header ICMPv6 (58) payload length: 32) 2abc:abc:1:600b::2 > ff02::1:ff00:1: [icmp6 sum ok] ICMP6, neighbor solicitation, length 32, who has 2abc:abc:1:600b::1
          source link-address option (1), length 8 (1): 50:57:a8:f0:72:1b
14:17:39.107068 50:57:a8:f0:72:1b > 33:33:ff:00:00:01, ethertype 802.1Q (0x8100), length 90: vlan 1001, p 0, ethertype IPv6, (class 0xe0, hlim 255, next-header ICMPv6 (58) payload length: 32) 2abc:abc:1:600b::2 > ff02::1:ff00:1: [icmp6 sum ok] ICMP6, neighbor solicitation, length 32, who has 2abc:abc:1:600b::1
          source link-address option (1), length 8 (1): 50:57:a8:f0:72:1b
There is no such problem with usual unicast and broadcast traffic.
Any suggestions?

Interestingly, i've found bug CSCsr64007 which i stubmbled upon on one of my switches during troubleshooting. The effect of this bug was that RSPAN took IPv6 multicast packets from unrelated VLANs and forwarded them into monitor port.
Looks like they have "fixed" it filtering IPv6 multicast completely.

Similar Messages

  • How come F10 does not put my clip into the timeline ?

    How come F10 does not put my clip into the timeline ?
    When I pressed F10, the sound icon appears instead.
    Am I missing out something ?
    Thanks

    skalicki` wrote:
    Technically, to make the function keys work you don't need to change the second box to dash. I don't know why I gave that advice, but it isn't necessary. I guess I said that simply because that's what I have it set to.
    The reason there are two boxes is so that you can set Exposé to using both the function keys and the mouse. For example, if I have +All Windows+ set to F9 and Secondary Mouse Button, then it will show all open windows if I click F9 or right-click. That is why you actually don't need to have the second boxes for any of these set to dashes. You could set them to your mouse buttons, or if you wanted you could set the first box of any of these to any function key, as long as it isn't set to the same one as the key you want to use for your shortcuts within FCE.
    I hope this made sense, I realize that I might not have explained it very clearly.
    Message was edited by: skalicki`
    Thanks skalicki, I think I got it. You've been of great help !!

  • Why does Discoverer put my custom function into GROUP BY

    To make things clear with simple example:
    I have 10 id's from people (people.id) and sum function on their salary [sum(people.salary)] during a period of time that i set in my parameters.
    The sql looks something like this:
    SELECT PEOPLE.ID
    ,SUM(PEOPLE.SALARY)
    FROM FRS_PEOPLE
    WHERE [MY CONDITIONS]
    GROUP BY PEOPLE.ID
    I registered a function that uses people.id, and some other parameters to calculate something for each people.id!
    I made a calculation:
    MY_FUNCTION(people.id,'xxx','yyy')
    ,so my sql looks like this now:
    SELECT PEOPLE.ID
    ,SUM(PEOPLE.SALARY)
    ,MY_FUNCTION(people.id,':xxx',':yyy')
    FROM FRS_PEOPLE
    WHERE [MY CONDITIONS]
    GROUP BY PEOPLE.ID,MY_FUNCTION(people.id,':xxx',':yyy')
    It runs but never finishes....?!
    When i run my sql in sqlplus i do not put my function into group by, but discoverer does so, despite it already has people.id item in GROUP BY!
    And if i put instead of people.id an actual id it works correctly and does not put my function into group by!
    The sql i am looking for and works correctly is:
    SELECT PEOPLE.ID
    ,SUM(PEOPLE.SALARY)
    ,MY_FUNCTION(people.id,'xxx','yyy')
    FROM FRS_PEOPLE
    WHERE [MY CONDITIONS]
    GROUP BY PEOPLE.ID
    Please someone help!
    My select clause is much more complicated, with many outer joins so i made the above up just to explain to you what my problem is!
    I hope i made my self clear!
    Help would be very appreciated.

    Hi,
    I think there is a problem with your function. That fact that the report completes when an actual id is used must not when a people.id is used suggests that it works when the function is called once with an actual id but not when it is called many times with a people.id.
    If the function is doing complex lookups and calculations to obtain a salary for each people.id then often this type of report will run quicker with the salary calculation is brought into the report SQL using joins etc.
    Tracing the Discoverer session running the report will show you all the SQL processed by the database and the execution plans used. It will show you how often the function is being called and what SQL is being run by the function.
    Rod West

  • Before removing iPhoto (latest update crashed the app), I accidently removed it from my purchased Apps from the App Store. I accept iPhoto when I search for it, but does not put it back in my list. How do I get this back so that I can reinstall iPhoto?

    Before removing iPhoto (latest update crashed the app), I accidently removed it from my purchased Apps from the App Store. I accept iPhoto when I search for it, but does not put it back in my list. How do I get this back so that I can reinstall iPhoto?
    Thank you.

    I found the answer just after posted this.  Thanks to a user named CloudWalker.  Solution is to go in AppStore, View Account under "Store" Menu and unhide any purchases.

  • I am trying to export a Numbers spreadsheet to a csv file, but it does not put the commas in

    I am trying to export a Numbers spreadsheet to a csv file, but it does not put the commas in.  I want to use it with an HTML table generator tool, but the tool is looking for commas.   The Export to CSV exports it as a spreadsheet with all the formatting removed, and no commas.
    Here is the html table tool:
    http://www.textfixer.com/html/csv-convert-table.php

    Numbers '09 create CSV files with comma separated values if and only if your system is using decimal period.
    If the system is using decimal comma, the CSV files are created using semi-colon as separator.
    Yvan KOENIG (VALLAURIS, France)  dimanche 11 décembre 2011 11:11:25
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • 10.9.4 Mail activity shows incoming mail downloading but does not put in mailbox

    Been testing all day with no results.
    The hosting company says there is no problem at there end. All mail can be found the their webMail.
    iMac Mail connection doctors show all good connections.
    Mail activity shows incoming mail downloading but does not put in mailbox, they simply disappear.
    Still searching for a fix for this serious issue. 
    Any ideas or a proven solution is most welcome.
    -Thanks in Advance -

    Try rebuilding the mailbox. This can take awhile if you have a lot of mail.
    Rebuild mailbox
    and/or
    Try re-indexing the mailboxes. This can take awhile if you have a lot of mail.
    Reindex messages

  • Why DDL during SELECT is possible. Or why SELECT does not put a table lock?

    This is a question to people who really knows Oracle internals or/and RDB theory.
    (The question is relocated from another thread for not hijacking on that's original question.)
    Why DDL during SELECT is possible? Or why SELECT does not put TM 2 Row Shared lock on table(s)?
    This not locking causes a possibility while one session is running a long select, another can truncate and even drop table(s) that are being read by the first session.
    I think, humbly assume, that Oracle does not put TM 2 lock on tables, that are being simply SELECTed, by some significant technical reason. But I do not know this reason. If somebody knows please shed a light.
    Also, if you know that this behavior is totally correct from perspective of RDB theory, please explain me.
    I'll try to explain my point.
    It is a matter of data consistency and integrity that is supported in Oracle everywhere except this place.
    a) If one session is reading data from moment T and other session changes data on its way at moment T1, the first session wont read that changed data, it will read the data that was there on moment T.
    This is declared as Read Consistency principle.
    b) If one session is changing data, and another session tries to truncate or drop table - the second session will fail with error ORA-00054: resource busy and acquire with NOWAIT specified.
    This is declared as Data Integrity principle.
    c) But why not to follow the above principles in case when one session reads data and another session tries to truncate or drop table (or do other DDL operations)?
    It is counter-intuitive. Why not to put TM 2 (SS) lock during SELECT execution that would prevent DDLs on this table?
    What I only can assume is that this is only because some technical difficulty or limitation.
    What is this limitation or other reason in favor of which Oracle sacrificed consistency in this case?

    user11181920 wrote:
    Aman,
    There was no need to clarify how DML lock works, I know that.
    Also I know that in Oracle a Select does not lock neither table rows nor table itself.
    The reason I mentioned it because you brought up the word change which is far better suited for DML's than DDL's as the former has a requirement to have its Undo preserved.
    Again, my question was why Select does not protect itself by locking table(s), partitions and indexes?Protect from what? There is nothing wrong with doing a select. What would happen with a select doing a lock on the table before being executed in its entirety (forget DDL and DML altogether for a moment) ? State one good reason that there should be a lock for the select. If it has to, it would be always isn't it?
    The keyword here is concurrency and that's what is the best when the number of locks obtained are lesser at non-required operations. A select doesn't change anything that's why in Oracle, there is no read-level lock.I am not saying about row locks while reading. They are not needed because Undo resolves concurrency.Only in the case of DML where the change is still active and the buffers are dirty. With a DDL, its an implicit commit.
    I am asking why Select does not enqueue one, only one lock per object that participates in the Select?Again, my question back to you is, what good you would get from it? What purpose it would solve?
    It is not very expensive, I suppose. But it would protect from DDLs that can destroy the Select's result set. You have seen in your system and in my demo(and that's what the the question was on the other thread also) that the result remains intact and its not a behavior from now. Its the same since the time I have started learning Oracle. Can you explain that why you think that the result of select statement would be wrong for a drop table? I believe, its been stated repeatedly that if the select has no requirement to look back the table, it would get completed. Only if the select needs to access the table again, it would fail. So even if we consider your explanation, there is no wrong result shown at all. Once the session encounters that the table is dropped for the statement, the execution stops right away. So where is the destroyed result?
    Yes, it is less dangerous when Select does not lock table comparing with what would happen with DMLs in such case (that is why DMLs protect themselves by TM 3), it affects only the Select and its consumer, but still ... I don't understand this Oracle's decision. What is a reasoning behind it?.As I said, to improve concurrency.
    Aman....

  • HT1296 I cannot sync with my music on itune to iphone. I checked the songs, or the play list, start sync, but it does not put them on the iphone. Some of the songs are from CDs

    I cannot sync with my music on itune to iphone. I checked the songs, or the play lists, start sync, but it does not put them on the iphone. Some of the songs are from CDs

    Hi Mike,
    I have Iphones since they cam out buy IO7 on my iphone 4 is slow and frustrating. I sync itunes with sync window. I tried cable and wireless. I have enough space. If I have a playlist say with 200 songs it will say on itunes sync window syncing 200 songs however I only get 150 songs on my iphone. I have restored iphone twice, I have tried playlists and smart play lists. It seems not to sync the same songs all the time. Prior to IO7 in sinced all my songs. I see on the chats that this is a big problem. Do you have any solutions. the songs that dont sync are the same format as those that do.
    Alx

  • Apple USB keyboard does not work with one internal usb port

    Hi everyone,
    hope someone can help me to solve my problem. I have a MPB13 retina late 2013 since something like 3 months. I have additional screen (dell), usb wired keyboard (apple) and BT magic mouse.
    Since a few days, my usb keyboard does not work well. It only want to work properly when plugged to the rights side usb port internal port and not anymore on the left one. It also work on a usb external concentrator. Before, I had no problem, it worked perfectly. There was no problem such as cofee on it...
    After searching the web on such problem, I tries a few things such as:
    I tried the keyboard on another computer (windows): works fine
    I tried usb stick and external DVD reading on the left internal usb ports: works fine
    I switch the MPB off and turn it back on: the usb keyboard still does not work on the left usb port
    I tried the SMC and PRAM reset : nothing
    Any idea ??
    Thanks
    Guillaume

    I'm facing the same problem, found any solutions ?

  • Configuring the time capsule airport wlan function as "connect to wlan", the time caspule gets a correct IP adress from the other wlans IP range, but does not assign this to the ethernet ports. With Airport Express it worked!

    Configuring the time capsule airport wlan function as "connect to wlan", the time capsule gets a correct IP adress from the other wlans IP range, but does not assign this to the ethernet ports. With Airport express it worked, the single Ethernet port got the IP Parameters passed through!
    My setup is a Vodafon Esaybox connected to ISP. Time Capsule is not able to extend the wlan of the easybox, neither airport express can do.
    Only the option "connect to wlan" is succesful.
    With airport express I was able to connect my Sony Bravia TV to the lan via ethernet to stream pictures, the TV set got an IP adress from the easybox.
    With the time capsule the easybox dosn't find devices connected to the ethernet ports to submit IP adresses. The TV set get another IP adress (169.xxx.x.x.) in subnet mask 255.255.0.0 and I don not now where from.
    My notebook is a MacBook pro.
    Any idea????
    Thank a lot in advance!
    Kind regards
    Ingo

    Neverthe less, could there be the chance, that this feature could be implemnented with an firmware update?
    That would appear to be a question for Apple to answer. You can make suggestions to Apple here:
    Apple - AirPort Extreme - Feedback
    If the AirPort Extreme and Time Capsule are configured to "extend a wireless network" they will provide additional wireless coverage....and...the Ethernet ports are enabled in this type of setup.
    The "catch" here is that you must have an Apple router providing the network to be extended.

  • Sometimes clicking on an object in the drop-down box of the search does not put that into the search box.

    when putting an inquiry into the search box, the drop-down gives suggestions. Sometimes when selecting a suggestion, it does not appear in the search box. Reboot of computer fixes the problem. reboot of the browser does not.

    Do you have that problem when running in the Firefox SafeMode? <br />
    [http://support.mozilla.com/en-US/kb/Safe+Mode] <br />
    ''Don't select anything right now, just use "Continue in SafeMode."''
    If not, see this: <br />
    [http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes]

  • HT1751 Hi I followed the istructions to copy/move iTunes music to a new PC, can see albums listed in Library, but SYNCH does not put any music on iPod. It took me three weeks to import my CDs into iTunes and i DON'T want to do it again! Can anyone help ?

    Hi I followed instructions to copy/move iTunes music to a new PC. I can see albums listed in the library but SYNCH will not put any music on my new iPod.
    It took three weeks to import my CDs on the old PC and I don't want to do it again!
    Can anyone help ?

    Take a look here; it should help:
    iTunes for Mac: How to copy purchases between authorized computers
    Though it refers to items purchased from the iTunes Store, it applies to all your iTunes content. And if you happen to also own an iPod:
    How to use your iPod to move your music to a new computer
    Once you have the tracks on some removable medium, you can mount that on your new computer and then just drag the content to the iTunes window. Make sure that the option to "copy files to iTunes Music folder when adding to library" is set in the iTunes -> Advanced -> General preferences before you do. Alternatively, you can use the Add To Library command and select each track (or folder of tracks).
    If you won't be using that Windows system once you move the content, don't forget to deauthorize the system from your iTunes Store account before you dispose of the computer.
    Regards.
    Message was edited by: Dave Sawyer

  • Quicktime does not convert my .MOV file into a watchable format on Quicktime

    Hi guys!
    I won't give you all a long sob story but basically, I went to my first music festival over the weekend and uploaded my videos onto my friends computer, I then uploaded these videos (i took with my iPhone) to Google Drive. When i got back onto my own computer, I download the .MOV files from Google Drive, these videos would not convert into a watchable format. It gives me the message -
    "QuickTime Player can't open "IMG_8788.MOV". To see if additional software is available that will enable QuickTime Player to open the movie, click Tell Me More."
    It says that Quicktime should support MOV files. I am using version 10.3 Quicktime player with iOS Mavericks. I really want help with this issue as I will be devastated if these videos are lost. My friend obviously deleted them off his computer because they did take up alot of space!

    I won't give you all a long sob story but basically, I went to my first music festival over the weekend and uploaded my videos onto my friends computer, I then uploaded these videos (i took with my iPhone) to Google Drive. When i got back onto my own computer, I download the .MOV files from Google Drive, these videos would not convert into a watchable format. It gives me the message -
    "QuickTime Player can't open "IMG_8788.MOV". To see if additional software is available that will enable QuickTime Player to open the movie, click Tell Me More."
    It says that Quicktime should support MOV files. I am using version 10.3 Quicktime player with iOS Mavericks. I really want help with this issue as I will be devastated if these videos are lost. My friend obviously deleted them off his computer because they did take up alot of space!
    iPhone recorded files should already be compatible QT X v10.3 (and QL) as is in the MOV file container. However, the process of downloading, uploading, and again downloading the files may have created some sort of issue causing QT X to not properly "recognize" the content and thus, wants you to check for additional support.
    In any case, will the files open in any other media players? (E.g., VLC, MPlayerX, NicePlayer, QT 7, MPEG Streamclip, etc.) For instance, if the files open in QT 7 Pro, MPEG Streamclip, or VLC, you may be able to copy the data to a new MOV file container which QT X will open and play. (I.e., this procedure does not recompress the data and is reasonable quick. Also not sure if using the "Command-D" Finder option to "duplicate" the file will create a "readable" file or not but you might try it.)

  • After upgrading to IOS 5.0.1 my music and movies are gone - I have only one song.  Sync does not put my media back

    I upgraded my Iphone4 to IOS 5.0.1 when plugged into my fully-patched OS X Lion-version Mac.  I  no longer have any movies and only one song on my phone.  Itunes says I have all of my movies and music, but my phone does not show it.  I do have my books (but not audiobooks)

    I made a work around.  Set my phone to not sync music and movies in itunes.  Sync phone.  Set my phone to sync music and movies in itunes.  Sync phone.
    It is very time consuming though.
    And, what else is set incorrectly somewhere and I do not know it?  There was also a very weird glitch - where "Albums" is listed in when running the music app in IOS5 (5.0.1), it instead had had the name of the one song!  That is now also fixed.

  • Iphone 4s data will not work + does not show up when plugged into macbook.

    I need to try to reset my iphone because it is not allowing me to use data on the phone even though my carrier had verified all the settings are correct and that I have unlimited data on my plan. Every time I try to access the internet on the phone without wifi connected I get an error message saying "could not activate cellular data network" or "you are not subscribed to a cellular data network."
    However, when I plug my iphone 4s into my macbook pro it is recognized and shown in itunes, however I cannot download photos (iphoto shows an error message saying "no camera found") and the phone does not show up on my desktop or finder. I find alot of people have a problem with the iphone not showing up AT ALL, but mine works in itunes, just nowhere else on my computer.
    I have tried to use icloud to back it up, but when I log onto icloud with my macbook to see what data is there and try to access my photos, only my contacts and a few other apps I dont need show up. No photos at all.

    If there's an Apple store nearby make an appointment with the genius bar to have it checked.  Be sure to sync it and back it up, as well as import your photos and videos to your computer and back up your contacts separately (such as by sync them with iCloud) in case it needs to be replaced.

Maybe you are looking for

  • Dunning procedure and interest calculation

    Hi All, usually in dunning procedure, the interest is calculated on over due items based on the period from Last Dunning date to run date. If the customer is never dunned before and this MDAT is never populated, how will the program generally calcula

  • Maintenance view does not bring the default language in the Text table

    Hi Experts, I am creating a maintenance view with the join of two tables TAB1 has following fields MANDT CATEGORY TAB2 (is the text table for TAB1) has the following fields MANDT LANGU CATEGORY DESCRIPTION I have created the maintenance view with MAN

  • Bootcamp:Windows 7 ` = \ problem

    So, the problem I am having is that is many programs when I press the key that has a "`" on it i get the proper char "`" but others I get "\" I have my language settings set to "English(United States) - United States-International(Apple)" in almost a

  • EBS Reconciliation of Standard Chartered Bank Account

    Hi All, Anyone here who has configured Electronic Bank Statement to reconcile bank account's statement of which the provider is Standard Chartered Bank? Actually I'm doing such configuration but facing some difficulty while configuring SCB account. T

  • Help with case suggestion

    I need the searching power of the Apple Community, for my efforts have produced few results! I was a blackberry user (the 8310 Curve) and I really liked the case I had. Leather case, magnetic strap, swivel clip and I was able to pull the phone out wh