Migration of Cisco to Dell N4000/N3000

Hello

I need some advice. We currently organize a Cisco network on integrated 3750 WLC aging and several switches (3650 and 2960). It is EOL and we wanted to move away from them anyway.

So, we bought a N4032F for the core and several N3024P/N3048P for the edge. (More) all will be the 10 GB fiber link. Now. I need to do it in stages and so I wanted to 1 core and a couple of close edges.

Cisco 3750 runs VTP v2 mode from client to server the VLAN around the network to the switches. I know that the switches Dell can't make VTP and I'll need to do this via GVRP but, as Cisco switches are in client/server mode if I change the mode on the 3750 to the customer, what will happen to the other switches still in client mode? their paintings VLAN decreases over time if they are unable to cummunicate through DRIFT to the 3750?

Basically, I'll be the transition on the GVRP on the Dell over time, but I'll only run a mixed network for awhile and this is what concerns me. The 3750 runs 'routing ip' and 'ip multicast distributed routing' there is also a gateway of last resort set up.

I think it will run for a while.

Thank you

of course, I looked through CLI guides and wasn't able to find the GVRP protocol commands available in the 3750. Without the GVRP support, I doubt that VLAN work them correctly across the network. With the various suppliers involved, I'm not sure that there is a method to get it works. It's looking more and more like manual configuration will be your only option. Once all the material has been rearranged, you can then deploy the GVRP network wide.

Tags: Dell Tech

