Cisco SUP MGMT Interface Support L2 switchport mode?

Does the Cisco Supervisor MGMT interface support to be converted to a switchport to be assigned to a specific VLAN? The same question for 3750 switches and other switches.

No. They do need to have an IP address configured as they are actually routed ports.
The address needs to be in the subnet associated with the VLAN it plugs into in the switching infrastructure.

Similar Messages

  • Does 3650 Mgmt Interface (Gi0/0) support SSH ?

    Does anyone know if the WS-C3650-48PD supports (or not) SSH over the MGMT interface (Gi0/0) ?
    I have it working with Telnet and the switch is configured with SSH enabled.
    I can use SSH if I use in-band management (configure the switch IP on a VLAN interface instead of on the Gi0/0 interface), but when I try to open a SSH session over the MGMT interface I get "Connection refused" in my SSH client.
    Is there something extra I need to do to make SSH work over MGMT ?
    vrf definition Mgmt-vrf
     address-family ipv4
     exit-address-family
     address-family ipv6
     exit-address-family
    ip ssh time-out 60
    ip ssh authentication-retries 5
    ip ssh logging events
    ip ssh version 2
    interface GigabitEthernet0/0
     vrf forwarding Mgmt-vrf
     ip address 172.28.26.95 255.255.255.0
     negotiation auto
    ip route vrf Mgmt-vrf 0.0.0.0 0.0.0.0 172.28.26.1
    line vty 0 4
     access-class 1 in
     exec-timeout 50 0
     password 7 xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
     logging synchronous
     login local
     length 0
     transport input telnet ssh
     escape-character 3
    Normally I would  use "transport input ssh" - ie. no telnet - but this is the only way I've been able to use the MGMT interface so far and I'd rather not be using Telnet at all.
    Thanks
    David

    Quicker than expected - quiet morning so far ;-)
    #sh ip ssh
    SSH Enabled - version 2.0
    Authentication timeout: 60 secs; Authentication retries: 5
    Minimum expected Diffie Hellman key size : 1024 bits
    IOS Keys in SECSH format(ssh-rsa, base64 encoded):
    ssh-rsa xxxxxxxxxxxxxxxxxxxxxxxxxxxxx...
    I checked the SSH traffic from my client - I send SYN, get back RST - definitely an active refusal of the connection.
    If MGMT Gi0/0 does support SSH, it's clear I'm missing something to enable it.
    IOS is Cisco's current recommended for this platform and in the recommended installation mode
    Switch Ports Model              SW Version        SW Image              Mode
    *    1 52    WS-C3650-48PD      03.03.05SE        cat3k_caa-universalk9 INSTALL
    If I move the management IP address off Gi0/0 and onto the management VLAN interface (management is then through Gi1/1/1 where the VLAN is trunked), it works fine and I can SSH to the switch with no other changes to the configuration (of course subsequently I want to disable Telnet)
    I know can eliminate patching and routing/forwarding of the traffic as issues given Telnet and PING can reach the management IP address under both configurations. It's as if the MGMT interface just doesn't allow SSH by default (or possibly not at all)
    If you have a working configuration you'd be happy to share, I'd appreciate it.
    Thanks again
    David

  • Cisco catalyst 3850 switch won't take command: "switchport mode trunk encapsulation dot 1q"

    Hi all,
        I'am working on this switch's configuration. when I typed "switchport mode trunk encapsulation dot 1q", I got an error " invavid input". I'm guessing that this model already set encapsulation type to dot 1q, and that's why the switch won't take it, right? 
       Please help!

    According to the documents it supports both.
    You are however using the wrong command, it should be -
    "switchport trunk encapsulation dot1q"
    ie. no "mode" keyword.
    If it doesn't take that then do a "sh int <x> capabilities" and it should show you which encapsulation methods are supported.
    Jon

  • Cisco 2950 Gigabit interface trunking

    This is the small part of the network design that i want to seek advice from the forum .
    ++ we have two cisco 2950 switch
    switch1 ==gigabit trunk == switch2 .
    we want trunking to enable between these two two switches by using there gigabit ethernet interface ie
    switch 1 interface GigabitEthernet0/1 is connected to switch 2 interface GigabitEthernet0/1 and switch 1 interface GigabitEthernet0/2 is connected to switch 2 interface GigabitEthernet0/2.
    i need advice in following areas
    ++ what cable do we need to connect these switches (i guess cross over cable will do )
    ++ do we have configuration on the tech tip page
    for achieving the same ?

    Hello,
    for the trunk connection you need a four twisted-pair crossover cable:
    Figure B-11 Four Twisted-Pair Crossover Cable Schematics for 10/100/1000 and 1000BASE-T Ports
    http://www.cisco.com/en/US/partner/products/hw/switches/ps628/products_installation_guide_chapter09186a0080346679.html#wp1020386
    You can either configure 802.1Q or an ISL trunks between your switches. For 802.1Q the configuration would look like this:
    Switch1
    interface GigabitEthernet0/1
    switchport trunk encapuslation dot1q
    switchport mode trunk
    interface GigabitEthernet0/2
    switchport trunk encapsulation dot1q
    switchport mode trunk
    Switch2
    interface GigabitEthernet0/1
    switchport trunk encapuslation dot1q
    switchport mode trunk
    interface GigabitEthernet0/2
    switchport trunk encapsulation dot1q
    switchport mode trunk
    And for ISL encapsulation, the configuration would look like this:
    Switch1
    interface GigabitEthernet0/1
    switchport trunk encapuslation isl
    switchport mode trunk
    interface GigabitEthernet0/2
    switchport trunk encapsulation isl
    switchport mode trunk
    Switch2
    interface GigabitEthernet0/1
    switchport trunk encapuslation isl
    switchport mode trunk
    interface GigabitEthernet0/2
    switchport trunk encapsulation isl
    switchport mode trunk
    You could also configure a GigaChannel to bind both interfaces into one logical link, for better throughput. For 802.1Q:
    Switch1
    interface Port-channel1
    switchport trunk encapsulation dot1q
    switchport mode trunk
    interface GigabitEthernet0/1
    switchport trunk encapuslation dot1q
    switchport mode trunk
    channel-group 1 mode on
    interface GigabitEthernet0/2
    switchport trunk encapsulation dot1q
    switchport mode trunk
    channel-group 1 mode on
    Switch2
    interface Port-channel1
    switchport trunk encapsulation dot1q
    switchport mode trunk
    interface GigabitEthernet0/1
    switchport trunk encapuslation dot1q
    switchport mode trunk
    channel-group 1 mode on
    interface GigabitEthernet0/2
    switchport trunk encapsulation dot1q
    switchport mode trunk
    channel-group 1 mode on
    And for ISL:
    Switch1
    interface Port-channel1
    switchport trunk encapsulation isl
    switchport mode trunk
    interface GigabitEthernet0/1
    switchport trunk encapuslation isl
    switchport mode trunk
    channel-group 1 mode on
    interface GigabitEthernet0/2
    switchport trunk encapsulation isl
    switchport mode trunk
    channel-group 1 mode on
    Switch2
    interface Port-channel1
    switchport trunk encapsulation isl
    switchport mode trunk
    interface GigabitEthernet0/1
    switchport trunk encapuslation isl
    switchport mode trunk
    channel-group 1 mode on
    interface GigabitEthernet0/2
    switchport trunk encapsulation isl
    switchport mode trunk
    channel-group 1 mode on
    HTH,
    GP

  • 64 bits Error -2147467262 - No such interface supported

    Hi,
    It will be very kind of you in case you can help me.... I have a very particular issue... trying to consume a COM object developed by myself through a JAVA application. so we have 3 components:
    (All inside windows 7 64 bits environment)
    1) Java application
    2) JNI (c++) library
    3) COM object.
    A simple Java application, used library 64 bits C:\Program Files\Java\jdk1.6.0_45
    and the code looks similar to that:
    public class DP {
    static {
    System.loadLibrary("JNIDP");
    private native boolean Init();
    public static void main(String[] args) {
    DP dp = new DP();
    dp.Init();
    I have generated the JNI interface:
    JNIEXPORT jboolean JNICALL Java_com_ncr_asr_DP_Init
      (JNIEnv *, jobject);
    and create a library JNIDP to comsume the COM object like that:
    JNIEXPORT jboolean JNICALL Java_com_ncr_asr_DP_Init(JNIEnv *env , jobject obj ) 
    hRes = CoInitialize( NULL );
    IDPPos* pDPPOS = NULL;
    hRes = CoCreateInstance(CLSID_DPPos, NULL, CLSCTX_ALL, IID_IDPPos, (void**)&pDPPOS );
      return !FAILED( hRes );
    When I execute the Simple Java Application everything goes well and the Init() method works successfully.
    Now, If I try to consume the JNI library  through a bigger Java Application, also using the library 64 bits C:\Program Files\Java\jdk1.6.0_45
    The CoCreateInstance inside the Init method return error: -2147467262 (No such interface supported).
    I am unable to realize what is going on... and why the bigger java application is getting this error trying to consume the COM object through JNI.
    I am really confuse and not sure what to try. Any help will be appreciated. 
    Thanks in advance.
    Sebastian

    Let see... I make some testing related to your suggestion... so, I have made a new COM component for testing propose base on ATL, just this example:
    http://msdn.microsoft.com/en-us/library/dssw0ch4(v=vs.90).aspx
    Then I have updated my DLL (The one that java application consume with JNI) to call this new component exactly the same as the client application does in the example....
    1) First Test: Simple Java Application consume the JNI DLL and I can see printed the "101" as the example COM is doing... so, It works successfully.
    2) Second Test: Bigger Java Application consume the JNI DLL and I got bad news... a file was generated with information about the issue... like that:
    Any suggestions?
    # A fatal error has been detected by the Java Runtime Environment:
    #  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x000007fef4575dc9, pid=6156, tid=5352
    # JRE version: 6.0_45-b06
    # Java VM: Java HotSpot(TM) 64-Bit Server VM (20.45-b01 mixed mode windows-amd64 compressed oops)
    # Problematic frame:
    # C  [JNIDP.dll+0x5dc9]
    # If you would like to submit a bug report, please visit:
    #   http://java.sun.com/webapps/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    ---------------  T H R E A D  ---------------
    Current thread (0x0000000007795000):  JavaThread "GdPos:dispatch" [_thread_in_native, id=5352, stack(0x00000000092e0000,0x00000000093e0000)]
    siginfo: ExceptionCode=0xc0000005, reading address 0x0000000000000000
    Registers:
    RAX=0x0000000000000000, RBX=0x000000077cea0b38, RCX=0x0000000000000000, RDX=0x00000000093ddc38
    RSP=0x00000000093ddb90, RBP=0x00000000093ddd00, RSI=0x00000000000000ff, RDI=0x00000000093ddbc0
    R8 =0x0000000000000000, R9 =0x0000000000000000, R10=0x000007fef45fc4b8, R11=0x0000000000000001
    R12=0x0000000000000000, R13=0x000000077cea0b38, R14=0x00000000093ddd20, R15=0x0000000007795000
    RIP=0x000007fef4575dc9, EFLAGS=0x0000000000010202
    Top of Stack: (sp=0x00000000093ddb90)
    0x00000000093ddb90:   cccccccccccccccc cccccccccccccccc
    0x00000000093ddba0:   cccccccccccccccc cccccccccccccccc
    0x00000000093ddbb0:   cccccccccccccccc cccccccccccccccc
    0x00000000093ddbc0:   00000000093ddc80 000007fef457197e
    0x00000000093ddbd0:   00000000093ddc18 00000000093ddc38
    0x00000000093ddbe0:   0000000000000000 cccccccc00000017
    0x00000000093ddbf0:   cccccccccccccccc cccccccccccccccc
    0x00000000093ddc00:   cccccccccccccccc cccccccccccccccc
    0x00000000093ddc10:   cccccccccccccccc 0000000000000000
    0x00000000093ddc20:   cccccccccccccccc cccccccccccccccc
    0x00000000093ddc30:   cccccccccccccccc 0000000000000000
    0x00000000093ddc40:   cccccccccccccccc cccccccccccccccc
    0x00000000093ddc50:   cccccccccccccccc cccccccccccccccc
    0x00000000093ddc60:   cccccccccccccccc cccccccccccccccc
    0x00000000093ddc70:   cccccccccccccccc cccccccccccccccc
    0x00000000093ddc80:   00000000021c5b22 00000000021d1386 
    Instructions: (pc=0x000007fef4575dc9)
    0x000007fef4575da9:   00 00 00 e8 9f 07 01 00 83 f8 01 75 03 cc 33 c0
    0x000007fef4575db9:   48 8b 44 24 40 48 8b 00 48 8b 4c 24 40 48 8b 09
    0x000007fef4575dc9:   48 8b 00 4c 8b 44 24 48 48 8d 15 98 6c 08 00 ff
    0x000007fef4575dd9:   10 48 83 c4 30 5f c3 cc cc cc cc cc cc cc cc cc 
    Register to memory mapping:
    RAX=0x0000000000000000 is an unknown value
    RBX=0x000000077cea0b38 is an oop
    {method} 
     - klass: {other class}
    RCX=0x0000000000000000 is an unknown value
    RDX=0x00000000093ddc38 is pointing into the stack for thread: 0x0000000007795000
    RSP=0x00000000093ddb90 is pointing into the stack for thread: 0x0000000007795000
    RBP=0x00000000093ddd00 is pointing into the stack for thread: 0x0000000007795000
    RSI=0x00000000000000ff is an unknown value
    RDI=0x00000000093ddbc0 is pointing into the stack for thread: 0x0000000007795000
    R8 =0x0000000000000000 is an unknown value
    R9 =0x0000000000000000 is an unknown value
    R10=0x000007fef45fc4b8 is an unknown value
    R11=0x0000000000000001 is an unknown value
    R12=0x0000000000000000 is an unknown value
    R13=0x000000077cea0b38 is an oop
    {method} 
     - klass: {other class}
    R14=0x00000000093ddd20 is pointing into the stack for thread: 0x0000000007795000
    R15=0x0000000007795000 is a thread
    Stack: [0x00000000092e0000,0x00000000093e0000],  sp=0x00000000093ddb90,  free space=1014k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C  [JNIDP.dll+0x5dc9]  ATL::CComPtrBase<IUnknown>::QueryInterface<IObject1>+0x69
    j  com.DPLogger.Init()Z+4
    j  com.DPClient.Init()Z+39
    j  com.DPMgr.init()V+11
    j  com.Engine.eventInit()V+254
    j  com.Main$1.windowOpened(Ljava/awt/event/WindowEvent;)V+3
    j  java.awt.Window.processWindowEvent(Ljava/awt/event/WindowEvent;)V+58
    j  java.awt.Window.processEvent(Ljava/awt/AWTEvent;)V+69
    j  java.awt.Component.dispatchEventImpl(Ljava/awt/AWTEvent;)V+573
    j  java.awt.Container.dispatchEventImpl(Ljava/awt/AWTEvent;)V+42
    j  java.awt.Window.dispatchEventImpl(Ljava/awt/AWTEvent;)V+65
    j  java.awt.Component.dispatchEvent(Ljava/awt/AWTEvent;)V+2
    j  java.awt.EventQueue.dispatchEventImpl(Ljava/awt/AWTEvent;Ljava/lang/Object;)V+41
    j  java.awt.EventQueue.access$400(Ljava/awt/EventQueue;Ljava/awt/AWTEvent;Ljava/lang/Object;)V+3
    j  java.awt.EventQueue$2.run()Ljava/lang/Void;+12
    j  java.awt.EventQueue$2.run()Ljava/lang/Object;+1
    v  ~StubRoutines::call_stub
    V  [jvm.dll+0x1eac57]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j  com.DP.Init()Z+0
    j  com.DPLogger.Init()Z+4
    j  com.DPClient.Init()Z+39
    j  com.DPMgr.init()V+11
    j  com.Engine.eventInit()V+254
    j  com.Main$1.windowOpened(Ljava/awt/event/WindowEvent;)V+3
    j  java.awt.Window.processWindowEvent(Ljava/awt/event/WindowEvent;)V+58
    j  java.awt.Window.processEvent(Ljava/awt/AWTEvent;)V+69
    j  java.awt.Component.dispatchEventImpl(Ljava/awt/AWTEvent;)V+573
    j  java.awt.Container.dispatchEventImpl(Ljava/awt/AWTEvent;)V+42
    j  java.awt.Window.dispatchEventImpl(Ljava/awt/AWTEvent;)V+65
    j  java.awt.Component.dispatchEvent(Ljava/awt/AWTEvent;)V+2
    j  java.awt.EventQueue.dispatchEventImpl(Ljava/awt/AWTEvent;Ljava/lang/Object;)V+41
    j  java.awt.EventQueue.access$400(Ljava/awt/EventQueue;Ljava/awt/AWTEvent;Ljava/lang/Object;)V+3
    j  java.awt.EventQueue$2.run()Ljava/lang/Void;+12
    j  java.awt.EventQueue$2.run()Ljava/lang/Object;+1
    v  ~StubRoutines::call_stub
    j  java.security.AccessController.doPrivileged(Ljava/security/PrivilegedAction;Ljava/security/AccessControlContext;)Ljava/lang/Object;+0
    j  java.security.AccessControlContext$1.doIntersectionPrivilege(Ljava/security/PrivilegedAction;Ljava/security/AccessControlContext;Ljava/security/AccessControlContext;)Ljava/lang/Object;+28
    j  java.security.AccessControlContext$1.doIntersectionPrivilege(Ljava/security/PrivilegedAction;Ljava/security/AccessControlContext;)Ljava/lang/Object;+6
    j  java.awt.EventQueue$3.run()Ljava/lang/Void;+11
    j  java.awt.EventQueue$3.run()Ljava/lang/Object;+1
    v  ~StubRoutines::call_stub
    j  java.security.AccessController.doPrivileged(Ljava/security/PrivilegedAction;Ljava/security/AccessControlContext;)Ljava/lang/Object;+0
    j  java.security.AccessControlContext$1.doIntersectionPrivilege(Ljava/security/PrivilegedAction;Ljava/security/AccessControlContext;Ljava/security/AccessControlContext;)Ljava/lang/Object;+28
    j  java.awt.EventQueue.dispatchEvent(Ljava/awt/AWTEvent;)V+73
    j  java.awt.EventDispatchThread.pumpOneEventForFilters(I)Z+204
    j  java.awt.EventDispatchThread.pumpEventsForFilter(ILjava/awt/Conditional;Ljava/awt/EventFilter;)V+30
    j  java.awt.EventDispatchThread.pumpEventsForHierarchy(ILjava/awt/Conditional;Ljava/awt/Component;)V+11
    j  java.awt.EventDispatchThread.pumpEvents(ILjava/awt/Conditional;)V+4
    j  java.awt.EventDispatchThread.pumpEvents(Ljava/awt/Conditional;)V+3
    j  java.awt.EventDispatchThread.run()V+9
    v  ~StubRoutines::call_stub
    ---------------  P R O C E S S  ---------------
    Java Threads: ( => current thread )
      0x00000000073db000 JavaThread "GdPos:AS" [_thread_blocked, id=3612, stack(0x000000000b5c0000,0x000000000b6c0000)]
      0x00000000073da800 JavaThread "HSQLDB Timer @2602585e" daemon [_thread_blocked, id=7680, stack(0x000000000b4c0000,0x000000000b5c0000)]
      0x00000000073d9800 JavaThread "GdPos:ticker" [_thread_blocked, id=9184, stack(0x000000000b3c0000,0x000000000b4c0000)]
      0x00000000073d9000 JavaThread "ScaleSimulator" [_thread_blocked, id=4652, stack(0x000000000b2c0000,0x000000000b3c0000)]
      0x00000000073d8000 JavaThread "LUUpdateThread" [_thread_blocked, id=3188, stack(0x000000000b1c0000,0x000000000b2c0000)]
      0x00000000073d7800 JavaThread "ServerPriceThread" [_thread_blocked, id=7136, stack(0x000000000b0c0000,0x000000000b1c0000)]
      0x00000000073d6800 JavaThread "com.ncr.asr.FileAccessClient" [_thread_blocked, id=7320, stack(0x000000000afc0000,0x000000000b0c0000)]
      0x00000000073d6000 JavaThread "GdPos:hotnote" [_thread_blocked, id=5316, stack(0x000000000aec0000,0x000000000afc0000)]
      0x00000000073d5800 JavaThread "GdPos:pumper" [_thread_blocked, id=5248, stack(0x000000000adc0000,0x000000000aec0000)]
      0x00000000073d4800 JavaThread "MICRSimulator" [_thread_blocked, id=7976, stack(0x000000000acc0000,0x000000000adc0000)]
      0x00000000073d4000 JavaThread "ScannerSimulator" [_thread_blocked, id=7472, stack(0x000000000abc0000,0x000000000acc0000)]
      0x00000000073d3000 JavaThread "MSRSimulator" [_thread_blocked, id=9188, stack(0x00000000093e0000,0x00000000094e0000)]
      0x00000000073d2800 JavaThread "RMI TCP Connection(idle)" daemon [_thread_blocked, id=8304, stack(0x000000000aac0000,0x000000000abc0000)]
      0x00000000073d1800 JavaThread "RMI RenewClean-[192.168.56.1:49980]" daemon [_thread_blocked, id=1092, stack(0x000000000a8f0000,0x000000000a9f0000)]
      0x00000000073d1000 JavaThread "RMI Scheduler(0)" daemon [_thread_blocked, id=7188, stack(0x0000000009cb0000,0x0000000009db0000)]
      0x0000000007bb2800 JavaThread "RMI TCP Connection(idle)" daemon [_thread_blocked, id=8812, stack(0x0000000009bb0000,0x0000000009cb0000)]
      0x000000000813b800 JavaThread "RMI TCP Accept-1099" daemon [_thread_in_native, id=8896, stack(0x0000000009ab0000,0x0000000009bb0000)]
      0x0000000008310000 JavaThread "GC Daemon" daemon [_thread_blocked, id=8260, stack(0x00000000099b0000,0x0000000009ab0000)]
      0x0000000007c0c000 JavaThread "RMI Reaper" [_thread_blocked, id=7588, stack(0x00000000098b0000,0x00000000099b0000)]
      0x0000000007bb8000 JavaThread "RMI TCP Accept-0" daemon [_thread_in_native, id=9036, stack(0x00000000097b0000,0x00000000098b0000)]
      0x00000000005cf000 JavaThread "DestroyJavaVM" [_thread_blocked, id=6524, stack(0x00000000020c0000,0x00000000021c0000)]
    =>0x0000000007795000 JavaThread "GdPos:dispatch" [_thread_in_native, id=5352, stack(0x00000000092e0000,0x00000000093e0000)]
      0x0000000007103800 JavaThread "AWT-Shutdown" [_thread_blocked, id=6732, stack(0x00000000091e0000,0x00000000092e0000)]
      0x00000000075c6800 JavaThread "GdPos:blinker" [_thread_blocked, id=3684, stack(0x0000000008e70000,0x0000000008f70000)]
      0x00000000073b7800 JavaThread "AWT-Windows" daemon [_thread_in_native, id=6552, stack(0x0000000008f70000,0x0000000009070000)]
      0x00000000073b6000 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=5356, stack(0x0000000008c10000,0x0000000008d10000)]
      0x0000000006528800 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=5064, stack(0x0000000006bb0000,0x0000000006cb0000)]
      0x0000000006523800 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=8068, stack(0x0000000006ab0000,0x0000000006bb0000)]
      0x0000000006511000 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=7412, stack(0x00000000069b0000,0x0000000006ab0000)]
      0x000000000650e000 JavaThread "Attach Listener" daemon [_thread_blocked, id=8308, stack(0x00000000068b0000,0x00000000069b0000)]
      0x0000000006509000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=3632, stack(0x00000000067b0000,0x00000000068b0000)]
      0x000000000052e800 JavaThread "Finalizer" daemon [_thread_blocked, id=1116, stack(0x00000000066b0000,0x00000000067b0000)]
      0x000000000052d000 JavaThread "Reference Handler" daemon [_thread_blocked, id=5480, stack(0x00000000063b0000,0x00000000064b0000)]
    Other Threads:
      0x0000000000525000 VMThread [stack: 0x00000000062b0000,0x00000000063b0000] [id=2548]
      0x000000000655a000 WatcherThread [stack: 0x0000000006cb0000,0x0000000006db0000] [id=3880]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
     PSYoungGen      total 37888K, used 28346K [0x00000007d5b60000, 0x00000007d85a0000, 0x0000000800000000)
      eden space 32512K, 73% used [0x00000007d5b60000,0x00000007d72cbc40,0x00000007d7b20000)
      from space 5376K, 81% used [0x00000007d7b20000,0x00000007d7f62e48,0x00000007d8060000)
      to   space 5376K, 0% used [0x00000007d8060000,0x00000007d8060000,0x00000007d85a0000)
     PSOldGen        total 86656K, used 4938K [0x0000000781200000, 0x00000007866a0000, 0x00000007d5b60000)
      object space 86656K, 5% used [0x0000000781200000,0x00000007816d2820,0x00000007866a0000)
     PSPermGen       total 40256K, used 31716K [0x000000077c000000, 0x000000077e750000, 0x0000000781200000)
      object space 40256K, 78% used [0x000000077c000000,0x000000077def9168,0x000000077e750000)
    Code Cache  [0x00000000021c0000, 0x0000000002430000, 0x00000000051c0000)
     total_blobs=775 nmethods=273 adapters=455 free_code_cache=48966080 largest_free_block=12288
    Dynamic libraries:
    0x0000000000400000 - 0x000000000042f000 C:\Program Files\Java\jre6\bin\javaw.exe
    0x0000000077150000 - 0x00000000772f9000 C:\windows\SYSTEM32\ntdll.dll
    0x0000000076ee0000 - 0x0000000076fff000 C:\windows\system32\kernel32.dll
    0x000007fefd660000 - 0x000007fefd6cb000 C:\windows\system32\KERNELBASE.dll
    0x000007fefdba0000 - 0x000007fefdc7b000 C:\windows\system32\ADVAPI32.dll
    0x000007feff150000 - 0x000007feff1ef000 C:\windows\system32\msvcrt.dll
    0x000007feff1f0000 - 0x000007feff20f000 C:\windows\SYSTEM32\sechost.dll
    0x000007fefede0000 - 0x000007fefef0d000 C:\windows\system32\RPCRT4.dll
    0x0000000076a70000 - 0x0000000076b6a000 C:\windows\system32\USER32.dll
    0x000007fefdaa0000 - 0x000007fefdb07000 C:\windows\system32\GDI32.dll
    0x000007fefef60000 - 0x000007fefef6e000 C:\windows\system32\LPK.dll
    0x000007feff210000 - 0x000007feff2d9000 C:\windows\system32\USP10.dll
    0x000007fefdb70000 - 0x000007fefdb9e000 C:\windows\system32\IMM32.DLL
    0x000007fefecb0000 - 0x000007fefedb9000 C:\windows\system32\MSCTF.dll
    0x000000006d830000 - 0x000000006dfec000 C:\Program Files\Java\jre6\bin\server\jvm.dll
    0x000007fefb8b0000 - 0x000007fefb8eb000 C:\windows\system32\WINMM.dll
    0x000000006d7a0000 - 0x000000006d7ae000 C:\Program Files\Java\jre6\bin\verify.dll
    0x000000006d3c0000 - 0x000000006d3e7000 C:\Program Files\Java\jre6\bin\java.dll
    0x000000006d7f0000 - 0x000000006d802000 C:\Program Files\Java\jre6\bin\zip.dll
    0x000000006d000000 - 0x000000006d1c4000 C:\Program Files\Java\jre6\bin\awt.dll
    0x000007fefb660000 - 0x000007fefb6d1000 C:\windows\system32\WINSPOOL.DRV
    0x000007fefdc90000 - 0x000007fefde93000 C:\windows\system32\ole32.dll
    0x000007fefdf20000 - 0x000007fefeca8000 C:\windows\system32\SHELL32.dll
    0x000007fefdea0000 - 0x000007fefdf11000 C:\windows\system32\SHLWAPI.dll
    0x000007fefc020000 - 0x000007fefc214000 C:\windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_fa396087175ac9ac\COMCTL32.dll
    0x000007fefb880000 - 0x000007fefb898000 C:\windows\system32\DWMAPI.DLL
    0x000007fefbd50000 - 0x000007fefbda6000 C:\windows\system32\uxtheme.dll
    0x000000006d2a0000 - 0x000000006d315000 C:\Program Files\Java\jre6\bin\fontmanager.dll
    0x000007fefd4e0000 - 0x000007fefd4ef000 C:\windows\system32\CRYPTBASE.dll
    0x000007fef4570000 - 0x000007fef4628000 C:\NCR\caja\testing\JNIDP.dll
    0x000007feff2e0000 - 0x000007feff3b7000 C:\windows\system32\OLEAUT32.dll
    0x000000006d620000 - 0x000000006d637000 C:\Program Files\Java\jre6\bin\net.dll
    0x000007fefef10000 - 0x000007fefef5d000 C:\windows\system32\WS2_32.dll
    0x000007fefdc80000 - 0x000007fefdc88000 C:\windows\system32\NSI.dll
    0x000007fefce20000 - 0x000007fefce75000 C:\windows\system32\mswsock.dll
    0x000007fefce10000 - 0x000007fefce17000 C:\windows\System32\wship6.dll
    0x000000006d640000 - 0x000000006d64c000 C:\Program Files\Java\jre6\bin\nio.dll
    0x000000006d4e0000 - 0x000000006d515000 C:\Program Files\Java\jre6\bin\jpeg.dll
    0x000007fefd030000 - 0x000007fefd047000 C:\windows\system32\CRYPTSP.dll
    0x000007fefcb80000 - 0x000007fefcbc7000 C:\windows\system32\rsaenh.dll
    0x000007fefc8d0000 - 0x000007fefc8ee000 C:\windows\system32\USERENV.dll
    0x000007fefd5b0000 - 0x000007fefd5bf000 C:\windows\system32\profapi.dll
    0x000007fefaea0000 - 0x000007fefaeb5000 C:\windows\system32\NLAapi.dll
    0x000007fef6af0000 - 0x000007fef6b05000 C:\windows\system32\napinsp.dll
    0x000007fef6ad0000 - 0x000007fef6ae9000 C:\windows\system32\pnrpnsp.dll
    0x000007fefcca0000 - 0x000007fefccfb000 C:\windows\system32\DNSAPI.dll
    0x000007fef6ac0000 - 0x000007fef6acb000 C:\windows\System32\winrnr.dll
    0x000007fef6ab0000 - 0x000007fef6ac0000 C:\windows\system32\wshbth.dll
    0x000007fefc9c0000 - 0x000007fefc9c7000 C:\windows\System32\wshtcpip.dll
    0x000007fefa290000 - 0x000007fefa2b7000 C:\windows\system32\IPHLPAPI.DLL
    0x000007fefa280000 - 0x000007fefa28b000 C:\windows\system32\WINNSI.DLL
    0x000007fef5a70000 - 0x000007fef5a78000 C:\windows\system32\rasadhlp.dll
    0x000007fef9f00000 - 0x000007fef9f53000 C:\windows\System32\fwpuclnt.dll
    0x000000006d6c0000 - 0x000000006d6c6000 C:\Program Files\Java\jre6\bin\rmi.dll
    0x000007fefd480000 - 0x000007fefd4d7000 C:\windows\system32\apphelp.dll
    0x0000000077310000 - 0x0000000077317000 C:\windows\system32\PSAPI.DLL
    VM Arguments:
    jvm_args: -Djava.library.path=c:\testing -Dfile.encoding=Cp1252 
    java_command: com.ncr.asr.Main
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=C:\Program Files\Java\jdk1.6.0_45\
    CLASSPATH=.;.;C:\PROGRA~2\JMF21~1.1E\lib\sound.jar;C:\PROGRA~2\JMF21~1.1E\lib\jmf.jar;C:\PROGRA~2\JMF21~1.1E\lib;
    PATH=C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Dell\DW WLAN Card;C:\Program Files\WIDCOMM\Bluetooth Software\;C:\Program Files\WIDCOMM\Bluetooth Software\syswow64;C:\Program Files (x86)\Common
    Files\Roxio Shared\DLLShared\;C:\Program Files (x86)\Common Files\Roxio Shared\10.0\DLLShared\;C:\Program Files (x86)\Enterprise Vault\EVClient\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program
    Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files\TortoiseSVN\bin;C:\Program Files\Java\jdk1.6.0_45\jre\bin;C:\eclipse\MinGW\bin;C:\apache-maven-3.2.1\bin
    USERNAME=
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 37 Stepping 5, GenuineIntel
    ---------------  S Y S T E M  ---------------
    OS: Windows 7 , 64 bit Build 7601 Service Pack 1
    CPU:total 4 (2 cores per cpu, 2 threads per core) family 6 model 37 stepping 5, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, ht
    Memory: 4k page, physical 8312664k(4321372k free), swap 16623468k(11952492k free)
    vm_info: Java HotSpot(TM) 64-Bit Server VM (20.45-b01) for windows-amd64 JRE (1.6.0_45-b06), built on Apr  1 2013 12:31:37 by "java_re" with MS VC++ 8.0 (VS2005)
    time: Mon Jun 02 16:03:14 2014
    elapsed time: 47 seconds
    Sebastian

  • RVS 4000 HTTP mgmt interface hangs @ Port 80 & DHCP stops working

    This is the RVS 4000
    Firmware version 1.3.3.5
    STAR 9202 Chipset
    64 MB DRAM
    8MB Flash
    DOS, Block WAN Rq, Remote mgmt all OFF
    IPSec Tunnel none used
    Internet connection is DHCP
    LAN is set to DHCP with several Static devices defined
    DMZ is dsabled
    Functionining as a gateway
    Time is set via NTP & the NRC
    IPV4 Only
    Everything is pretty much dedault except for QoS
    Trust mode is Port, set to 4, 4, 4, 1
    ( Port 4 has a Linksys ATA plugged into it for VOIP services )
    SIP Port Forwarding is enabled for 5060
    Every day or so the Router becomes unresponsive to the HTTP mgmt interface, as well as it no longer offers DHCP services.
    When this happens the only remedy is to power reboot.
    Everthing comes back online just fine, however, the LOGS are initilaized so no data to figure out what`s going on.
    My next step is to setuo a syslog server and have the logs copied out.
    Anyone see this kind of behavior before ?
    Any ideas ??
    (  No, I have no Torrents running at all, but I do have several devices like AppleTV, PS3s etc that run streaming Video plus I have the SPA3102  )
    Thanks Derek

    Hi there Vijay !
    I cannot upgrade to that version of Firmware as my RVS4000 is a V1, not a V2.
    Is there some way I can change it such that it will load the newer Firmware ?
    This is the error I receive when trying to upgrade anyway :
    "Upgrade file is not the correct type or version for this device.
    Upgrade failed.
    Please obtain the correct file and try again."
    Otherwise the newest firmware I can load is 1.3.3.5
    ( which seems to have this problem )

  • Backup Port of WLC 5508 MGMT interface

    Dear All,
    Since WLC5508 MGMT interface is configured a AP-Mgr at the same time, can I set a Backup Port to WLC5508 MGMT interface?
    Refer to WLC configuration Guide:
    In the Backup Port text box, enter the number of the backup port assigned to the management interface. If the primary port for the management interface fails, the interface automatically moves to the backup port.
    NoteDo not define a backup port for an AP-manager interface. Port redundancy is not supported for AP-manager interfaces. If the AP-manager interface fails, all of the access points connected to the controller through that interface are evenly distributed among the other configured AP-manager interfaces
    I am confuse on this. Thus, if I need to configure the backup port for MGMT interface, i need to remove the AP-manager on MGMT interface and create a network dynamic interface for AP-Manager ?
    Thanks all.
    Jeff Chiu

    Jeff:
    You are right. The config guide is confusing.
    The config guide is talking about AP-Manager interfaces you create other than the management one. For the management interface it is called "management" but it acts as an AP-Manager interface as well. When the config guide metnions "AP-Manager interface" it does not mean the management interface but it means AP-Manager interfaces that you create beside the management interface.
    So, for the management interface you can create a backup port and I think if you are not using LAG it is a best practice to define a backup port for management.
    For other AP-Manager interfaces that you create (other than the management interface) you don't need to define the backup port.
    HTH
    Amjad
    Rating useful replies is more useful than saying "Thank you"

  • How to configure a cisco 2960 switch to support two routers(data and voice), please give me any suggestions

    HI, I need to configure a 2960 switch at a client site. They have routers already been installed on site, one is for data traffic another is for voice. I have created two vlans on switch  for data and voice. Now I couldn't get any idea what would be the default gateway on switch. 
    Please give me any suggestions.

    HI Leo, 
                Many thanks for your reply.
             But there are two up-links going from Gi 0/1 and Gi 0/2. I have configured the S/W like below, 
    interface GigabitEthernet0/1
    description UPLINK TO Data router
    switchport access vlan 100
     switchport mode access
    interface GigabitEthernet0/2
    description UPLINK TO voice router
    switchport access vlan 100
     switchport mode access
    interface Vlan1
     no ip address
     no ip route-cache
     shutdown
    interface Vlan60
     ip address 192.168.1.253 255.255.255.0
     ip helper address 192.168.1.1
     no ip route-cache
    interface Vlan100
     ip address 172.16.1.253 255.255.255.0
     ip helper address 172.16.1.1
     no ip route-cache
     I have used IP helper address, but I am getting some connecting issues on PCs and IP phones. Please suggest me, Can I manage it with two uplinks with different IP addresses. 
    Thanks in advance.

  • Cisco 7606 stacked VLAN support

    Hi All,
    Does Cisco 7606 GigabitEthernet modules support stacked VLAN (two VLAN tags)?
    If yes, how do I configure it?
    Thanks in advance.
    Regards,
    Sarah

    Hi Sean,
    Yes, it is QinQ tunneling. I am using Cat6k-Sup720.
    Cisco7606(config-vlan)#?
    VLAN configuration commands:
    are Maximum number of All Route Explorer hops for this VLAN (or
    zero if none specified)
    backupcrf Backup CRF mode of the VLAN
    bridge Bridging characteristics of the VLAN
    exit Apply changes, bump revision number, and exit mode
    media Media type of the VLAN
    mtu VLAN Maximum Transmission Unit
    name Ascii name of the VLAN
    no Negate a command or set its defaults
    parent ID number of the Parent VLAN of FDDI or Token Ring type VLANs
    private-vlan Configure a private VLAN
    remote-span Configure as Remote SPAN VLAN
    ring Ring number of FDDI or Token Ring type VLANs
    said IEEE 802.10 SAID
    shutdown Shutdown VLAN switching
    state Operational state of the VLAN
    ste Maximum number of Spanning Tree Explorer hops for this VLAN (or
    zero if none specified)
    stp Spanning tree characteristics of the VLAN
    tb-vlan1 ID number of the first translational VLAN for this VLAN (or
    zero if none)
    tb-vlan2 ID number of the second translational VLAN for this VLAN (or
    zero if none)
    Regards,
    Sarah

  • ASR 9010 switchport mode dot1q-tunnel QinQ Access

    Is there an IOS-XR ASR equivalent for a QinQ edge access port? On IOS the interface config would be:
    int fa 1/1
    switchport
    switchport mode dot1q-tunnel
    switchport access vlan 100

    Do you have ASR on both sides? If you do, VFI will work for you, lets say:
    CE------G1/1/1/1(1.1.1.1- PE1)---------------------(PE - 2.2.2.2) G2/2/2/2--------- CE
    On PE1:
    interface g1/1/1/1
    l2transport
    no shut
    l2vpn
    bridge group PE1
    bridge-domain CE1
    interface g1/1/1/1
    vfi CE1
    neighbor 2.2.2.2 pw-id 100
    On PE2:
    interface g2/2/2/2
    l2transport
    no shut
    l2vpn
    bridge group PE2
    bridge-domain CE2
    interface g2/2/2/2
    vfi CE2
    neighbor 1.1.1.1 pw-id 100

  • Cisco 1230 access point a radio lightweight mode

    Will the cisco 1230 access point work in lighweight mode if it is using a radio?

    The 1230 can be upgraded to LWAPP with the A Radio model listed below;
    Solution Requirements
    Migration from autonomous access point mode to lightweight mode is possible on these Cisco Aironet access point platforms:
    All 1130AG access points
    All 1240 AG access points
    For all IOS-based 1200 series modular access point (1200/1220 Cisco IOS Software Upgrade, 1210 and **1230 AP**) platforms, it depends on the radio:
    if 802.11G, MP21G and MP31G are supported
    if 802.11A, RM21A and RM22A are supported
    The 1200 series access points can be upgraded with any combination of supported radios: G only, A only, or both G and A.
    All 1310 AG access points
    From this good doc;
    http://www.cisco.com/en/US/products/hw/wireless/ps430/prod_technical_reference09186a00804fc3dc.html
    Hope this helps!
    Rob

  • Group Policy Management | No such interface supported

    Running Windows Server 2008 R2 as a Domain Controller and when I open Group Policy Management, click on a GPO, then click on the Settings tab, it pops up an error message that says "No such interface supported".  I've found several articles
    that talk about registering .dll files and I've done that and nothing.  I've uninstalled GPMC and reinstalled and that didn't fix anything.  Can anyone help resolve this?

    Hi Jason,
    Before going further, do we have other domain controllers? If yes, does GPMC work correctly on these domain controller? GPMC reports the error "No Such interface supported" normally is due to a missing or corrupted Windows component.
    Besides, do we update the server to the latest? If not, we can update the server to the latest and then reinstall the GPMC to see if the issue persists.
    TechNet Subscriber Support
    If you are TechNet Subscription user and have any feedback on our support quality, please send your feedback here.
    Best regards
    Frank Shen

  • There are error message "No such interface supported" when play Audio/Media from USB thumb disk with Metro APP like Xbox.

     There are error message "No such interface supported" when play Audio/Media from USB thumb disk with Metro APP like Xbox in windows. how can I solve this problem?   if I use destop player like windows media player, no such error.
    would you please give some solution for this error? thanks!

    OS is window10, Metro APP is Xbox or MultiMedia 8; any video format will occur error only by following steps:  
    a. Put Audio / Media / Photo files into USB thumb disk or Micro SD card.
    b. Connect USB thumb disk / Micro SD Card  to Platform.
    c. Open 'File Explorer', click USB thumb disk.
    d. Open audio file with metro app: Music. / Open Media file with metro app: Video./Open Photo file with metro app.

  • What is the purpose of the Serial / Normal switch on the SUP-NS3S lens support.

    What is the purpose of the Serial / Normal switch on the SUP-NS3S lens support.

    Hello Dkaer,
    The SUP-NS3S lens support is a very specific product and handled a bit differently than our consumer [and even professional] level equipment.  Meaning, we will need to consult with our broadcast lens engineers to provide a complete answer.  Once they respond back to us, the response will be posted either back to this forum thread, or relayed via email directly to you. 
    Thank you for your patience on this matter.  We hope you have a great day. 
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • File Adapter Sender - Does XI support Active connection mode?

    Does the file adapter support Active connection mode?

    What do you mean by this? R u talking about FTP connections?
    VJ

Maybe you are looking for

  • How to use one af:query for multiple VOs

    Hi all, How can we use an af:query component to query on multiple VOs? Think of a page with search area and a tabbed pannel with two tables based on different view objects. Any ideas? Thanks Version ADF Business Components 11.1.1.56.60 Java(TM) Platf

  • My iPod Nano is S cratched

    It was s crathed in 3 days by being in my pocket like Stevie did in his keynote. Now I am s ad. J

  • Flash player not working?  Java Script?

    I can't get any videos to play. Nope, no videos for me. I feel lost without youtube. When ever I try to play any video from the net, it says, "You must either have Java script turned off, or you don't have the latest version of flash." I checked, Jav

  • Rebel x3i (600D) autofocus not working in Creative Zone mode. Works okay in the Basic modes.

    I bought a Canon refurbished x3i from Canon last Summer after my Ritz Camera extended warranty became useless and my xTi (400D) died. The camera has been excellent until very recently. About a week or so ago, the autofocus stopped working. I think it

  • How to create & handle policies?

    Question from a customer (anonymized): It is my understanding that the reference implementation comes with 4 sample policies:  Ad-pol, dto-pol, sub-pol, and vod-pol.  Without a policy file, both the f4fpackager and the Adobe Access SDK fail to genera