Port triggering on Cisco IOS..?

How can I implement port triggering on Cisco? Any ideas?
I thought to use route-maps, but I see that "ip nat inside source static .."
have no option route-map :(
Any other ideas?

You are in the right track.
It will be:
ip nat inside source static [inside ip] [port] [outside ip or interface] [port]extendable
for instance to forward port 80
ip nat inside source static 192.168.1.1 80 66.125.55.254 80 extendable
Please rate helpful posts.
Thanks

Similar Messages

  • Port status on a IOS Switch

    Hi
    Is there any command with which one can know the status of the ports on a Cisco IOS Switch? I need to know if some of the ports on a particular Switch have ever been used or not. Is it possible?
    Regards // Anoop

    Hi Anup,
    How abt "sh int" or "sh int status"
    Regards,
    Ankur

  • Recovering from "no cisco IOS image file" error

    I have a aironet1200 series access point, and attempted to update it to a newer IOS software release. However it never came back up after the update, and upon reboot the 3 status lights show red, green, red, which apparently means there is 'no cisco IOS image file'. Is there a way to recover from this error? It has a RJ45 style console port, can I use thi to recover?

    Got it sorted, managed to find the manual which goes through this in it's entirety!

  • Wrong Port Statistics in Cisco Network Assistant

    Hello,
    I'm having some troubles with CNA (version 6.0). There's a few switches in the network that displays wrong information about sports activities/statistics. I've got some ports administratively down, without activity, however CNA is showing Tx and Rx rates, etc. I've already cleared counters from the application and from CLI too. If I do "show interface Gix/x/x" in the CLI, it returns results that I waited, but not in CNA, where it's showing wrong information. Moreover, some ports which should have activity and statistics, don't displays info. All rates and statistics shows 0 when I'd must see any number except 0.
    I'm talking about a stack with 3 Catalyst 3750-X 48P.
    Cisco IOS Software, C3750E Software (C3750E-UNIVERSALK9-M), Version 15.0(2)SE5, RELEASE SOFTWARE (fc1)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2013 by Cisco Systems, Inc.
    Compiled Fri 25-Oct-13 12:38 by prod_rel_team
    ROM: Bootstrap program is C3750E boot loader
    BOOTLDR: C3750E Boot Loader (C3750X-HBOOT-M) Version 12.2(53r)SE2, RELEASE SOFTWARE (fc1)
    Thanks,
    Kind regards,

    In Cisco Network Assistant, under smart ports, if I configure the switch port as Cisco Wireless/Router, it hard  codes the interface as Trunk.In this particular case what is the reason for hard coding it as trunk?
    When you are dealing with autonomous wireless access point, it's very common to have mutiple VLANs configured in the WAP, therefore you need a Trunk switch port.
    You can also configure the trunk port to allow VLANs of your choice.

  • Catalyst c3750g Cisco IOS 12.2 (25) SEE2 support SSH

    I need some help configuring SSH on a 48 port Switch Cisco WS-C3750G-48TS that is running Cisco IOS 12.2(25) SEE2.
    I have attempted to set it up, but I had no luck.  If anyone can give me any assistance to this let me know.

    Hi Mike
    Based on your existing IOS level (iP Base/IP services/Adv IP services) you should upgrade your switch to one of the IOS versions given below, to have SSH:
    c3750-ipbasek9-mz.12.2-52.SE - min flash 16, DRAM 128
    c3750-ipservicesk9-mz.12.2-52.SE - min flash 16, DRAM 128
    c3750-advipservicesk9-mz.12.2-46.SE - min flash 16, DRAM 128
    Once you have your IOS upgraded, define hostname, domain name, crypto rsa key, and transport input commands on the switch to have it converted to SSH..
    Hope this helps.. All the best
    Raj

  • Resend captured packets from cisco ios? (tcpreplay w/o WireShark)

    Hello again,
    As the title of the thread implies, is there a way to replay captured packets (as in a pcap file from the EPC protocol) from cisco ios? I am trying a work around by calling it from a connected computer, but I can't launch tcpreplay dynamically from an EEM script (mainly because I can't target the host OS from the EEM scope).
    Basically I am capturing packets in order to delay them until some arbitrary time determined by another (or even the same) EEM script. Is there a function I don't know about that I can call to put previously captured packets (stored in a pcap file) directly back on the bus as if nothing happened?
    Thanks in advance,
    -Heath

    You can't replay packets right now.  The upcoming onePK APIs will allow you to do this, however.  If you want to call tcpreplay from your EEM policy, you could send a trap to the host, which triggers the excution, or use the Remote Command Shell policy from http://www.cisco.com/go/easy to telnet/SSH to the host from the device to run the command.

  • Port mirroring on cisco 6509

    We have cisco 6509,Cisco IOS Software, s72033_rp Software (s72033_rp-ADVENTERPRISEK9_WAN-M), Version 12.2(33)SXI2a, RELEASE SOFTWARE (fc2).
    I want to know, at a time how many interfaces can be configured as a source interface and at a time how many interfaces can be configured as a destination interface?

    The 9100EM does not support port mirroring.
    You might want to find a hub and use that to mirror the traffic.
    http://shop.ebay.com/?_from=R40&_trksid=p5197.m570​.l1313&_nkw=ethernet+hub&_sacat=See-All-Categories
    Be careful though, many of those listed claim to be hubs are not and are in fact switches.

  • Cisco IOS VXML Script

    Hello All!
    I have several VXML script what work fine on Cisco IOS. Vxml1 vxml2 vxml3 for exampe
    I need create new script with following condition...
    If user press one - vxml1 should run...
    If user press two - vxml2 should run...
    etc
    How I can do this?
    Can I run script from another script?
    Or I should create one big srcipt uncluded vxml1 vxml2 vxml3 etc?
    Or other
    thank you very much!!!

    All right,
    I've been playing around with Tcl lately and I found what I need, but still cann not make Tcl script recognizing the output after Telnet session establishment, than sending the username and the password, and than the easy part, execute a command and loging off.
    I found that in Tcl I can use the command "connect" and than establish a telnet session.
    A sample script I'm banging my head with:
    tclsh
    proc telnet_switch{}{
          set success "Login successful!"
          set check "Username:"
          connect 172.26.160.6 telnet port 2046
           if {string equl $check}{
                   puts "username\n"}
              else{ puts "password\n"}
           return $success
    The command connect telnet port works on it's own, I've tested that. But how to make this simple script running? I've got an error like:
    wrong # args: should be "proc name args body"
    What I'm missing here?

  • SSLVPN with iPhone Anyconnect and Cisco IOS Router, Certificate Authentication failed

    Hello,
    i have a problem regarding the authentication with a certificate from the iPhone Anyconnect 2.5 Client to a 1802 Cisco Router.
    Cisco 1802 Router:
    Cisco IOS Software, C180X Software (C180X-ADVENTERPRISEK9-M), Version 15.1(1)T, RELEASE SOFTWARE (fc1)
    First i configured SSLVPN with username and password, in this configuration the Anyconnect Client of my iPhone works.
    then i enrolled a certificate from my Windows 2008 R2 CA to the Router with the Attributes: Server Authentication and IPSEC
    and i enrolled a certificate for my iPhone with Client Authentication and IPSEC
    after a bunch of time ( i realy could not find a really good documentation on how to do this) i got it done, in the webvpn context configuration i made this changes here:
    no aaa authentication list default
    authentication certificate
    ca trustpoint CA
    as the "SSL VPN Configuration Guide, Cisco IOS Release 15.1M&T" says: if i want only certificate authentication i had to user the "authentication certificate" command and thats it.
    as i look into the debugs it seems to me that the Router accepts the certificate of the iPhone, but then i receive a window on the iphone that wants an additional username and password authentication, and no matter what i enter there's always the same dialog coming back..
    any ideas what the problem could be???
    here is the configuration:
    webvpn gateway WEBVPN_GW_OFFICE2
    ip interface Dialer0 port 1444
    ssl trustpoint CA
    inservice
    webvpn install svc flash:/webvpn/sslclient-win-1.1.4.179.pkg sequence 1
    webvpn install svc flash:/webvpn/anyconnect-win-3.0.4235-k9.pkg sequence 2
    webvpn install svc flash:/webvpn/anyconnect-dart-win-2.5.3055-k9.pkg sequence 3
    webvpn context WEBVPN_CONTEXT2
    secondary-color white
    title-color #669999
    text-color black
    ssl authenticate verify all
    policy group WEBVPN_POLICY2
       functions svc-enabled
       mask-urls
       svc address-pool "SSLVPN_OFFICE1"
       svc default-domain "domain.internal"
       svc keep-client-installed
       svc split include 192.168.0.0 255.255.0.0
       svc dns-server primary 192.168.53.33
       svc dns-server secondary 192.168.53.35
    virtual-template 3
    default-group-policy WEBVPN_POLICY2
    gateway WEBVPN_GW_OFFICE2
    authentication certificate
    ca trustpoint CA
    inservice
    here is the debug:
    OfficeRouter1# PASSING appctx is [0x89FAFFCC]
    Nov 19 22:39:53.507: WV: sslvpn process rcvd context queue event
    Nov 19 22:39:53.507: WV: sslvpn process rcvd context queue event
    Nov 19 22:39:53.607: WV: sslvpn process rcvd context queue event
    Nov 19 22:39:53.607: WV: Entering APPL with Context: 0x86529380,
          Data buffer(buffer: 0x86543A40, data: 0x15A07AB8, len: 469,
          offset: 0, domain: 0)
    Nov 19 22:39:53.607: WV: http request: / with no cookie
    Nov 19 22:39:53.607: WV: validated_tp : CA cert_username :  matched_ctx :
    Nov 19 22:39:53.607: WV: Received appinfo
    validated_tp : CA, matched_ctx : ,cert_username :
    Nov 19 22:39:53.607: WV: Trustpoint match successful
    Nov 19 22:39:53.607: WV: Extracted username:  pass: ?
    Nov 19 22:39:53.607: WV: Client side Chunk data written..
    buffer=0x86543640 total_len=661 bytes=661 tcb=0x8811FE60
    Nov 19 22:39:53.607: WV: Appl. processing Failed : 2
    Nov 19 22:39:53.607: WV: sslvpn process rcvd context queue event
    BueroRouter1# PASSING appctx is [0x89FAEEC4]
    Nov 19 22:40:24.028: WV: sslvpn process rcvd context queue event
    Nov 19 22:40:24.032: WV: sslvpn process rcvd context queue event
    Nov 19 22:40:24.132: WV: sslvpn process rcvd context queue event
    Nov 19 22:40:24.132: WV: Entering APPL with Context: 0x86529380,
          Data buffer(buffer: 0x86543A40, data: 0x160C4038, len: 469,
          offset: 0, domain: 0)
    Nov 19 22:40:24.132: WV: http request: / with no cookie
    Nov 19 22:40:24.132: WV: validated_tp : CA cert_username :  matched_ctx :
    Nov 19 22:40:24.132: WV: Received appinfo
    validated_tp : CA, matched_ctx : ,cert_username :
    Nov 19 22:40:24.132: WV: Trustpoint match successful
    Nov 19 22:40:24.132: WV: Extracted username:  pass: ?
    Nov 19 22:40:24.132: WV: Client side Chunk data written..
    buffer=0x86543640 total_len=661 bytes=661 tcb=0x88D11EEC
    Nov 19 22:40:24.136: WV: Appl. processing Failed : 2
    Nov 19 22:40:24.136: WV: sslvpn process rcvd context queue event
    Nov 19 22:40:39.764: WV: sslvpn process rcvd context queue event
    Nov 19 22:40:39.880: WV: sslvpn process rcvd context queue event
    Nov 19 22:40:39.892: WV: sslvpn process rcvd context queue event
    Nov 19 22:40:39.892: WV: Entering APPL with Context: 0x86529380,
          Data buffer(buffer: 0x86543A40, data: 0x1616FD38, len: 610,
          offset: 0, domain: 0)
    Nov 19 22:40:39.892: WV: http request: /webvpn.html with domain cookie
    Nov 19 22:40:39.892: WV: validated_tp :  cert_username :  matched_ctx :
    Nov 19 22:40:39.892: WV: Received appinfo
    validated_tp : CA, matched_ctx : ,cert_username :
    Nov 19 22:40:39.892: WV: Trustpoint match successful
    Nov 19 22:40:39.892: WV: Client side Chunk data written..
    buffer=0x86543640 total_len=607 bytes=607 tcb=0x88D11EEC
    Nov 19 22:40:39.892: WV: Appl. processing Failed : 2
    Nov 19 22:40:39.892: WV: sslvpn process rcvd context queue event

    http://www.cisco.com/en/US/products/ps8411/products_qanda_item09186a00809aec31.shtml
    HI,
    Refer to
    AnyConnect VPN Client FAQ
    Q. Is it possible to connect the iPad, iPod, or iPhone AnyConnect VPN Client to a Cisco IOS router?
    A. No. It is not possible to connect  the iPad, iPod, or iPhone AnyConnect VPN Client to a Cisco IOS router.  AnyConnect on iPad/iPhone can connect only to an ASA that runs version  8.0(3).1 or later. Cisco IOS is not supported by the AnyConnect VPN  Client for Apple iOS. For more information, refer to the Security Appliances and Software Supported section of the Release Notes for Cisco AnyConnect Secure Mobility Client 2.4, Apple iOS 4.2 and 4.3.

  • ISE 1.1.3 en Cisco IOS SCEP

    Hi,
    I'm running Cisco ISE 1.1.3.124 and a Cisco IOS 2811 (c2800nm-spservicesk9-mz.150-1.M2.bin) which I configured the be a SCEP server.
    PKI Authentication and enrollment of a Cisco switch with this SCEP server is running well but BYOD clients enrollment via EAP-TLS (1024/2048) giving me the following error on the Cisco IOS SCEP server:
    SCEP#
    .Mar 17 15:21:59.446: Sun, 17 Mar 2013 15:21:59 GMT 10.0.0.164 /cgi-bin/pkiclient.exe ok
            Protocol = HTTP/1.1 Method = GET Query = operation=PKIOperation&message=MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgU
    AMIAGCSqGSIb3DQEHAaCAJIAEggPoMIAGCSqGSIb3DQEHA6CAMIACAQAxggEvMIIBKwIBADATMA4xDDAKBgNVBAMTA2lzZQIBA
    TANBgkqhkiG9w0BAQEFAASCAQAmbK6WZ5L6gw+uh7h4Qi53XL76QsBNcY8E6cMxWDp8hWbLvujNOylSvJLF
    .Mar 17 15:21:59.446:
    .Mar 17 15:21:59.454: CRYPTO_CS: received a SCEP request, 3652 bytes
    .Mar 17 15:21:59.454: CRYPTO_CS: read SCEP: registered and bound service SCEP_READ_DB_10  
    .Mar 17 15:21:59.482: CRYPTO_CS: scep msg type - 19
    .Mar 17 15:21:59.482: CRYPTO_CS: trans id - 9871e81c65121310b77df8b341c7c887a5392da2
    .Mar 17 15:21:59.486: CRYPTO_CS: failed to open env data
    .Mar 17 15:21:59.486: CRYPTO_CS: read SCEP: unregistered and unbound service SCEP_READ_DB_10  
    .Mar 17 15:21:59.486: CRYPTO_CS: failed to read SCEP request
    .Mar 17 15:21:59.502: Sun, 17 Mar 2013 15:21:59 GMT 10.0.0.164 /cgi-bin/pkiclient.exe ok
    SCEP#
    I'm stuck now on the message: failed to open env data. So can anyone explain what the meaning is of this message or maybe know if IOS SCEP with ISE is supported ?
    Thanks in advance.
    greetz Michel
    btw the tracelog of the switch enrollment with IOS SCEP is below:
    SCEP#
    .Mar 17 14:57:10.932: Sun, 17 Mar 2013 14:57:10 GMT 10.0.0.161 /cgi-bin/pkiclient.exe ok
            Protocol = HTTP/1.0 Method = GET Query = operation=PKIOperation&message=MIIGWgYJKoZIhvcNAQcCoIIGSzCCBkcCAQExCzAJBgUrDgMCGgUAMIIDAAYJKoZI
    hvcNAQcBoIIC8QSCAu0wggLpBgkqhkiG9w0BBwOgggLaMIIC1gIBADGBujCBtwIB
    ADAgMBsxGTAXBgNVBAMTEGNhLndlc3R3aWp6ZXIubmwCAQEwDQYJKoZIhvcNAQEB
    BQAEgYAo/LNaINm+tcgzF8V8d7d5x
    .Mar 17 14:57:10.932:
    .Mar 17 14:57:10.936: CRYPTO_CS: received a SCEP request, 2210 bytes
    .Mar 17 14:57:10.940: CRYPTO_CS: read SCEP: registered and bound service SCEP_READ_DB_1   
    .Mar 17 14:57:10.948: CRYPTO_CS: scep msg type - 19
    .Mar 17 14:57:10.948: CRYPTO_CS: trans id - 59D142A6D0F525668626A435229BAAF1
    .Mar 17 14:57:11.040: CRYPTO_CS: read SCEP: unregistered and unbound service SCEP_READ_DB_1   
    .Mar 17 14:57:11.040: CRYPTO_CS: received an enrollment request
    .Mar 17 14:57:11.040: CRYPTO_PKI: creating trustpoint clone ise1
    .Mar 17 14:57:11.040: CRYPTO_CS: checking policy for enrollment request ID=1
    .Mar 17 14:57:11.040: CRYPTO_CS: request has been authorized, transaction id=59D142A6D0F525668626A435229BAAF1
    .Mar 17 14:57:11.040: CRYPTO_CS: locking the CS
    .Mar 17 14:57:11.040: CRYPTO_CS: added CDP extension
    .Mar 17 14:57:11.044: CRYPTO_CS: added key usage extension
    .Mar 17 14:57:11.044: CRYPTO_CS: Validity: 13:57:11 UTC Mar 17 2013-13:57:11 UTC Oct 3 2013
    .Mar 17 14:57:11.128: CRYPTO_CS: writing serial number 0x2.
    .Mar 17 14:57:11.180: CRYPTO_CS: file opened: nvram:ise.ser
    .Mar 17 14:57:11.180: CRYPTO_CS: Writing 32 bytes to ser file
    .Mar 17 14:57:13.864: CRYPTO_CS: reqID=1 granted, fingerprint=2
    .Mar 17 14:57:13.864: CRYPTO_CS: unlocking the CS
    .Mar 17 14:57:13.864: CRYPTO_CS: write SCEP: registered and bound service SCEP_WRTE_DB_1   
    .Mar 17 14:57:13.984: CRYPTO_CS: write SCEP: unregistered and unbound service SCEP_WRTE_DB_1   
    .Mar 17 14:57:13.988: CRYPTO_CS: Certificate generated and sent to requestor
    .Mar 17 14:57:13.988: CRYPTO_CS: removing trustpoint clone ise1

    Michel,
    Officially supported it is not:
    http://tools.cisco.com/Support/BugToolKit/search/getBugDetails.do?method=fetchBugDetails&bugId=CSCud86973
    Some people mentioned varios degrees of "having it working".
    In your case it's the envelope data which appears to be a problem for IOS.
    M.

  • Basic questions about CISCO IOS

    Hi everybody, Jack here,
    I have some basic questions about the Cisco IOS, could someone help me addressing some of them please? Any feedback would be greatly appreciated.
    Basically, I have two IP addresses assigned by our Cable ISP. From what I understood you can configure a Cisco router for multiple IP addresses using the IOS, thereby allowing someone like myself to take advantage of having multiple IP addresses. This may seem unnecessary to some, but I've always wanted to put the 2nd IP address to use, since after all, I've been paying for it.
    I was just wondering if someone could confirm that what I'm hoping to accomplish is indeed within the capability of the Cisco IOS (i.e. Fully utilize my 2 IP addresses). As well, if someone could kindly suggest a decent CISCO router for online gaming home use that would be super awesome!
    Thank you all so much for reading through the wall of text:)
    Jack

    Jack
    Certainly using multiple IP addresses is in the capability of Cisco IOS routers. How they can be used depends on the relationship of the IP addresses. I am assuming that we are talking about IP addresses assigned for the user to use and that the IP address for the ISP connection is not one of these that we are talking about.
    If both of the IP addresses that you have been assigned are within the same subnet then you would assign one of the addresses to the router interface to establish IP communication between the router and the ISP and to enable Internet connectivity for the devices inside your network that will use the router as their gateway to the Internet. The other address that is assigned can be used for address translation and in particular for static address translation which would make one of your devices inside to be reachable for connections initiated from the Internet (if that is something that you might want to do).
    If the addresses that are assigned to you are in different subnets then you could assign one address to the outside router interface and assign the other address to the router inside interface. Or you could use the second address for address translation.
    I do not have much expertise with online gaming, but I would think that either the Cisco 881 router or the 890 router might be appropriate for you. If 100 Mb connection is sufficient then probably the 881 would be the one to look at. If you need Gig connection then look at the 890.
    HTH
    Rick

  • Help with Port Triggering

    Okay, I have look around for many guide but I can't seem to get the port trigginger to work my Wireless N Router. I have 2 xbox 360s in the house so I'm not able to use port forwarding. I've tried to do port triggering on my own but every guide is to a none verizion type router. Nothing in the guides match the interface I'm giving with. I dont' know what I'm suppose to do. Please, does anyone know how to port trigger for the xbox live with a verizon router?

    http://www.pcwintech.com/port-triggering-actiontec-mi424-wr-verizon-firmware
    Step 1.
    Open your favorite web browser and input your routers ip address in the address bar.
    Please note that you must have the http:// in order to connect to your router/modem properly.
    Need help finding you router IP address? Click here
    Step 2.
    Enter your username and password and click 'OK'
    Click To View Full Picture
    If you don't know it you can check our list of default router and modem password list here.
    If you have changed it and don't remember it you may have to reset your device to factory default using the reset button on most routers.
    Step 3.
    Once logged into your router click on "Firewall Settings"
    Set the firewall to 'Minimum Security' to allow Inbound connections.
    Now Click 'Apply'
    When the page is done reloading click on 'Port Triggering'
    Click To View Full Picture
    Step 4.
    Click 'Add'
    Click To View Full Picture
    Step 5.
    For 'Outgoing Trigger Ports' click on 'New Trigger Ports'
    Click To View Full Picture
    Step 6.
    For 'Protocol' choose your protocol, normally TCP or UDP.
    For 'Source Ports' choose 'Any'
    For 'Destination Ports' Choose either 'Range' or 'Single' then enter the ports to be used as the trigger.
    Example: 2100 or 2100 - 2105
    Click 'Apply'
    Click To View Full Picture
    Step 7.
    For 'Incoming Ports to Open' click on 'New Opened Ports'
    Click To View Full Picture
    Step 8.
    For 'Protocol' choose your protocol, normally TCP or UDP.
    For 'Source Ports' choose 'Any'
    For 'Destination Ports' Choose either 'Range' or 'Single' then enter the ports to be forwared.
    Example: 2100 or 2100 - 2105
    Click 'Apply'
    Click To View Full Picture
    Step 9.
    If you have more ports to add repeat steps 7 & 8.
    Once all ports have been added give the service a name.
    For 'Service Name' give your entry a unique name.
    Now click 'Apply'
    Click To View Full Picture
    All done!

  • Help: Port forward in Cisco SOHO 97

    Hi there!
    I have a Cisco SOHO 97.
    The IP is: 10.0.0.1/24
    Gw: 0.0.0.0
    *Default route via DIALER1
    I also have a RV042 configured as VPN Server (PPTP and IPSec).
    The IP is: 10.0.0.2/24
    I need help to configure the router to I be able to connect to VPN server from OUTSIDE-WORLD.
    I imagine I need Port forwarding from Cisco SOHO to RV042.
    I hope for possibles answers!
    Thanks!

    Sorry i found the issue.
    The problem was that, i wanted to redirect port 443 (https) to an private address.
    But by default port 443 is reserved to access ASA via https for management.
    I just reserved another port 888 for https management access and now i can redirect port 443 normaly as i wanted.
    Using this command: http server enable 888
    Germain

  • Configure Cisco Mediatrace, Cisco IOS IP SLA, and Performance Monitoring

    Hi all,
    I am implementing Cisco Prime Collaboration to monitor the quality of the VoIP call.
    I am following all the steps that I have to do to accomplish this task at this link:
    http://docwiki.cisco.com/wiki/Setting_up_Devices_for_Prime_Collaboration_Assurance#Configuring_Unified_Contact_Center_Enterprise_Devices
    And now I am arrived on this step:
    Configure Cisco Mediatrace, Cisco IOS IP SLA, and Performance Monitoring
    Not all the Cisco devices that I have on the network are "Mediatrace, IP SLA and Performance Monitoring" capabilities. The core switch is one of them.
    What will happen if some devices are configured with these capabilities and some are not?
    Are the data provided from Cisco Collaboration still reliable?
    Thanks in advance.
    Luigi

    I can't see a reason why the 2 features won't work together. The 2 features will work just fine with each other.
    Unfortunately there is no sample config with both feature in the same document, but it will work just fine.

  • Cisco IOS XE is vulnerable to CVE-2014-0160 - aka Heartbleed CSCuo19730 on Cisco 4500E IOS XE?

    Hello Experts,
    I need to find out what exact IOS XE software version on Catalyst 4507E will affect by Heartbleed.
    Cisco WS-C4507R+E
    WS-X45-SUP7-E
    Thanks in advance.

    @apieper, looking at the bug details, it doesn't look like you are affected.
    Conditions:
    Cisco IOS XE devices running release 3.11.0S, 3.11.1S or 3.12.0S and with the WebUI interface over HTTPs enabled. No other versions of Cisco IOS XE are affected.
    Devices with the WebUI interface enabled and using HTTPs as transport protocol will include the following configuration:
    transport-map type persistent webui http-webui
    secure-server
    ip http secure-server
    transport type persistent webui input http-webui
    Devices running IOS XE release 3.11.0S, 3.11.1S or 3.12.0S but WITHOUT the WebUI interface enabled, or with the WebUI interface enabled but NOT using HTTPs as transport protocol are NOT AFFECTED by this vulnerability.
    Devices running IOS XE release 3.11.0S, 3.11.1S or 3.12.0S and with the HTTPs server enabled (by including in their configuration the line "ip http secure-server") are NOT affected. Both the HTTPs server and the WebUI interface need to be enabled for a device to be vulnerable.

Maybe you are looking for

  • I need to replace one of my hard drives for Power Mac G5

    Hi guys, I've been having some trouble turning on my computer. I found out that one of my hard drives (I have two) have been damaged. The damaged hard drive is 250 gigs. Its a MAXTOR hard drive and on the top right corner it says "DiamondMax 10" Then

  • How can I get the "pageContext" object in jsp page?

    Hi everyone: I want to get struts's DataSource object in jsp page.So I should get the PageContext object in jsp page.My code is: ///////////////////datatest.jsp///////////////////////////////////      DataSource ds=(DataSource)pageContext.getAttribut

  • Image resize is less than acceptable

    I really like Motion, but am dissapointed in its ability to resize image elements. When you get down to a small percentage the quality goes downhill. I'm guessing that the resampling is not the best. On a PSA tag I wanted a logo to start at bug size

  • Ibook and lcd tv

    Hi, I just got a new lcd tv and was hoping there will be a way to hook my ibook up to it, and use that as a monitor.

  • Infiniband on Solaris 10?

    Does anyone succeed to enable IPoIB on Solaris 10 when use X1233A ?