Communication between two network with the same IP segment

Good Moorning:
How can establish communication between the production environment and test environment with the same IP segment using switch Cisco Nexus 5548?

Carlos
The short answer is you can't as far as i know. You need to do NAT to able to do this and i don't think the Nexus switches support NAT.
You need a device that can NAT both address ranges. If prod is always the one that initiates the connection then you need static NAT translations for the test machines and you can dynamicaly NAT prod addresses as they go into the test env.
But if both prod and test can initiate connections then you need to have static NAT translations for both sides.
We used a pix firewall for this when we connected our prod and test environments. A firewall is a good choice because you can make the test enviornment the outside interface where all traffic is denied by default. You do not want test affecting prod.
Jon

Similar Messages

  • Why are my devices finding two networks with the same name in my house?

    I have Verizon FIOS (Actiontech router) connected with an ethernet cable to my Airport Express. Everything works beautifully through all three levels of my house...except... there are seemingly two networks in the house...a 192.X network (I think that is the Actiontech router), and a 10.X network (I think that must be the airport express)...
    Here is the problem...
    My devices (MACS, i-PADS, wireless printers) sometimes connect to the 192.X network (usually on channel 11) and sometimes they connect to the 10.X network (usually on channel 1). If the computers & i-PADS are not on the same network as the printers, then I can't print because the computer can't find the printer.
    With the printers, every time the power goes out it's a crapshoot to see which network they reconnect to...and I have not found a way to manually choose a network since both networks have the same name and password (and I think they have to be set up that way in order for the Airport Express to work properly with the Verizon router.
    Any help would be much appreciated.
    Thank you.

    OK, thanks. Did you see the message I posted right after your previous reply? I'm copying it here. Would choosing option two below, "join a wireless network" vs. "create a wireless network" be similar (or the same) as running in bridge mode?  Thanks.
    Tried a different MAC in my house using Lion instead of Mavericks and was able to open a version of Airport Utility. I couldn't find the tabs as in your picture; however, I did find a box that says, "This airport express is set up to create a wireless network." Three options are then listed as follows:
    1- create a wireless network (the one that is checked)
    2- join a wireless network
    3- disable wireless and connect to a computer or network using Ethernet
    If I choose option two above, would that solve the problem?
    Thanks.

  • HT1657 Can I transfer a standard definition rental between two computers with the same account?

    So, I rented a movie on my work computer and haven't had time to watch it just yet and it's expiring in 4 days. So, naturally, reading the documentation here that says the following:
    If you download a rented movie on your computer: You can transfer it to a device such as your Apple TV (1st generation), iPhone, iPad, or iPod if it’s a standard-definition film (movies in HD can only be watched on your computer, iPad, iPhone 4 or later, iPod touch (4th generation or later), or Apple TV). Once you move the movie from your computer to a device, the movie will disappear from your computer's iTunes library. You can move the movie between devices as many times as you wish during the rental period, but the movie can only exist on one device at a time.
    I moved the rental to my MacBook Pro, expecting to be able to watch it there. However, when I add it to my iTunes library on my MBP (with the same iTunes account), I get an error saying that it isn't authorized to play the content.
    What's the deal? Am I missing something, or doesn't it seem like I should be able to transfer it between computers? Do I need to delete the one off my work computer first?

    Sorry but no. Rentals cannot be transferred from one computer to another. As the instructions said, you can only move a rental from a computer to a iOS-based device or back from that device to the computer on which the rental was first downloaded.
    Regards.

  • I want to use I face between two ipads with the same email address

    I have two ipads and special circumstances dictate using the same email address for both is this possible somehow?

    Also, See here for,
    Using FaceTime
    http://support.apple.com/kb/ht4319

  • Communication between two JApplets on the same web page

    Hi Freinds
    I have a JSP page containing two applets as follows :-
    <jsp:plugin type="applet" code="TreePageJavaClass.class" codebase="/MYOA" width="200" height="300" name="Applet1">
    </jsp:plugin>
    <jsp:plugin type="applet" code="TreePageJavaClass2.class" codebase="/MYOA" name="Applet2" width="200" height="300">
    </jsp:plugin>
    First applet extends JApplet class and has a tree constructed using swing.
    Second applet extends Applet class.
    Now I want to call a method in second applet on selecting a particular tree node on first applet. I can call method on second applet from first applet when both extends Applet class (not JApplet)
    So please tell me what's the problem here and how it can be solved.
    Thanks

    First Applet :-
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.tree.*;
    import java.applet.*;
    public class TreePageJavaClass extends JApplet {
    JTree tree;
    JTextField jtf;
    Container contentPane;
    public void init() {
    contentPane = getContentPane();
    contentPane.setLayout(new BorderLayout());
    DefaultMutableTreeNode top = new DefaultMutableTreeNode("MakeYourOwnAds");
    DefaultMutableTreeNode a = new DefaultMutableTreeNode("User1");
    top.add(a);
    DefaultMutableTreeNode a1 = new DefaultMutableTreeNode(getParameter("param1"));
    a.add(a1);
    DefaultMutableTreeNode a2 = new DefaultMutableTreeNode(getParameter("param2"));
    a.add(a2);
    DefaultMutableTreeNode a3 = new DefaultMutableTreeNode(getParameter("param3"));
    a.add(a3);
    DefaultMutableTreeNode a4 = new DefaultMutableTreeNode(getParameter("param4"));
    a.add(a4);
    tree = new JTree(top);
    int v = ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED;
    int h =ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED;
    JScrollPane jsp = new JScrollPane(tree, v, h);
    contentPane.add(jsp, BorderLayout.CENTER);
    jtf = new JTextField("", 20);
    contentPane.add(jtf, BorderLayout.SOUTH);
    // Anonymous inner class to handle mouse clicks
    tree.addMouseListener(new MouseAdapter() {
    public void mouseClicked(MouseEvent me) {doMouseClicked(me);
    void doMouseClicked(MouseEvent me)
    TreePath tp = tree.getPathForLocation(me.getX(), me.getY());
    TreePageJavaClass2 app = (TreePageJavaClass2)getAppletContext().getApplet("Applet2");
    if(tp != null)
         if (tp.toString().equals("[MakeYourOwnAds, User1, Ajay]"))
         jtf.setText(tp.toString());
              if (app == null)
              app.setData("null");
              else
                   app.setData("Ajay");
         else
              jtf.setText(tp.toString());
    else
    jtf.setText("");
    Second Applet :-
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    public class TreePageJavaClass2 extends Applet
    private Label msg;
    public void init()
    setLayout(new BorderLayout());
    setBackground(Color.LIGHT_GRAY);
    msg = new Label("Applet2 is running...", Label.CENTER);
    add(BorderLayout.CENTER, msg);
    public void setData(String message)
    msg.setText("Selected Node is " + message);
    Hope you guys will help me.
    Thanks

  • Hello there - how can I share my iTunes library between two users on the same computer? I put the library in a shared folder between both and have selected this library on both as well, but when I update iTunes with music etc it only appears on one?

    Hello there - how can I share my iTunes library between two users on the same computer? I put the library in a shared folder between both and have selected this library on both as well, but when I update iTunes with music etc it only appears on one?

    Thank you Joe - I tried this but it's only showing a teensy amount of music - the stuff on the second users account as opposed to the giagntic library on the 'main' account. I actually went to a Genius Bar and they said that apple doesn't really want you to share music between accounts - parents don't want to hear their kids music etc. Which seemed strange, but it might be the case sadly   Thanks anyway!

  • Can i set up my iPad and iPod to use iMessage between the two devices with the same Apple ID?

    Can i set up my iPad and iPod to use iMessage between the two devices with the same Apple ID? SO i could iMessage if out from my iPod to my iPad at home to be viewed by a family member?

    Look into using Apple Configurator.  It's the easiest way to "reimage" and Manage iPads that I know of right now. 
    http://itunes.apple.com/us/app/apple-configurator/id434433123?mt=12
    Also, look into using the Educational Volume Purchase Program, if you have not already done so. 
    http://www.apple.com/education/volume-purchase-program/

  • TS2972 is it possible to use home sharing between two users on the same computer?

    My wife and I have itunes accounts and want to be able to share music we have each bought on our accounts. We have tried setting up the home sharing on our PC but it doesn't show up on the screen. Can anyone please help?

    "Is it possible to use home sharing between two users on the same computer?"
    No. Home sharing is used to connect two running instances of iTunes across a network. When you switch users on the computer all applications running on the other profile are suspended.
    You can however share your respective media folders so that they are visible in either profile and then copy over any content that you want, or you could create a single joint library which you use when either user is logged in.
    tt2

  • Distinguishing between two instances of the same portlet

    Hi Experts,
    Is there a way to distinguish between two instance of the same portlet in different browser windows?
    I'm looking for something like URL parameter passing, but just for portlets.
    The problem is, I want a way to pass a parameter between views in a portlet, but in such a way that if another browser window is opened and navigated to that portlet page, the parameter won't be the same. Perhaps I can explain better with this example:
    Page A has a portlet on it which has a textbox and 2 buttons - the first button stores the value in the textbox in the PortletRequest (or PortletURL) and if you click the second button the portlet navigates to a different view which displays the value. If I navigate with a second browser window to Page A, however, and only click the navigate button, that value which was stored by the first instance of the portlet will still be shown. I want them to be independent, I don't want changes in the one's PortletRequest to reflect in the other one's PortletRequest.
    Any ideas?
    Thanks,
    JP

    Why not use two instances of the same portlet, i.e. create two channels of the same portlet.
    The behave the same, have the same application logic, so all you need is to transfer informations between the two portlets.If you want this within user space use the portlet session, otherwise access the http session context /application context and store the data there.
    The behavior would be controlled by the portlet preferences, so channel a (instance 1) would be configured to run as controller and channel b (instance 2) would be configured as receiver.

  • Sync a folder between two users on the same computer.

    I would like to sync a folder between two users on the same computer so that they are always the same when I access them from either user.

    then place this folder somewhere where both users have access to like in /Users/Shared. then there is only one folder to deal with and you don't need to sync anything.

  • Connect to one wireless network when multiple networks with the same name

    Hi all,
    I'm at a location where there are two networks with the name (e.g.) "wireless". One uses WEP and one uses WPA. The WEP network is weaker than the WPA network, so my Mac tries to connect to the WPA network, even though I have manually setup the wireless network with WEP security (after trying to connect it asks for a WPA password). Is there a way that I can connect to a wireless network by MAC Address, or some way for me to tell the Macbook to ignore the WPA network? The problem is that the SSID is the same, it seems.
    Thanks,
    Nate

    The person (the landlord) isn't tech-savvy at all.
    That is clearly obvious as
    1. They would not be using WEP
    2. They would setup a different SSID
    WEP is not secure and can be cracked in minutes using tools readily available on the internet. If a hacker gain access to that network they could run other tools and hijack the dns and then you could be visiting sites on your mac that are completely bogus but look real.
    Also it is common trick that hackers use is to setup an access point nearby with the sane SSID to capture details from users that join their network thinking they have joined their own network. Again the hacker can hijack the dns and monitor all your browsing and capture details.
    The fact that someone has setup an SSID nearby with the same name would make me very suspicious.
    I would treat your landlord's network as an untrusted network same as when your using a public wifi like coffebucks.

  • Two Contacts with the Same Email Address

    We would need to have two Mail Contacts created for one external email address. In our case of a basic school we would need to share parent's email addresses for all teachers - Office 365 users. It is not uncommon that a school is attended by siblings -
    one is older, one is younger. We tried to create an Exchange directory containing parent's email addressed - a contact is named based on a pupil's name, but in case a contact was created for a younger sibling and we try to create a contact for an older sibling,
    we receive an error:
    The proxy address "SMTP:[email protected]" is already being used by the proxy addresses or LegacyExchangeDN of "Younger Sibling". Please choose another proxy address.
    How to overcome this and have the same address for both siblings in All Contacts directory. 
     

    Hi,
    We can’t create two contacts with the same external email address in Exchange. Personal suggestion, we can consider the following settings as a workaround:
    Option1:
    We can name the contact as “SMTP:[email protected]”. And only use one contact for two students.
    Option2:
    a. Create the contact 1 for pupil 1 with “SMTP:[email protected]”, external email address:
    [email protected]
    b. For pupil 2, we can create the contact 2 as “SMTP:[email protected]” with a new created email address
    [email protected] (please make sure the auto-forward feature is supported in this selected mail server).
    c. Configure the auto-forward for [email protected] to [email protected]
    Then we the teacher send messages to contact 2, the message can be send to
    [email protected] and forward to [email protected]
    Additionally, why not using the same contact for two pupils, is there any hard needs that we have to match one contact to one pupil?
    Regards,
    Winnie Liang
    TechNet Community Support

  • How do I share one itunes account between two users on the same computer

    How do I share one itunes account between two users on the same computer without taking up twice as much space on my hard drive?

    You would need to move the itunes folder to a location that both users have permissions to access such as the Shared folder or any folder on the root level of the macintosh HD.
    You can find instructions here http://support.apple.com/kb/HT1203 This method allows you to share the content without sharing the same library.

  • How do you stop your phone from creating two albums with the same photos after syncing?

    When I first bought my phone I was able to sync my photos by checking the folder I wanted synced under iTunes. This put all those photos on photo library on my phone. I recently added more photos to that folder and tried to sync them it now put them in the photo library album and also created another album with my folder name. So I have two albums with the same photos. I tried in checking that folder in iTunes and of course they're not in my photo library. Please help. I don't want two albums with the same pics

    This is how Apple has always handled photos.  nothing has changed at all.
    Just as your music is in your library and you can access those exact same songs from a playlist, all of your synced pics are in the Photo Library and those exact same photos (NOT duplicates) can be accessed from the album name that you chose to sync.

  • How can I set up two iPhones with the same contact, photos, music etc... but a different sim card and phone number. They will both be my phones, but one will be for use in other countries.

    How can I set up two iPhones with the same contact, photos, music etc... but a different sim card and phone number. They will both be my phones, but one will be for use in other countries.

    Phone A = phone with information you want duplicated
    Phone B = phone that you want to copy from A
    Backup Phone A.
    Wipe Phone B using these instructions. What to do before selling or giving away your iPhone, iPad, or iPod touch - Apple Support
    Phone B should be on the 'Hello' screen. Do not swipe it. Launch iTunes. Plug in Phone B.
    When iTunes asks if you want to set up as new phone or restore from backup, choose restore from backup of Phone A.
    After this setup, any changes to one phone (i.e. adding a contact, downloading an app) will have to be manually duplicated on the second phone, if that is your desire). Making changes to one phone will not affect the other after setup.

Maybe you are looking for