How to change Nexus 1000v (N1KV) flow exporter's source interface?

Dear ALL,
I am trying to setup NetFlow from a N1000v towards a NAM, and I need to change the 'flow exporter's source interface from 'mgmt 0' to something else.
I've encountered the following problems:
1. Even tho the Cisco document here describes that the source interface can be changed, logging into the CLI of N1000v does not give alternative options:
N1k# conf t
N1k(config)# flow exporter TEST1
N1k(config-flow-explorter)# source ?
    mgmt    Management interface
N1k(config-flow-explorter)# source mgmt ?
    <0-0>    Management interface number
N1k(config-flow-explorter)# source mgmt 0 ?
    <CR>
N1k(config-flow-explorter)#
2. In order to be able to use other source interface for NetFlow than 'mgmt 0' I would need a L3 interface. I am kind of missing the concept of a 'interface vlan' used in IOS from NX-OS. I tried to look around and find documentation, explanations, however could not find anything useful yet.
NX-OS running on N1k is 4.0(4)SV1(3b)
Could you please advise on this topic?
Thanks,
Andras

Hi Padma,
and
Happy New Year. Best Whishes
I found some missconfiguration in my port profile, and when associate correct NIC with coreect port profiles everything work nice
Thank you.

Similar Messages

  • How to change Nexus 1010 and Nexus 1000v IP address

    Hi Experts,
    We had run two VSM and one NAM in the Nexus 1010. The Nexus 1010 version is 4.2.1.SP1.4. And the Nexus 1000v version is 4.0.4.SV1.3c. Now we must to change management IP address to the other one. Where can I find the SOP or config sample? And have anything I must to remind?

    If it's only the mgmt0 IP address that you are changing, then you can just enter the new address under the mgmt0 interface. It will automatically sync with the VC.
    I guess you are trying to change the IP address of the VC plus the management VLAN as well. One way of doing this is:
    - From the Nexus 1000v, disconnect the connection to the VC (svs connection -> no connect)
    - Change the VC IP address and connect to it (svs connection -> remote ip address)
    - Change the Nexus 1000v mgmt0 address
    - Change the mgmt VLAN on the N1010
    - Change the mgmt address of the N1010
    - Reconnect the Nexus 1000v back to the VC (svs connection -> connect)
    Correspondingly, change the VLAN configuration on the upstream switch plus the connection to the VC as well.
    Thanks,
    Shankar

  • How to change the default structure when exporting data in CSV format?

    Hello,
    can some one tell us how to change the default structure in CRM when exporting lists in CSV format (with Option "Always use unformatted list format (CSV) for download" ? Because we want to add a new structure for our own -is it possible ?
    If it is possible where can we find these structure ? In the blueprint customizing ?
    Thank you very much,
    Christian

    There is a workaround to move from 1.5 version to the older 1.4 version. But this could be specific to the browser setting the JRE version.
    Excerpts from sun docs:
    However, a user can still run older versions. To do so, launch the Java Plug-in Control Panel for the older version, then (re)select the browser in the Browser tab.
    Example:
    Assume you are running on Microsoft Windows with Microsoft Internet Explorer, have first installed version 1.4.2, then version 5.0, and you want to run 1.4.2.
    Go to the j2re1.4.2\bin directory where JRE 1.4.2 was installed. On a Windows default installation, this would be here: C:\Program Files\Java\j2re1.4.2\bin
    Double-click the jpicpl32.exe file located there. It will launch the control panel for 1.4.2.
    Select the Browser tab. Microsoft Internet Explorer might still appear to be set (checked). However, when 5.0 was installed, the registration of the 1.4.2 JRE with Internet Explorer was overwritten by the 5.0 JRE.
    If Microsoft Internet Explorer is shown as checked, uncheck it and click Apply. You will see a confirmation dialog stating that browser settings have changed.
    Check Microsoft Internet Explorer and click Apply. You should see a confirmation dialog.
    Restart the browser. It should now use the 1.4.2 JRE for conventional APPLET tags.
    Details are here
    http://java.sun.com/j2se/1.5.0/docs/guide/deployment/deployment-guide/jcp.html
    My system (Windows XP) has the version 1.5_09 set as the default. However i just installed JRE 1.5_06 and would like to revert back to _06 as the default JRE..
    Will update if i find more information

  • How to Change Database of Report before Exporting?

    I am having difficulties changing the database that the report should run against.
    We are using Oracle.  In the past when scheduling a report through CE, I would manipuate the Desktop.ReportLogons object.  For Oracle I simple changed the CustomServerName, CustomUserName, and CustomPassword properties.  Everything worked fine when the report was scheduled and ran.
    Now I am doing an on-demand report without an interactive viewer.  I am doing everything in code using RasAppFactory and the ReportClientDocument.
    I am looking at the DatabaseController of ReportClientDocument.  I thought I could just use the LogonEx method passing in the server, user, password, and an empty string for the database since for Oracle connections you only specify server and not database.  However, it is still trying to connect to the defined database.
    Can someone point me to an Oracle specific example of how to properly change database info when report runs?
    Do I need to be using other methods like one of the SetTableLocation methods?
    Thanks in advance for any help.

    Hello, Stephen;
    You are correct, with Oracle you do not need the Database property.
    The person logged on to Business Objects Enterprise through the RAS .NET application would need rights to make the change in database connections. Can the usr with the same logon make the change directly in Enterprise?
    The ReportClientDocument separates the Server Name and Database from the User ID and Password with the PropertyBag. The convenience methods such as LogonEx will only change the User ID and Password. To change all four properties you need the full RAS logon code.
    The full logon for RAS would use code as shown below.
    Elaine
    ==========================================
    Imports System
    Imports Microsoft.Win32
    Imports CrystalDecisions.Enterprise
    Imports CrystalDecisions.Enterprise.Desktop
    Imports CrystalDecisions.CrystalReports.TemplateEngine
    Imports CrystalDecisions.ReportAppServer.ClientDoc
    Imports CrystalDecisions.ReportAppServer.Controllers
    Imports CrystalDecisions.ReportAppServer.ReportDefModel
    Imports CrystalDecisions.ReportAppServer.DataDefModel
    Imports CrystalDecisions.ReportAppServer.CommonObjectModel
    Imports CrystalDecisions.ReportAppServer.ObjectFactory
    Partial Class Logon
        Inherits System.Web.UI.Page
        Dim mySampleReportName As String = "SimpleSetLogonInfo.rpt"
        Dim crServerName As String = "myOracle"
        Dim crDatabaseName As String = ""
        Dim databaseUserName As String = "tester"
        Dim databasePassword As String = "tester"
        Dim crDatabaseController As DatabaseController
        Dim crDatabase As Database
        Dim crTableOld, crTableNew As Table
        Protected Sub Page_Init(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Init
            ConfigureCrystalReports()
        End Sub
        Private Sub ConfigureCrystalReports()
            DatabaseLogon_managedRAS()
        End Sub
        Private Sub DatabaseLogon_managedRAS()
            Dim mySessionMgr As New SessionMgr()
            Dim myEnterpriseSession As EnterpriseSession
            Dim myReportAppFactory As ReportAppFactory
            Dim myInfoStore As InfoStore
            Dim myInfoObjects As InfoObjects
            Dim myInfoObject As InfoObject
            Dim myReportClientDocument As ReportClientDocument
            Dim myEnterpriseService As EnterpriseService
            Dim myObject As Object
            myEnterpriseSession = mySessionMgr.Logon("administrator", "", "CMS_Server", "secEnterprise")
            myEnterpriseService = myEnterpriseSession.GetService("InfoStore")
            myInfoStore = New InfoStore(myEnterpriseService)
            myInfoObjects = myInfoStore.Query("Select SI_ID From CI_INFOOBJECTS Where SI_NAME='" + mySampleReportName + "' And SI_INSTANCE=0")
            myInfoObject = myInfoObjects(1)
            myObject = myEnterpriseSession.GetService("", "RASReportFactory").Interface
            myReportAppFactory = CType(myObject, ReportAppFactory)
            myReportClientDocument = myReportAppFactory.OpenDocument(myInfoObject.ID, 0)
            'Convenience methods not to change Database or Server name from what is in the report
            'myReportClientDocument.DatabaseController.logon("UID", "PWD")
            'myReportClientDocument.DatabaseController.LogonEx("myServerName", "myDatabase", "UID", "PWD")
            crDatabase = myReportClientDocument.DatabaseController.Database()
            crDatabaseController = myReportClientDocument.DatabaseController()
            ' Loop through all the tables in the main
            ' report and set their new table information.
            For Each crTableOld In crDatabase.Tables
                crTableNew = GetNewTable(crTableOld, crServerName, crDatabaseName, databaseUserName, databasePassword)
                crDatabaseController.SetTableLocation(crTableOld, crTableNew)
                crTableNew = Nothing
            Next
            crDatabase = Nothing
            crTableOld = Nothing
            myCrystalReportViewer.ReportSource = myReportClientDocument
        End Sub
        Private Function GetNewTable(ByVal crTableOld As Table, ByRef serverName As String, ByRef databaseName As String, ByRef userName As String, ByRef password As String) As Table
            ' Create crTableNew as a new table, then fill its properties.
            Dim crTableNew As New Table
            Dim crAttributes, crLogonInfo As PropertyBag
            ' Set some of the properties of the new table object.
            crTableNew.ConnectionInfo.UserName = userName
            crTableNew.ConnectionInfo.Password = password
            crTableNew.ConnectionInfo.Kind = crTableOld.ConnectionInfo.Kind()
            crTableNew.Name = crTableOld.Name
            crTableNew.Alias = crTableOld.Alias
            ' Make a copy of the connectionInfo.Attributes and apply them to the new table.
            crTableNew.ConnectionInfo.Attributes = crTableOld.ConnectionInfo.Attributes.Clone(True)
            crAttributes = crTableNew.ConnectionInfo.Attributes()
            ' Check to ensure the connection info Kind is correct then change the a
            ' appropriate properties in the PropertyBag.
            ' These will vary from report to report using ODBC, OLEDB or Native drivers
            ' To find out your properties
            ' open your report in the Crystal Reports Designer and go to Database,
            ' Set Location menu. Check the properties of your connection and note
            ' the name of the properties that will change.
    'ODBC to Oracle "Data Source Name" and "Table Name" with "Owner"
    'OLEDB to Oracle "Provider" "Data Source" and "Table Name" with "Owner"
            If crTableNew.ConnectionInfo.Kind = CrConnectionInfoKindEnum.crConnectionInfoKindCRQE Then
                crLogonInfo = CType(crAttributes("QE_LogonProperties"), PropertyBag)
                crLogonInfo("Data Source") = crServerName
                'MS SQL Server OLEDB
                'Leave out for Oracle
                'crLogonInfo("Initial Catalog") = crDatabaseName
            End If
            ' Adjust the qualified name, then return the new table object if the table name has changed
            crTableNew.QualifiedName = "Owner." & crTableNew.Name
            Return crTableNew
        End Function
    End Class

  • How to change the separator in .csv export

    Hi
    Is it possible to change the separator in the .csv export
    In Denmark (including in Danish Excel) we use semicolon (;) as the standard separator for .csv files
    Regards
    Klaus Mogensen

    There will be in the next release. Under worksheet preferences, you can set whatever delimiter you like.
    Barry

  • Ora VM 3.2.1 - how to change IP address of VM server? (management interface)

    Hi, I cannot find in doc how I can change IP address of VM server.
    I have static IP address 10.3.37.29, and should be 10.3.37.27.
    I have 8 virtual guests on this server, I cannot aford to lose it.
    Can everybody tell mi any tip, how to manage it, please?
    Thank you in advance
    Vladislav

    Hi ,
    Please use the below link to change the Ip address of the server :
    http://www.cisco.com/en/US/docs/net_mgmt/ciscoworks_common_services_software/3.3/user/guide/diagnos.html#wp1165007
    Thanks--
    AfroZ
    If this post answers your question, please click the "Correct Answer" button"

  • How to change a field name in the client web interface

    Hello,
    I need to change name of the field in the Shopping cart Basic data (field Location). Where could I do this?
    Thank you in advance,
    Olga

    Hi
    <u>Which SRM Version are you using ?</u>
    Incase you do not want the storage location fiels displayed in the item details then you can modify the template saplbbp_sc_ui_its_300.html to hide the field.
    By creating screen variant in transcation SHD0 and implementing that screen variant in BBP_screenvariant BADI you can hide the fields.
    Let me know the transaction and fields what you want to hide I can look at it.
    <b>Related links -></b>
    Hide field in SRM"Shopping Cart Status-> Finding shopping cart" html screen
    Re: shide some search criteria in Shopping Cart Status
    Note 974236 - Shopping Cart - Field control
    Regards
    - Atul

  • How to change iOS 7 apps icons? because the interface is so ugly and childishly

    i dont like the childish system interface they lost the esence of iphone , my iphone is now a nokia or samsung garbage

    I agree 100% but you wont get heard here.
    If you want apple to hear you, use: http://www.apple.com/feedback
    Write them, I did. Hopefully they will turn back like Coke did with Coke II.

  • Nexus 1000V, 4K and 5K

    I'm looking over the deployment guide for 1000Vs, and am not clear on the design.  If I have a Nexus 4k connecting to a Nexus 5k, how does the Nexus 1000V fit?  What I'm seeing is that typically a vpc is built between the Nexus 1k and a clustered upstream switch, such as Nexus 5ks, or VSS with 6500s.  However, if I already have a vpc between a Nexus 4k and a pair of 5ks, what affect does adding 1ks to the configuration have?  Or is the idea to move the vpc back to the 1000Vs instead of the between the 4k and 5ks?  Or perhaps is using a 1000V more suited when you have blades that are pass through modules where each blade has its own NIC or there are blade switches (non Nexus 4k) in the chassis? 
    thank you,
    Bill

    hi bill
    mainly there are two options
    first option if to use the N1K with a clustered up stream switches as you mentioned vPC or VSS
    in this case all what you need form the N1K/ESXi host is to use a normal portchannel and multihome th eport channel links to both of these switches ( this is a recommended solution if applicable )
    option two is to use non-clustered switches like in your case the two 4K switches as the upstream switches with the N1K
    and in this case you can use vPC host mode where the N1K with new releases uses mac-pining to chose uplink subgroup within the port channel
    see below:

  • How do you change the music for an export from a selection of pictures?

    I have iTunes and know how to change the music for a slideshow but if I select pictures from a folder and export to QuickTime how do I change the music?
    There is an option to "Add currently selected music to movie" but it always plays the same tune. How do I get an option to select an iTunes song like with the Slideshow? Where are the slideshow sample music files stored? There are 11 files in the sample folder but I can't find any of them on my drive.

    Maybe there is some confusion in what I'm telling you. There are two types of slideshows in iPhoto. One creates a special slideshow album that appears in the Source pane on the left side. This is not the one I'm talking about. (You create one of these slideshow albums when you select some photos and click the Slideshow icon (the one with a Plus sign on it) at the bottom of the iPhoto window.
    The other slideshow is done from the main library window or from a regular album (not a slideshow album). You either select some photos (or a roll) from the Library or select an album (with a folder icon). Then click the Play button which is on the bottom right hand side of the iPhoto window.
    If your Play button is on the left side, then you aren't using the correct one. The one that appears on the left side shows when you've selected a Slideshow Album from the source pane. This type of album has an icon that looks like a couple of slides (the kind you put in a projector).
    Does that make a difference?

  • I have 100 groups in planning for those 100 groups i want to build roles like interactive,view user,planner etc.for those how to change in export -import folder .xml file  in that edit  how  to change user roles in that xml it will generate automatic id.h

    I have 100 groups in planning for those 100 groups i want to build roles like interactive,view user,planner etc.for those how to change in export -import folder .xml file  in that edit  how  to change user roles in that xml it will generate automatic id.how to do that in xml file ?

    Thanks john for you are reply.
    I had tried what you sad.I open shared service in that foundation project i had export shared service.after that in import-export file.In that role.csv,user.csv,group.csv.Like this file have.When i open user file added some users after i trying save in excel it shown messgse
    I click yes and save the .csv file and import from share servie. i got error like this
    am i doing right way john.or explain clearly

  • How can I do change File Character when I export application (4.2.1.00.08)

    Hello,
    Please, help me!
    I need to change "File Character" when I export application with Apex 4.2.1.00.08 version, but this option, is not possible. The ComboBox already select with
    "Unicode UTF-8]', but I need "ISO-8859-1 - Europa Ocidental", how can I do change it?
    Thanks

    Please register for a "real" user account rather than the anonymous user7266483.
    You can not change it on the export...this is simply set to whatever is in effect in the DB.
    However, it is totally unnecessary to change it on export. If the database into which you need to import the exported application is "ISO-8859-1 - Europa Ocidental", at the time you begin to import, it will default to "ISO-8859-1 - Europa Ocidental". You need to change this to the character set under which it was exported. In this case, it was "Unicode UTF-8".
    It does not matter that you export and import in the same character set. It only matters that you correctly set the import to match how it was exported.
    -Joe

  • How do you save changes made in iPhoto, and export the changed file.  It keeps reverting back to the original.

    How do you save changes made in iPhote, and export the changed picture file? When I select export, current format, it reverts to the original, wiping out all my work.

    Try trash the com.apple.iPhoto.plist file from the HD/Users/ Your Name / library / preferences folder.
    (On 10.7 or later: Hold the option (or alt) key while clicking on the Go menu in Finder to access the User Library)
    (Remember you'll need to reset your User options afterwards. These include minor settings like the window colour and so on. Note: If you've moved your library you'll need to point iPhoto at it again.)
    What's the plist file?
    For new users: Every application on your Mac has an accompanying plist file. It records certain User choices. For instance, in your favourite Word Processor it remembers your choice of Default Font, on your Web Browser is remembers things like your choice of Home Page. It even recalls what windows you had open last if your app allows you to pick up from where you left off last. The iPhoto plist file remembers things like the location of the Library, your choice of background colour, whether you are running a Referenced or Managed Library, what preferences you have for autosplitting events and so on. Trashing the plist file forces the app to generate a new one on the next launch, and this restores things to the Factory Defaults. Hence, if you've changed any of these things you'll need to reset them. If you haven't, then no bother. Trashing the plist file is Mac troubleshooting 101.

  • How to change default ports for task flow application?

    I deploy a task form with the following hwtaskflow.xml information:
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <hwTaskFlows xmlns="http://xmlns.oracle.com/bpel/workflow/hwTaskFlowProperties">
    <ApplicationName>worklist</ApplicationName>
    <LookupType>LOCAL</LookupType>
    <TaskFlowDeploy>false</TaskFlowDeploy>
    <TaskFlowServer>
    *<hostName/>*
    *<httpPort/>*
    *<httpsPort/>*
    </TaskFlowServer>
    <hwTaskFlow>
    <WorkflowName>ApproverHumanTask</WorkflowName>
    <TaskDefinitionNamespace>http://xmlns.oracle.com/MyApp/MyComposite/MyTask</TaskDefinitionNamespace>
    <TaskFlowId>MyTask_TaskFlow</TaskFlowId>
    <TaskFlowFileName>WEB-INF/MyTask_TaskFlow.xml</TaskFlowFileName>
    </hwTaskFlow>
    </hwTaskFlows>
    When I deploy the form then check the task URI in EM I see
    Host name: server host name
    HTTP port: 80
    HTTPS port: 443
    I know I can override these ports in the hwtaskflow but what if I want HTTPS port left blank? We don't have HTTPS active on our server. Another server in our environment only populates the HTTP port (HTTPS port is left blank) but I'm puzzled why the different behavior.
    Can anyone tell me either how to specify a "blank" HTTPS port in the hwtaskflow or, preferably, how to change the server configuration so that HTTPS port is not filled in when I deploy the task form? We are wanting a completely automated deployment and presently we have to manually remove the HTTPS port via EM after deploying. Argh!

    Jon,
    May be you already figured out the solution nevertheless i will answer your questions.
    1. Turning off the https port - give value as 0 for httpsPort in your hwtaskflow.xml.
    Second reason why your custom hwtaskflow is not getting picked up is you have set the TaskFlowDeploy as false.
    If you set this as true , and specify your cluster address you should be all set.
    for eg : - your cluster host address is somename.cluster.com with only http configured at port 80 lets assume.
    Then your hwtaskflow should look like this
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <hwTaskFlows xmlns="http://xmlns.oracle.com/bpel/workflow/hwTaskFlowProperties">
    <ApplicationName>worklist</ApplicationName>
    <LookupType>LOCAL</LookupType>
    <TaskFlowDeploy>true</TaskFlowDeploy>
    <TaskFlowServer>
    <hostName>somename.cluster.com</hostName>
    <httpPort>80</httpPort>
    <httpsPort>0</httpsPort>
    </TaskFlowServer>
    <hwTaskFlow>
    <WorkflowName>LeaveRequestTask</WorkflowName>
    <TaskDefinitionNamespace>http://xmlns.oracle.com/BuildApplication/BuildProject/LeaveRequestTask</TaskDefinitionNamespace>
    <TaskFlowId>LeaveRequestTask_TaskFlow</TaskFlowId>
    <TaskFlowFileName>WEB-INF/LeaveRequestTask_TaskFlow.xml</TaskFlowFileName>
    </hwTaskFlow>
    </hwTaskFlows>
    This will automatically pick up the values on deployment , other play you can configure this is in your em console as well.

  • How to change the from name in worflow flow notification to manager

    Hi ,
    I want to change a from_role name in notification message to approval in Internet Expenses workflow.
    Requirements is like this: In Internet expense  a supervisor create a expense report behalf of  his subordinates. when he submit for the manager approval. in the notification of Manager approval it shows the subordinate name in the 'from'  this is the standard.. but i need to display the name of creator that is supervisor name in the from.
    please provide a solution for this,,.. your early response will be highly appreciated..
    Thanks and Regards
    Mohsin

    I am not sure about how to change SERVICE_NAME in PL/SQL Developer (if at all it can be done in that ), but you will have to change the SERVICE_NAME in the TNSNAMES.ORA file.
    1. Locate the entry for PLSExtProc in the file tnsnames.ora at:
    $ORACLE_HOME/network/admin/tnsnames.ora
    2. Change the SERVICE_NAME = ORCL
    3. Save and reconnect
    Aalap Sharma :)

Maybe you are looking for

  • Alternative chart of accounts

    Hi Masters, I have two Chart of Accounts 1) main COA  2) alternative COA How entry will flow to these 2 a/cs. Alternatine coa is country speciffic. regards, Ani

  • JDeveloper extension: how to save JDeveloper project with custom folders

    Hi! I’m trying to add some custom folders/nodes to the project. This code Class MyFolder extends DefaultContainer // another class private void AMethod()      JProject project;      MyFolder folder = new MyFolder (name);      project.add (folder, t

  • External backup solution - help

    Hi all, I currently have 2 x 160Gb drives in my G5. One is my boot drive, which holds everything and the other drive i clone using CCC when i feel the need to. I have just started editing DV movies using iMovie and storage is becoming a problem. i wa

  • Applications crash

    Osx 10.9 several apps crash upon start up, I have been having this problem for several OS's now and not getting better. First was DVD app, I just used VLC to view DVD's. I have been havin gtrouble now with App store games and steam games.  I did a cl

  • IPhone 5 @ IOS 6.1.1 (Unable to download application)

    Hi all. Did anyone encounter this problem on iPhone 5? I wanted to download applications on my phone but everytime it Pop up the message 'Unable to download application' Pls help. Thanks