Link between Cisco C4506-E & C2950 is down when speed & duplex is NOT Auto

Hi All
I have C2950 running with 12.1(22)EA13 having uplinks connected to C4506-E (1) & C4506-E (2) 15.0(2)SG.
Speed and duplex are default settings [Speed is auto & duplex is full]. Link between C4506E(1) Gi2/35 <<-->> C2950 Gi 0/1 is negotiated to Speed 1000 & Duplex full. Whereas other link C4506E(2) Gi 2/35 <<-->> C2950 Gi 0/2 is negotiated to Speed 100 & Duplex full.
I tried to configure link C4506E(2) Gi 2/35 <<-->> C2950 Gi 0/2 manual negotiation with speed 1000 & duplex full on both the end interfaces and found link is down.
Why one uplink negotiation happened to be 100 when other is negotiated to 1000 ?
Is there any bug identified with the current running IOS.?
Need help is fixing the problem.
Thanks in advance.

I have configured MST with two instances and planned that C4506E(1) should be root for MST 10 and C4506E(2) is root for MST 11.
Due to this problem, i see that  STP for C2950 Gi 0/2 is in blocking state
XXXX-XXXX#sh spanning-tree root
                                        Root Hello Max Fwd
MST Instance           Root ID          Cost  Time Age Dly  Root Port
MST00            24576 8843.e1bd.6a00      0    2   20  15  Gi0/1               
MST10            24586 8843.e1bd.6a00  20000    2   20  15  Gi0/1               
MST11            24587 8843.e1bd.6940  22000    2   20  15  Gi0/1
Reason:
XXXX-XXXX#sh int gi 0/1 | i dupl
  Full-duplex, 1000Mb/s, media type is RJ45
XXXX-XXXX#sh int gi 0/2 | i dupl
  Full-duplex, 100Mb/s, media type is RJ45
Actual my requirement is -
XXXX-XXXX#sh spanning-tree root
                                        Root Hello Max Fwd
MST Instance           Root ID          Cost  Time Age Dly  Root Port
MST00            24576 8843.e1bd.6a00      0    2   20  15  Gi0/1               
MST10            24586 8843.e1bd.6a00  20000    2   20  15  Gi0/1               
MST11            24587 8843.e1bd.6940  22000    2   20  15  Gi0/2