Similar Questions

  • The analog controls of CISCO about Dell S4048-ON

    Time operating system software real Dell
    Reference Dell operating system Version: 2.0
    Reference Dell Application Software Version: 9.8 (0.0P5)

    Help to find a CISCO analog controls. The manual is not found.
    permit tcp host ip1 ip2 established host

    deny the ICMP messages to echo subnetwork2 subnetwork1
    allow icmp subnetwork1 subnetwork2

    esp subnetwork3 host ip3 permit

    In the OTF S4048, these options are not supported on the built in DHCP server. For a more robust DHCP server, I suggest a dedicated DHCP server deployment. You can even use a virtual machine as the DHCP server.

  • Resilience 4510R Cisco and DELL S4048-suite

    As a central switch using Cisco 4510R. To increase fault tolerance has been purchased DELL S4048 IT. It is not clear how to combine (how to create a battery). Throughout the manual describes how to create a stack with one manufacturer.

    Just try to connect through riders DELL 2 CM 32 and Cisco SFP-H10GB-CU5M.

    It was possible to connect only through the SFP-H10GB-CU5M Cisco when CISCO on the interface speed nonegotiate and Dell speed 1000. She don't go to the link 10 000.

    The error it gives is that the transceiver is not a valid reference of Dell. For fault tolerance, you could just create a trunk between two switches.

  • Migration of Cisco WLC 5508 to 5520

    Hi all

    I need to migrate cisco 5508 to 5520 wlc. This Cisco 5508 WLC is in production, it is possible, I can import this 5508 configuration file and export again 5520.

    Please provide the steps to follow while making the migration.

    (1) how cisco WLC-2 AP WLC-1 transfer since both have the same versions of IOS. Any URL available Cisco?

    WLC-2, enter the command "config primary ap .

    (2) applicant tried to transfer 2 points of access for LAP 1130 2 WLC WLC - 1 2 days back but still not reflective in WLC - 1. Measures to solve the problems there?

    Distance or console in the AP.  Post the output of the command 'sh' full record when trying to move the access of a controller to another point is entered.

  • Migrate worm Cisco NCS first 1.1.1.24 to 2.0 or 3.0

    Hello everyone

    I need migrate version 1.1.1.24 in Cisco NCS premium worm. 2.0 or 3.0 and I am beginner with premium

    I found some docs on this migration, and I'm not sure if I need a possible license box upgrade and/or calculate the time to invest in this task.

    Any help will be appreciated!

    Thanks in advance

    See you soon!

    Ditto to what Leo said on the export of data and maps. Although it is possible to do an upgrade of several stage, you will need to turn several images of PI 1.x and 2.x to move the full backup of a product and the version to another.

    Regarding the granting of licenses, customers with a valid service contract in earlier versions of the first Infrastructure - for example, PI 2.x, 1.x, NCS 1.x etc., may move to PI 3.x free of charge.

    Here is a table summarizing the different scenarios (open in a new tab to zoom in):

  • Migration to Cisco 1000v with portgroup Vmnic (almost there!)

    I am trying to automate the following steps so that I can configure networking for a host, end-to-end (using vCenter 5.1, PowerCLI 5.1 Release 2 Build 1012425 to PowerCLI 6.0 Release 2 build 3056836). The host has two network adapters physical, one of which (vmnic0) is obviously taken by vSwitch0 during initial installation. So, I need to:

    (1) migrate physical vmnic1 a VDS (1000v)

    (2) set the GRPE of ports uplink for vmnic1 in the "system-binding rising-vc02."

    (3) turn on the VDS called "vc02-vmsc" vSwitch1 to a portgroup vmk0 management network.

    (4) physical vmnic0 pass vSwitch1 a VDS, adding to the bond rising portgroup "rising-vc02 system-binding."

    I can only reach 1-3. I can handle a party of 4), moving the 1000v vmnic0, but only in the portgroup of 'Unused_or_Quarantine_Uplink' and not the one I need.

    Stripped of any handling error, this is the code I used (largely provided by)

    http://blogs.Cisco.com/Datacenter/automate-migrating-ESX-host-interfaces-to-nexus-1000V )

    http://www.virtuallyghetto.com/2013/10/automate-migration-from-virtual.html):

    $esxihost = 'host-0201'
    $vmnic = 'vmnic1'
    $1000vName = 'cisco-1000v-data-centre-1'
    $uplinkName = 'system-uplink-vc02'
    
    # Get the 1000v object that that ESX host will be added to
    $1000vObject = Get-VDSwitch | Where-Object -FilterScript {
        $_.name -eq $1000vName
    }
    
    # Get the ESX host object
    $vmHost = Get-VMHost -Name $esxihost -Erroraction Stop | Get-View
    
    # Create a DVS Configuration Specification object
    $spec = New-Object -TypeName VMware.Vim.DVSConfigSpec
    
    # Create a target host DVS Host member configuration specification and set the operation to add
    $targetHost = New-Object -TypeName VMware.Vim.DistributedVirtualSwitchHostMemberConfigSpec
    $targetHost.operation = 'add'
    
    # Create a Pnic backing object in the target host
    $targetHost.backing = New-Object -TypeName VMware.Vim.DistributedVirtualSwitchHostMemberPnicBacking
    
    # Create a Pnic Device object
    $pnic = $vmHost.Config.Network.Pnic | Where-Object -FilterScript {
        $_.Device -eq $vmnic
    }
    
    $targetHost.Backing.PnicSpec = New-Object -TypeName VMware.Vim.DistributedVirtualSwitchHostMemberPnicSpec
    $targetHost.Backing.PnicSpec[0].pnicDevice = $pnic.Device
    
    # Get the 1000V uplink object:
    $uplinkObj = Get-VDPortgroup | Where-Object { $_.Name -eq $uplinkName }
    $targetHost.Backing.PnicSpec[0].UplinkPortGroupKey = $uplinkObj.Key
    
    # Set the target host to the ESX host object reference
    $targetHost.host = $vmHost.MoRef
    
    # Set the DVS configuration specification object host property, to the target host object reference we've created above:
    $spec.Host = $targetHost
    
    # Get the current status of the 1000v and set the version in the configuration specification version
    $dvSwitch = Get-View -Id $1000vObject.ExtensionData.MoRef
    $dvSwitch.UpdateViewData()
    $spec.ConfigVersion = $dvSwitch.Config.ConfigVersion
    
    # Run  the task
    $taskMoRef = $dvSwitch.ReconfigureDvs_Task($spec)
    
    # Get the status
    $taskID = 'Task-' + $taskMoRef.Value
    while((Get-Task -Id $taskID).PercentComplete -lt "100")
    {
        $percentComplete = (Get-Task -Id $taskID).PercentComplete
        Write-Verbose "Percent Complete: $percentComplete"
        Start-Sleep -Seconds 2
    }
    
    
    # 3) Migrate vmk0 Management Network from vSwitch to the VDS with correct portgroup:
    
    # Get the VMKernel port
    $vNicManagement = Get-VMHostNetworkAdapter -VMHost $esxihost -Name vmk0
    # Get the destination port group:
    $vdPortgroupManagement = Get-VDPortgroup -VDSwitch $1000vName -Name 'vc02-vmsc'
    # Set the physical NIC to use:
    $pnicToUse = Get-VMHostNetworkAdapter -VMHost $esxihost -Physical | Where-Object { $_.Name -eq $vmnic }
    # Migrate:
    Add-VDSwitchPhysicalNetworkAdapter -DistributedSwitch $1000vName -VMHostPhysicalNic $pnicToUse -VMHostVirtualNic $vNicManagement -VirtualNicPortGroup $vdPortGroupManagement -ErrorAction Stop
    
    
    
    
    
    
    
    
    
    
    
    

    The bit that will move to vmnic0 VDS service is:

    # Get vmnic0 which is still connected to the vSwitch:
    $lastNic = 'vmnic0'
    $pnicToMove = Get-VMHostNetworkAdapter -VMHost $esxihost -Physical | Where { $_.Name -eq $lastNic }
    # Migrate vmnic0 from vSwitch to VDS:
    Add-VDSwitchPhysicalNetworkAdapter -DistributedSwitch $1000vName -VMHostPhysicalNic $pnicToMove -Confirm:$false
    
    
    

    ... but as I said, this only puts it in the Unused_or_Quarantine_Uplink group.

    1000v-migrate-uplink.png

    I tried to repeat the code above this vmnic1 against vmnic0 objectives, but this indicates that the host is already member of the VDS.

    I suspect that the answer lies in a change of migrate ESXi host physical adapters specific dvUplink port | vBombarded but I had no luck so far.

    Help appreciated on the final bit

    Thank you.

    I managed to solve this problem by using:

    $config = New-Object VMware.Vim.HostNetworkConfig
    $config.proxySwitch = New-Object VMware.Vim.HostProxySwitchConfig[] (1)
    $config.proxySwitch[0] = New-Object VMware.Vim.HostProxySwitchConfig
    $config.proxySwitch[0].changeOperation = "edit"
    $config.proxySwitch[0].uuid = $1000vObject.key
    $config.proxySwitch[0].spec = New-Object VMware.Vim.HostProxySwitchSpec
    $config.proxySwitch[0].spec.backing = New-Object VMware.Vim.DistributedVirtualSwitchHostMemberPnicBacking
    $config.proxySwitch[0].spec.backing.pnicSpec = New-Object VMware.Vim.DistributedVirtualSwitchHostMemberPnicSpec[] (1)
    $config.proxySwitch[0].spec.backing.pnicSpec[0] = New-Object VMware.Vim.DistributedVirtualSwitchHostMemberPnicSpec
    $config.proxySwitch[0].spec.backing.pnicSpec[0].pnicDevice = "vmnic0"
    $config.proxySwitch[0].spec.backing.pnicSpec[0].uplinkPortgroupKey = $uplinkObj.key   
    
    $vmhostRef = ($vmhost.MoRef.value).split('-')[1]
    $_this = Get-View -Id "HostNetworkSystem-networkSystem-$vmhostRef"
    $_this.UpdateNetworkConfig($config, "modify")
    
  • Migrate PERC4 RAID 5 Dell PE800 to Dell T320 on Perc H310

    Hello

    I had a server that has failed before we time to replace it.

    The old server does not (no display may be motherboard failure). Can I insert the disc on the new server and try to import the disk raid configuration?

    I know it will work the same PERC chip but PERC4 to PERC 310, I think that this will work?

    No, you cannot import a configuration 4 PERC PERC 5 +. 4 PERC - is SCSI, 5 + is SAS PERC.

  • Migration to ISE for servers 3395 Cisco Cisco SNS 3495 question

    Hi all. I have a client that runs on a Cisco 3395 ISE 1.2 Server and wants to migrate to Cisco SNS 3495 servers due to the end of life is imminent. My question is - this client should buy Cisco SNS 3495 server with a new software license, or may transfer or reuse the license of the software from their 3395 servers?

    What will be the best course of action for them. Thank you!!

    Ah, sorry, I was referring to the base, and, the apex (or Basic, advanced from previous levels of ISE) - which are licenses only you really need to worry.  If you look at the details to the CCW, you're talking about this topic is the only one where the cost is indicated for the 3495 (except SmartNet if you added).  This is not a point of STOCK you can add/remove.  Basically, you have what you need from a material point of view when you purchase the device.  Can you rehost license software (Basic, plus, apex) once you get the new devices up and running.

    Tim

  • is possible to configure the wan on Dell N3024 switch port

    Hello

    as I said in the topic. I got a new switch N3024 of Dell.  I worked in before cisco, but dell is new to me. I have a few question to ask: -.

    is that we can configure wan on that port?

    is - this switch supports the aggregation of the ISL?

    If Yes please share the switch manual

    Thanks in advance

    The WAN connection is made usually by creating a VLAN and assignment of an IP address in the same subnet as the device that it connects this VLAN.

    Example:

    Create VLAN 10

    database of # vlan

    VLAN # 10

    For example let's say that 1/0/1 interface connects your firewall, which has an IP 10.10.10.1 30 assigned to its interface. This means that we would assign 10.10.10.2 30 to VLAN 10.

    # interface vlan 10

    # 10.10.10.2/30 ip address

    Then place the interface 1/0/1 in access mode for VLAN 10.

    # interface gigabitethernet 0/1/1

    switchport mode access #.

    # switchport access vlan 10

    Enable the VLAN routing on the switch.

    # ip Routing

    Define a static route pointing out traffic at the firewall.

    # ip route 0.0.0.0 0.0.0.0 10.10.10.1

    Orders of trunking VLAN are very similar to the Cisco commands.

    # interface gigabitethernet 0/1/1

    switchport mode trunk #.

    # permit switchport trunk VLANs 1-1024

    Here is a link to the user's guides:

    http://Dell.to/1ZTGjsI

    And here is another link to some useful white papers:

    http://Dell.to/1cxlYEX

    Hope this helps

  • Compatibility phone Avaya with Cisco Unified Communications Platform

    Hello

    We are currently a user all-Cisco on the side of routing, switching and network security, however, we are a user all Avaya on the phone, IP phone and voice communications.  I laugh with all the problems we had with Avaya and would migrate to Cisco.  My department head wants to know is it possible to have a Cisco platform manage all unified communications and voice mail on the back end, but continue to use the Avaya phones currently in place in each office, until we can replace in the coming years through attrition?  It is essentially a measure of cost that is the main factor in management are unwilling to make any changes whatsoever because of investment is already in the existing system.

    None of the Avaya endpoints are officially supported on Cisco CUCM, but if they SIP phones, they can be defined as 3rd-party SIP endpoints.  That being said you get far more features and satisfaction with phones Cisco CUCM, otherwise ask for another set of questions, and at that time there a seller will point to the other.

  • Cisco vpn client is supported on the analogue ppp connection

    can someone pls tell me if we can use the client vpn cisco on a ppp connection analog and put a pix that is not PPPs running. If it works, then why do we need to VPN L2tp/ipsec. can someone pls tell me something abt it. It is very urgent.

    concerning

    Assane

    Assane,

    If I understand your question, you speak with PPP initially to get an IP address from your service provider, then use the Client VPN VPN in your Pix Firewall. If so, yes it is possible.

    To name a few reasons why PPTP or L2TP/IPSEC is used instead of Cisco VPN Client are:

    1. because companies have used a PPTP or L2TP/IPSEC solution for some time and are migrating to Cisco VPN

    2. do not install vpn on the PC client software

    3. won't pay for the VPN Client software licenses

    Let me know if it helps.

    Kind regards

    Arul

  • Cisco AnyConnect deployment

    We are currently using Cisco VPN Client.  I'm looking to migrate to Cisco Any Connect.  Our ASA 5520 has 750 IPSec and SSL 2 license.  I also have about 40 IPSec VPN site-to-site on it.  Here's what I want to know?

    1 - anyconnect will interfere with site to site tunnels?

    2 if I place anyconnect with IPSec instead of SSL can I still purchase the license premium or essentials?

    3 lets say if I have to get the permit and I get essentials it will cause problems with the VPN site to site?

    Thank you.

    1 n ° not at all.

    2 Anyconnect Essentials licenses the ASA of the IPSec remote VPN access using w/IKEv2 and SSL VPN AnyConnect client. Premium adds based on a browser (clientless) SSL VPN, Cisco Secure Desktop support, possibility of Advanced endpoint assessment, and use shared pools of license in a cluster of the SAA. Note This Essentials and Premium AnyConnect license cannot coexist on a given ASA. Once you register any AnyConnect Premium feature, it excludes the possibility of also using essential AnyConnect licenses (on the ASA).

    3 see #1.

  • Migration to a new physical switch - boards?

    Currently, we have 2 Cisco 3560 and migrate to Cisco 2 3850 in a stack.

    We have 2 guests, each with 8 physical network interface cards

    • vSwitch0
      • Nic0, nic4
      • vMotion and MGMT
    • vSwitch2
      • The VM network
      • NIC1, nic2, nic5, nic6
    • vSwitch3
      • Storage/SAN
      • NIC3, nic7

    We have an EMC SAN of VNXe3100 with dual storage processors

    I think everything will switch accordingly, but our VCenter server is on the same subnet as our VM network so if I disconnect the VCenter gateway will not be able to communicate with the hosts. I doubt this is a big deal, but I was wondering if anyone had any advice?

    Thank you

    You forgot of told me what grouping load balancing that you use on ESXi? Anyway, if you do not use the hash of the IP, you can proceed as follows:

    1. connect the new switch to the old, by using a port trunk (allowing all VLANs);

    2. configure the ports on the new switch to support connections between the old switch;

    3. configure the interface VLAN (including the INVESTIGATION period), but do not allow this interface;

    4. move all ESXi rising to the new switch, try to move one by one and check the connectivity between each trip;

    5. move all other connections from the old to the new switch;

    6 stop the VLAN interface on the old switch and activate the interface VLAN on the new switch.

  • Connection no UCS server to the fabric of interconnection 6248

    We are migrating our VMS of Dell PowerEdge servers to Cisco UCS environment 620\710. The question has been ask if we can connect our Dell servers directly to the IF SFP ports + and/or the connection of TP will 10 GB. Is this possible? How does the FIs treat non - UCS servers?

    This is not supported! I guess you want to do vmotion and transfer your Dell to UCS Server VM. Just configure the appropriate network connectivity (vlan UCS to Northbound Dell server) and it should work.

  • Adding the iSCSI network switch

    Hello

    We have an iSCSI network for guests of vSphere 5.1 EQL boxes. The network is 192.168.0.0/24, we use the switches PC5548 and we have three groups EQL. Everything is configured following best practices from DELL, and everything is kind of okay job.

    Since we are affected by the poor performance of our SQL servers virtualized and troubleshooting led switches as a guilty suspect I want to try to use other switches to know.

    So I intend to add a pair of parallel to the PC5548 cisco switches and connect a host and a group of PS to those (where the SQL VM reside) and see the difference, but my question is that I can use the same network 192.168.0.0. / 24 although cisco and dell switches are not physically connected. VMotion work?

    You shouldn't use the entry level switches with 10 tables. The interlink trunk has 80% of eql bandwidh. You can consider buying Dell Force10 switches with buffers of large size and low latency.

    Kind regards

    Joerg

Maybe you are looking for

  • Satellite T110-107 does not start

    At this machine for a little more than a month, today I reatated it when it became very slow after clicking on restart just off and turns not again. I get the power light and the wireless light, the HARD drive light lights for qbout 5 seconds then tu

  • Media Express on Satellite Pro M70-113 player

    Hello I have satellite pro M70-113 laptop. I don't have any express media player recovery cd I've read something like this in this forum The problem is that I can't use the express media player What is express media player to support model? When I pr

  • How can I stop Windows XP open My Documents on startuo?

    Hello I just reinstalled Windows XP Pro and after installation of SP2 evert time I start Windows automatically open My Documents. How can I stop this? Thank you.

  • Windows 7 - "unable to connect to the network {SSID}.

    Windows 7 laptop. Error message "Windows cannot connect to network {SSID}.    There is a Wi - Fi secure and invited.   It worked well until this error message.   Other computers connect correctly. This phone has 1) see the SSID is currently showing.

  • Unable to DateTimePicker getDateTime()

    I'm DateTimePicker select Date and time and when I press the ok button to Date time using getDateTime() and assigning him to the calendar object (selectedDate). I want to display the time in the format (fri apr 27 06:00). So I use code below for form