Similar Messages

  • Link between Financial Statement Item and Break-Down-Category

    Dear all,
    we try to create an own data entry functionality in SAPNetweaver for our BCS Data.
    Therefore we need to implement a coding vor a validation (IP-coding). Do you know in which table we get the link between the financial statement item and the break-down category?
    The customizing phath is
    TA UCWB > Master Data > Items > Item (select item) > Field Breakdown Category (field name: ITGRP).
    We need the tecnical link (table/structure) so that we can create a validation based on the financial statement and the breakdown category).
    Thanks!
    XmchX

    The tables themselves are generated objects that are structured based on how you've defined your master data (custom attributes, etc). 
    You can probably find them through table UGMD2011 and entering the fieldname of your FS Item (I think the delivered item is /1FB/CS_ITEM).
    The following snippet is from a function module I wrote to check movement type restrictions (min/max selection set) might be useful.  I've previously created a custom task for posting custom documents (that could not be defined with standard reclassifications or IU eliminations). 
    I've never worked with the portal, but presumably you can create an RFC interface and replicate the selections which normally come from the cons monitor (Cons Area, GC, FYV, Period, Year, Cons Chart, + and additional fields fixed in the cons area) on a portal page and inherit them that way.  I actually thought about creating an Excel workbook that would send postings directly into BCS...just never got the time, and it was never a "requirement" as the volume of manually entries has been pretty low (or, at least always planned to be low)
      CONSTANTS:
      c_area            TYPE uc_area      VALUE 'US',              " Consolidation Area
      c_chart           type uc_value     value 'US',              " Chart of Accounts
      c_item_fieldname  TYPE uc_fieldname VALUE '/1FB/CS_ITEM',    " FS Item Fieldname
      c_chart_fieldname TYPE uc_fieldname VALUE '/1FB/CS_CHART',   " Chart of Accounts Fieldname
      c_mt_fieldname    TYPE uc_fieldname VALUE '/1FB/MOVE_TYPE'.  " Movement Type Fieldname
      TYPES:
    " Item attributes required from BCS databasis
      BEGIN OF s_item,
        /1fb/cs_chart TYPE /bi0/oics_chart,
        /1fb/cs_item TYPE /bi0/oics_item,
        txtmi TYPE uc_txtmi,
        itgrp TYPE uc_itgrp,
        itgrp_max_set TYPE  uc_itgrp_max_set,
      END OF s_item,
      t_item TYPE HASHED TABLE OF s_item WITH UNIQUE KEY /1fb/cs_chart /bic/bcs_litem,
    " Breakdown Category attributes required from BCS databasis
      BEGIN OF s_itgrp,
        itgrp TYPE uc_itgrp,
        selid_max TYPE uc_selid,
        txtmi TYPE uc_txtmi,
      END OF s_itgrp,
      t_itgrp TYPE HASHED TABLE OF s_itgrp WITH UNIQUE KEY itgrp,
    " Movement Type and Description
      BEGIN OF s_mt_txt,
        move_type TYPE /bi0/oimove_type,
        txtsh TYPE uc_txtsh,
      END OF s_mt_txt,
      t_mt_txt TYPE HASHED TABLE OF s_mt_txt WITH UNIQUE KEY move_type.
      DATA:
    " BCS Interfaces
      do_factory        TYPE REF TO if_ug_md_factory,
      do_char           TYPE REF TO if_ug_md_char,
      do_value          TYPE REF TO if_ug_md_char_value,
      do_area           TYPE REF TO if_uc_area,
      do_model          TYPE REF TO if_uc_model,
      do_context        TYPE REF TO if_uc_context,
      do_char_itgrp     TYPE REF TO if_ug_md_char,
      lt_field_val      TYPE ugmd_ts_field_val,
      ls_field_val      TYPE ugmd_s_field_val,
      lt_value          TYPE uc0_ts_value,
      ls_value          TYPE uc0_s_value,
      lt_itgrp          TYPE t_itgrp,
      ls_itgrp          TYPE s_itgrp,
    " Lookup tables
      lt_sel            TYPE ugmd_ts_sel,
      ls_sel            TYPE ugmd_s_sel,
      lt_fieldname      TYPE ugmd_ts_fieldname,
      ls_fieldname      TYPE fieldname,
      ls_item           TYPE s_item,
      ls_item2          TYPE s_item,
      lt_item           TYPE t_item,
      lt_mt_txt         TYPE t_mt_txt,
      ls_mt_txt         TYPE s_mt_txt,
      l_tabname         TYPE tabname,
      l_itgrp           TYPE uc_itgrp,
    " Output tables
      lt_lookup_bdc     TYPE STANDARD TABLE OF zsbcs_movement_type_lookup_bdc,
      lt_lookup         TYPE STANDARD TABLE OF zsbcs_movement_type_lookup,
      ls_lookup_bdc     TYPE zsbcs_movement_type_lookup_bdc,
      ls_lookup         TYPE zsbcs_movement_type_lookup.
    " Initialize BCS interfaces
      IF do_area IS INITIAL.
        CALL METHOD cl_uc_area=>if_uc_area~get_area_instance
          EXPORTING
            i_area  = c_area
          IMPORTING
            eo_area = do_area.
      ENDIF.
      IF do_model IS INITIAL.
        CALL METHOD do_area->get_model
          IMPORTING
            eo_model = do_model.
      ENDIF.
      IF do_factory IS NOT BOUND.
        CALL METHOD cl_uc_area=>if_uc_area~get_md_factory
          EXPORTING
            i_area        = c_area
          IMPORTING
            eo_md_factory = do_factory.
      ENDIF.
    " Create reference to FS Item characteristic
      do_char = do_factory->get_char_instance(
          i_fieldname = c_item_fieldname ).
    " Define restrictions on FS Item for reading values
    " Always filter on chart of accounts
      ls_sel-fieldname = c_chart_fieldname.
      ls_sel-sign      = uc00_cs_ra-sign_i.
      ls_sel-option    = uc00_cs_ra-option_eq.
      ls_sel-low       = c_chart.
      INSERT ls_sel INTO TABLE lt_sel.
    " filter on FS Item if provided as input parameter
      IF NOT i_item IS INITIAL.
        ls_sel-fieldname = c_item_fieldname.
        ls_sel-sign      = uc00_cs_ra-sign_i.
        ls_sel-option    = uc00_cs_ra-option_eq.
        ls_sel-low       = i_item.
        INSERT ls_sel INTO TABLE lt_sel.
      ENDIF.
    " Get FS Item values
      CALL METHOD do_char->read_value
        EXPORTING
          it_sel   = lt_sel
        IMPORTING
          et_value = lt_item.
    " Exit if invalid item was passed as parameter
      if lines( lt_item ) = 0.
        raise no_data.
      endif.
    " Additional logic for next finding ITGRP details, etc.........
    Would recommend debugging these two methods to get an idea of what BCS is doing:
    cl_uc_tx_data_change->if_uc_tx_data_change~analyze_and_add_data
    cl_uc_tx_data_change->save_data
    Anyway, hope that helps.  It took me a lot of debugging to figure out exactly which objects were being used by the posting process, getting the refresh right (delete/reverse existing documents based on special version customizing), etc.  I wouldn't recommend slamming them into the cube and ODS directly with a RSDRI_CUBE_WRITE_PACKAGE or anything...
    - Chris

  • Why does my iTunes window freeze and wont close until i shut my computer down, when the "iTunes is not the default media player" message appears? and how do i fix this? i just want to fix my music, but it freezes and i can't use my computer correctly.

    when i plug my iPod into my computer, iTunes opens as normal, but for a while it's been giving me a message that says "iTunes is not the default media player" and after i 'tried' to do that, i'll close the settings window and my iTunes window will freeze and not close, reload, or anything. and if i "open drvice to view files" that window will freeze too, the internal storage window. i can't get iTunes to close with ALT+F4, or right clicking the tab on the bottom of the screen to close it, or clicking the 'X' button. the only way it closes is when i shut down my computer. please help me fix this. Its getting Really Really tiring having to restart my computer over and over.

    What Windows version?

  • Macbook slow and shuts down when battery indicator is not empty

    Hi everyone,
    I have a 17'' macbook pro bought mid June 2007.
    Three weeks ago I noticed that my macbook pro would shut down at 20% battery (if I was not plugged) and would not start back until I plugged it in. I figured it was a battery problem. However, my macbook started getting really slow with the little 'volleyball' icon appearing more and more often without having to use lots of different of programs in parallel.
    Also last week I realized that now my macbook pro shuts down automatically at 67% battery! I checked the little button behind the battery and when this happens it shows to me 3 out 5 light indicator. So I'm guessing that the battery is not dead and yet my computer shuts down.
    I resetted my SMC (I think that's what it's called) and repaired my disk... I have not reformatted it though.
    Can someone help me out? Is the fact that my mac is slow related to its shutting down prematurely?
    For info: my battery is 2y old and has 360 cycles.
    Thanks a lot in advance for your help!
    Cheers
    aqualover

    Good on resetting SMC.
    You should properly calibrate your battery:
    http://docs.info.apple.com/article.html?artnum=86284
    If that doesn't fix the problem, contact AppleCare about a replacement. Battery warranties were extended to 2 years and maybe you still have a warranty:
    http://www.apple.com/support/macbook_macbookpro/batteryupdate/
    Hope this helps...

  • Audio will slow down with speed change, but not speed up

    I'm using FCP 6.0.6 and am trying to adjust the speed of an audio clip and some odd things are happening.
    If I change the speed of a clip to, say, 130%, the clip shortens appropriately, but the audio don't change. It just crops it off. And in the speed dialog box, the drop down menu is grayed out and Constant Speed is chosen.
    If I choose to slow down the clip, to say 75%, everything seems to work. The audio is slowed, the clip lengthens, but then I can't change it to anything else. It says slow regardless of any adjustments in the speed dialog box. I have to go back through "Undo"s to get it to change.
    Am I doing something wrong? I read some questions about this with people using FCP 7 and that seems like how mine should be working.
    Thanks in advance,
    Mark

    Well, it is an .AIFF file converted from .WAV in Quicktime. It is 187.5 megs and has a datarate of 344.5 k/sec. It is stereo at 44.1K and has a 32-bit Floating point.
    That help? I actually just was able to do the time compression in Soundtrack Pro. But I'm sure I've done it in the past directly in FCP.

  • Why does iTunes shut down when playing music but not using computer, why does iTunes shut down when playing music but not using computer

    Hi Everybody
    When I use my macbook pro running lion 10.7.2 to play music through itunes it shuts down after about 2 minutes, is there anything I can set to keep the itunes open and playing when  not in use, this problem only started when I updated from snow loepard to lion.
    Thanks

    Hi Limnos
    I have tried that but it makes no difference at all, the only way I have found to get continues sound is to open and set a keynote presentation onto play and dimmed the screen using the function key and adjusting it manually so as not to kicker my screen, there must be an easier way than this.
    Thanks for trying

  • Network ce0 interface goes down when reboots  or does not come up

    Hi,
    Have a V440 and on reboot the main ip ce0 is not up. I have to manually go in and ifconfig 192.168.1.3 up
    My hostname.ce0
    192.168.1.3
    # wc /etc/hostname.ce0
    2 1 13 /etc/hostname.ce0
    # ifconfig -a
    lo0: flags=2001000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL> mtu 8232 index 1
    inet 127.0.0.1 netmask ff000000
    ce0: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.3 netmask ffffff00 broadcast 192.168.1.255
    ether 0:3:ba:d5:ba:2b
    ce0:1: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.76 netmask ffffff00 broadcast 192.168.1.255
    ce0:4: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.72 netmask ffffff00 broadcast 192.168.1.255
    ce0:5: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.66 netmask ffffff00 broadcast 192.168.1.255
    ce0:6: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.47 netmask ffffff00 broadcast 192.168.1.255
    ce0:7: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.42 netmask ffffff00 broadcast 192.168.1.255
    ce0:8: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.69 netmask ffffff00 broadcast 192.168.1.255
    ce0:9: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.88 netmask ffffff00 broadcast 192.168.1.255
    ce0:10: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.45 netmask ffffff00 broadcast 192.168.1.255
    ce0:11: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.90 netmask ffffff00 broadcast 192.168.1.255
    ce0:12: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.98 netmask ffffff00 broadcast 192.168.1.255
    ce0:13: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.73 netmask ffffff00 broadcast 192.168.1.255
    ce0:14: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.87 netmask ffffff00 broadcast 192.168.1.255
    ce0:15: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.48 netmask ffffff00 broadcast 192.168.1.255
    ce0:16: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.103 netmask ffffff00 broadcast 192.168.1.255
    ce0:17: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.44 netmask ffffff00 broadcast 192.168.1.255
    ce0:18: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.78 netmask ffffff00 broadcast 192.168.1.255
    ce0:19: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.46 netmask ffffff00 broadcast 192.168.1.255
    ce0:21: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.56 netmask ffffff00 broadcast 192.168.1.255
    ce0:22: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.77 netmask ffffff00 broadcast 192.168.1.255
    ce0:23: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.80 netmask ffffff00 broadcast 192.168.1.255
    ce0:24: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.83 netmask ffffff00 broadcast 192.168.1.255
    ce0:25: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.84 netmask ffffff00 broadcast 192.168.1.255
    ce0:26: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.67 netmask ffffff00 broadcast 192.168.1.255
    ce0:28: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.41 netmask ffffff00 broadcast 192.168.1.255
    ce0:29: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.64 netmask ffffff00 broadcast 192.168.1.255
    ce0:30: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.57 netmask ffffff00 broadcast 192.168.1.255
    ce0:31: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.71 netmask ffffff00 broadcast 192.168.1.255
    ce0:32: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.86 netmask ffffff00 broadcast 192.168.1.255
    ce0:33: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.59 netmask ffffff00 broadcast 192.168.1.255
    ce0:34: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.65 netmask ffffff00 broadcast 192.168.1.255
    ce0:35: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.104 netmask ffffff00 broadcast 192.168.1.255
    ce0:36: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.97 netmask ffffff00 broadcast 192.168.1.255
    ce0:37: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.70 netmask ffffff00 broadcast 192.168.1.255
    ce0:38: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.74 netmask ffffff00 broadcast 192.168.1.255
    ce0:39: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.79 netmask ffffff00 broadcast 192.168.1.255
    ce0:41: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.68 netmask ffffff00 broadcast 192.168.1.255
    ce0:42: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.43 netmask ffffff00 broadcast 192.168.1.255
    ce0:43: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.85 netmask ffffff00 broadcast 192.168.1.255
    ce0:44: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.105 netmask ffffff00 broadcast 192.168.1.255
    ce0:45: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.60 netmask ffffff00 broadcast 192.168.1.255
    ce0:46: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.82 netmask ffffff00 broadcast 192.168.1.255
    ce0:47: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.96 netmask ffffff00 broadcast 192.168.1.255
    ce0:48: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.94 netmask ffffff00 broadcast 192.168.1.255
    ce0:49: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.81 netmask ffffff00 broadcast 192.168.1.255
    ce0:50: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.106 netmask ffffff00 broadcast 192.168.1.255
    ce0:51: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.53 netmask ffffff00 broadcast 192.168.1.255
    ce0:52: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.91 netmask ffffff00 broadcast 192.168.1.255
    ce0:53: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.49 netmask ffffff00 broadcast 192.168.1.255
    ce0:54: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.63 netmask ffffff00 broadcast 192.168.1.255
    ce0:55: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.102 netmask ffffff00 broadcast 192.168.1.255
    ce0:56: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.62 netmask ffffff00 broadcast 192.168.1.255
    ce0:57: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.107 netmask ffffff00 broadcast 192.168.1.255
    ce0:58: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.130 netmask ffffff00 broadcast 192.168.1.255
    ce0:59: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.131 netmask ffffff00 broadcast 192.168.1.255
    ce0:60: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.132 netmask ffffff00 broadcast 192.168.1.255
    ce0:61: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.134 netmask ffffff00 broadcast 192.168.1.255
    ce0:62: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.135 netmask ffffff00 broadcast 192.168.1.255
    ce0:63: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.136 netmask ffffff00 broadcast 192.168.1.255
    ce0:64: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.138 netmask ffffff00 broadcast 192.168.1.255
    ce0:65: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.139 netmask ffffff00 broadcast 192.168.1.255
    ce0:66: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.140 netmask ffffff00 broadcast 192.168.1.255
    ce0:67: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.141 netmask ffffff00 broadcast 192.168.1.255
    ce0:68: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.142 netmask ffffff00 broadcast 192.168.1.255
    ce0:69: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.143 netmask ffffff00 broadcast 192.168.1.255
    ce0:70: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.145 netmask ffffff00 broadcast 192.168.1.255
    ce0:71: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.146 netmask ffffff00 broadcast 192.168.1.255
    ce0:72: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.147 netmask ffffff00 broadcast 192.168.1.255
    ce0:73: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.151 netmask ffffff00 broadcast 192.168.1.255
    ce0:74: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.152 netmask ffffff00 broadcast 192.168.1.255
    ce0:75: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.153 netmask ffffff00 broadcast 192.168.1.255
    ce0:76: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.154 netmask ffffff00 broadcast 192.168.1.255
    ce0:77: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.155 netmask ffffff00 broadcast 192.168.1.255
    ce0:78: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.156 netmask ffffff00 broadcast 192.168.1.255
    ce0:79: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.157 netmask ffffff00 broadcast 192.168.1.255
    ce0:80: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.158 netmask ffffff00 broadcast 192.168.1.255
    ce0:81: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.189 netmask ffffff00 broadcast 192.168.1.255
    ce0:82: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.211 netmask ffffff00 broadcast 192.168.1.255
    ce0:83: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.212 netmask ffffff00 broadcast 192.168.1.255
    ce0:84: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.213 netmask ffffff00 broadcast 192.168.1.255
    ce0:85: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.214 netmask ffffff00 broadcast 192.168.1.255
    ce0:86: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.215 netmask ffffff00 broadcast 192.168.1.255
    ce0:87: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.216 netmask ffffff00 broadcast 192.168.1.255
    ce0:88: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.217 netmask ffffff00 broadcast 192.168.1.255
    ce0:89: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.218 netmask ffffff00 broadcast 192.168.1.255
    ce0:90: flags=201000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4,CoS> mtu 1500 index 2
    inet 192.168.1.219 netmask ffffff00 broadcast 192.168.1.255
    lo0: flags=2002000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv6,VIRTUAL> mtu 8252 index 1
    inet6 ::1/128
    Any help would be great!
    Thanks
    Marc

    msglobal3 wrote:
    Hi,
    Have a V440 and on reboot the main ip ce0 is not up. I have to manually go in and ifconfig 192.168.1.3 up
    My hostname.ce0
    192.168.1.3
    # wc /etc/hostname.ce0
    2 1 13 /etc/hostname.ce0The 'wc' output shows that you have a blank line in the file.
    Remove that line (so that 'wc' reports only 1 line present) and the interface will be brought up at boot time.
    Darren

  • Allowable path loss between Cisco XENPAK-10GB-LR & HP BLc 10Gb

    Greetings All!
    How much attenuation loss should be allowed (upper & lower range) for 10Gb link between Cisco XENPAK-10GB-LR & HP BLc 10Gb?
    Thanks.
    Regards,

    Well the Cisco XENPAK 10GB-LR is spec'd for spans up to 10 km.
    Per its data sheet, the transmit power ranges from +0.5 dBm max down to -8.2 dBm min. Receive levels must be no greater than +0.5 dBm and no less than -14.4 dBm.
    The HP BLc 10GB (assuming it is the LR type transceiver) does not have any such detailed specification that I could find.
    I'd estimate worst case planing would would be the difference of the minimum Cisco Tx and the least allowable Rx power = 6 dB loss end to end. When in doubt, measure it!

  • Link between 313 and 315 documents

    I am using two step transfer for stor. loc to stor loc transfer by 313 (Transfer posting - Others) to move stock from Supplying stor loc to In transfer. And then, with respect to document no. of 313, place in storage by movement type 315.
    But there is no link between document nos. of 313 and 315. So it's not possbile to get report of the same.
    Kindly resolve this issue asap.

    Hi,
    There is no std. link or any configuration, you can look for round the solution with your ABAPer.
    Kapil

  • Link between ME28  and ME1P Screen

    Hi anybody,
          I want Link between ME28 Screen and ME1P Screen.
          When I select Material number on ME28 Screen and click button or select menu it will go to ME1P screen and display price details of that selected material number.
         How i will do? if anyone know please tell me this is urgent.
    Thanks
    S.Muthu.

    create view of va01 .

  • Link between PO and AP tables

    Hi,
    I am trying to modify a query by trying to link AP and PO tables. Plz let me know the columns I can use for linking the tables (it can PO_HEADERS, PO_DISTRIBUTIONS or others in PO, it can AP_INVOICES, AP_CHECKS, AP_INVOICE_PAYMENTS or others in AP). The thing is I am unable to find two columns which are not null in both the columns. I see a link between po_distribution_id in both modules but in AP module it is not mandatory to have a value.Similar is the case with PO_HEADER_ID.
    The option of using the outer joins when the query is run for the PO and AP link with one of the above two columns is not giving the expected results.
    Any solution(s) to the issue.
    Sreekanth

    Hi, you can link AP and PO tables in this way: please consider for the AP side table AP_INVOICE_DISTRIBUTIONS_ALL, where you will find all Invoices' distributions. In this table there is a field called PO_DISTRIBUTION_ID that is the right link to PO.
    Hope this helps
    Regards
    Riccardo

  • Routing issue between Cisco Nexus and Cisco 4510 R+E Chassis

    We have configured Cisco Nexus 7K9 as core and Cisco 4510 R+E as access switches for Server connectivity.
    We are experiencing problem in terms of ARP learning and Ping issues between Cisco Nexus and end hosts.

    Hi,
    So you have N7k acting as L3 with servers connected to 4510?.
    Do you see the MAC associated with failing ARP in 4510?. Is it happening with all or few servers?. Just to verify if it is connectivity issue between N7k and 4510, you can configure an SVI on 4510 and assign address from same raneg (server/core range) and perform a ping.
    This will help narrow down if issue is between server to 4510 or 4510 to N7k.
    Thanks,
    Nagendra

  • Site-to-Site VPN between Cisco ASA 5505 (8.4) and Cisco Router (IOS 15.2)

    Hi, I'm trying to create Site-to-Site VPN between Cisco ASA 5505 and Cisco Router 3945.
    I've tried create configuration with and without ASA wizard, but anyway it doesn't work.
    Please help me to find where is the issue.
    I have two sites and would like to get access from 192.168.83.0 to 192.168.17.0
    192.168.17.0 --- S1.S1.S1.S1 (IOS Router) ==================== S2.S2.S2.S2 (ASA 5505) --- 192.168.83.0
    Here is my current configuration.
    Thanks for your help.
    IOS Configuration
    version 15.2
    crypto isakmp policy 1
    encr aes 256
    authentication pre-share
    group 2
    crypto isakmp key cisco address 198.0.183.225
    crypto isakmp invalid-spi-recovery
    crypto ipsec transform-set AES-SET esp-aes esp-sha-hmac
    mode transport
    crypto map static-map 1 ipsec-isakmp
    set peer S2.S2.S2.S2
    set transform-set AES-SET
    set pfs group2
    match address 100
    interface GigabitEthernet0/0
    ip address S1.S1.S1.S1 255.255.255.240
    ip nat outside
    ip virtual-reassembly in
    duplex auto
    speed auto
    crypto map static-map
    interface GigabitEthernet0/1
    ip address 192.168.17.1 255.255.255.0
    ip nat inside
    ip virtual-reassembly in
    duplex auto
    speed auto
    access-list 100 permit ip 192.168.17.0 0.0.0.255 192.168.83.0 0.0.0.255
    ASA Configuration
    ASA Version 8.4(3)
    interface Ethernet0/0
    switchport access vlan 2
    interface Vlan1
    nameif inside
    security-level 100
    ip address 192.168.83.1 255.255.255.0
    interface Vlan2
    nameif outside
    security-level 0
    ip address S2.S2.S2.S2 255.255.255.248
    ftp mode passive
    same-security-traffic permit intra-interface
    object network inside-network
    subnet 192.168.83.0 255.255.255.0
    object network datacenter
    host S1.S1.S1.S1
    object network datacenter-network
    subnet 192.168.17.0 255.255.255.0
    object network NETWORK_OBJ_192.168.83.0_24
    subnet 192.168.83.0 255.255.255.0
    access-list outside_access_in extended permit icmp any any echo-reply
    access-list outside_access_in extended deny ip any any log
    access-list outside_cryptomap extended permit ip 192.168.83.0 255.255.255.0 object datacenter-network
    pager lines 24
    logging enable
    logging asdm informational
    mtu inside 1500
    mtu outside 1500
    ip local pool vpn_pool 192.168.83.200-192.168.83.254 mask 255.255.255.0
    icmp unreachable rate-limit 1 burst-size 1
    no asdm history enable
    arp timeout 14400
    nat (inside,outside) source dynamic inside-network interface
    nat (inside,outside) source static inside-network inside-network destination static inside-network inside-network no-proxy-arp route-lookup
    nat (inside,outside) source static inside-network inside-network destination static datacenter-network datacenter-network no-proxy-arp route-lookup
    nat (inside,outside) source static NETWORK_OBJ_192.168.83.0_24 NETWORK_OBJ_192.168.83.0_24 destination static datacenter-network pdatacenter-network no-proxy-arp route-lookup
    access-group outside_access_in in interface outside
    route outside 0.0.0.0 0.0.0.0 DEFAULT_GATEWAY 1
    crypto ipsec ikev1 transform-set vpn-transform-set esp-3des esp-sha-hmac
    crypto ipsec ikev1 transform-set vpn-transform-set mode transport
    crypto ipsec ikev1 transform-set L2L_SET esp-aes esp-sha-hmac
    crypto ipsec ikev1 transform-set L2L_SET mode transport
    crypto dynamic-map dyno 10 set ikev1 transform-set vpn-transform-set
    crypto map vpn 1 match address outside_cryptomap
    crypto map vpn 1 set pfs
    crypto map vpn 1 set peer S1.S1.S1.S1
    crypto map vpn 1 set ikev1 transform-set L2L_SET
    crypto map vpn 20 ipsec-isakmp dynamic dyno
    crypto map vpn interface outside
    crypto isakmp nat-traversal 3600
    crypto ikev1 enable outside
    crypto ikev1 policy 10
    authentication pre-share
    encryption 3des
    hash sha
    group 2
    lifetime 86400
    crypto ikev1 policy 20
    authentication pre-share
    encryption aes-256
    hash sha
    group 2
    lifetime 86400
    group-policy GroupPolicy_S1.S1.S1.S1 internal
    group-policy GroupPolicy_S1.S1.S1.S1 attributes
    vpn-tunnel-protocol ikev1
    group-policy remote_vpn_policy internal
    group-policy remote_vpn_policy attributes
    vpn-tunnel-protocol ikev1 l2tp-ipsec
    username artem password 8xs7XK3To4s5WfTvtKAutA== nt-encrypted
    username admin password rqiFSVJFung3fvFZ encrypted privilege 15
    tunnel-group DefaultRAGroup general-attributes
    address-pool vpn_pool
    default-group-policy remote_vpn_policy
    tunnel-group DefaultRAGroup ipsec-attributes
    ikev1 pre-shared-key *****
    tunnel-group DefaultRAGroup ppp-attributes
    authentication ms-chap-v2
    tunnel-group S1.S1.S1.S1 type ipsec-l2l
    tunnel-group S1.S1.S1.S1 general-attributes
    default-group-policy GroupPolicy_S1.S1.S1.S1
    tunnel-group S1.S1.S1.S1 ipsec-attributes
    ikev1 pre-shared-key *****
    class-map inspection_default
    match default-inspection-traffic
    policy-map type inspect dns preset_dns_map
    parameters
      message-length maximum client auto
      message-length maximum 512
    policy-map global_policy
    class inspection_default
      inspect dns preset_dns_map
      inspect ftp
      inspect h323 h225
      inspect h323 ras
      inspect rsh
      inspect rtsp
      inspect esmtp
      inspect sqlnet
      inspect skinny
      inspect sunrpc
      inspect xdmcp
      inspect sip
      inspect netbios
      inspect tftp
      inspect ip-options
      inspect icmp
    service-policy global_policy global
    prompt hostname context
    no call-home reporting anonymous
    Cryptochecksum:f55f10c19a0848edd2466d08744556eb
    : end

    Thanks for helping me again. I really appreciate.
    I don't hve any NAT-exemptions in Cisco IOS Router. Transform-set I will change soon, but I've tried with tunnel mode and it didn't work.
    Maybe NAT-exemptions is the issue. Can you advice me which exemptions should be in Cisco IOS Router?
    Because on Cisco ASA I guess I have everything.
    Here is show crypto session detail
    router(config)#do show crypto session detail
    Crypto session current status
    Code: C - IKE Configuration mode, D - Dead Peer Detection
    K - Keepalives, N - NAT-traversal, T - cTCP encapsulation
    X - IKE Extended Authentication, F - IKE Fragmentation
    Interface: GigabitEthernet0/0
    Session status: DOWN
    Peer: 198.0.183.225 port 500 fvrf: (none) ivrf: (none)
          Desc: (none)
          Phase1_id: (none)
      IPSEC FLOW: permit ip 192.168.17.0/255.255.255.0 192.168.83.0/255.255.255.0
            Active SAs: 0, origin: crypto map
            Inbound:  #pkts dec'ed 0 drop 0 life (KB/Sec) 0/0
            Outbound: #pkts enc'ed 0 drop 0 life (KB/Sec) 0/0
    Should I see something in crypto isakmp sa?
    pp-border#sh crypto isakmp sa
    IPv4 Crypto ISAKMP SA
    dst             src             state          conn-id status
    IPv6 Crypto ISAKMP SA
    Thanks again for your help.

  • How can I encrypt my data links between switch uplink ports ? I'm unable to use "cts Manual" command in C3560X switch.suggest me

    How can I encrypt my data uplinks between switch trunk ports ? I'm unable to use "cts Manual" command in C3560X switch.suggest me as I want to encrypt my switch-to-switch link with Cisco TrustSec.

    Hi 
    Login to switch & go to interface..
    There you can give tags.. (ISL & DONT1Q)
    Command switch-port mode trunk
    Switch-port trunk encapsulation ssl or dot1Q

  • Lost link between iPhoto library and iPhoto.app

    While learning how to use Photoshop Elements 4.0 and Bridge, I made the choice to "browse" in Bridge. When I next started iPhoto 6.06, my link to the Library was lost. I have worked with AppleCare support, done every exercise short of creating a new library and losing my organization. With 20,000 + photos I would like to avoid that exercise. I do have backups but am trying to figure out if I can solve this any other way. All my files are still in iPhoto Library, and I can see the organization of my albums in Bridge. With some exercises, I get the message: "Unreadable files: 1. The following file could not be imported: '/Users/john/Pictures/iPhoto Library/Library.iPhoto.'"
    If I delete Adobe Photoshop Elements and Bridge from the hard drive, will this help? I promise I did not do anything within iPhoto Library in Finder!
    Thanks so much!
    iMac   Mac OS X (10.4.9)   iPhoto 6.06
    iMac   Mac OS X (10.4.9)   iPhoto 6.06
    iMac   Mac OS X (10.4.9)   iPhoto 6.06

    cdkayak
    Welcome to the Apple Discussions.
    There's absolutely no harm in using PSE with iPhoto, it's Bridge that's a killer. So that's what you chuck from your machine. Set up PSE as an external editor in the iPhoto Preferences. That way you can double click a pic in iPhoto and it will open automatically in PSE, save it PSE and have it come back into iPhoto seamlessly.
    What's likely happened here is that you have (or Bridge has) made changes in the iPhoto Library Folder which has broken the link between iPhoto and the library files.
    Some things to try:
    Hold down the option (or alt) key and launch iPhoto. Choose Locate, and point iPhoto at the iPhoto Library Folder.
    What Back Ups do you have? If there's an up-to-date one, then try copying the library6.iphoto file from it to the iPhoto Library Folder allowing it to overwrite the confused one.
    That said, if these don't work, your options will only be to create and populate a new library: To create and populate a new library:
    Note this will give you a working library with the same film rolls and pictures as before, however, you will lose your albums, keywords, books, calendars etc.
    Move the iPhoto Library Folder to the desktop
    Launch iPhoto. It will ask if you wish to create a new Library. Say Yes.
    Go into the iPhoto Library Folder on your desktop and find the Originals folder. From the Originals folder drag the individual rolls to the iPhoto Window and it will recreate them in the new library.
    When you're sure all is well you can delete the iPhoto Library Folder on your desktop.
    In the future, in addition to your usual back up routine, you might like to make a copy of the library6.iPhoto file whenever you have made changes to the library as protection against database corruption.
    Finally, the message
    "Unreadable files: 1. The following file could not be imported: '/Users/john/Pictures/iPhoto Library/Library.iPhoto.'"
    is because iPhoto will not import a picture that's in the active iPhoto Library Folder - a sensible precaution against duplication.
    Regards
    TD

Maybe you are looking for

  • Using a Separate Class

    Hey, everybody. I'm learning Java through a text and it instructed me to write a class that contains several methods for generating random numbers and characters. It then instructed me to write a class containing a main method that calls one of the m

  • Poor performance and duplicate apps after migration

    I migrated from a G4 ti book to a MacBook pro and have never been happy. I have duplicate applications and one will say in parens (from old mac) behind the name. It also moves very slow, especially in Eudora. I made a new user on the new computer in

  • Songs won't play!

    I can't get iTunes to play any songs, whether they are in my library or a preview in the iTunes store. I have upgraded itunes, uninstalled/reinstalled quick time and still nothing. The song does load, but nothing plays and progress bar doesn't move.

  • Regarding Tables and fields.....

    Hi everybody,               How to know exactly,the tables and fields when a report is to be developed.

  • Off-Topic:  Open Source Wiki/Forum/Knowledge Sharing?

    Did not really have another forum to post this to, so I thought I would so here. We are looking to set up a mini-portal accessible on our intranet. The idea would be to share best practices, standards, designs, results of continuous integration (test