Changing interop mode 1 back to default

Hello,
i need to connect MDS 9513 to McData 6140 for migration purposes, plan is to get rid of McData in the near future.  McData is running in open mode 1.0 so i am planning to set VSAN mode to 1. After all systems get migrated to Cisco i would like to convert interop mode back to default, what will happen ? Will all systems get new FCID ?  What else should i think about ?
Thanks

While in interop mode 1, the domain IDs must fall with in a defined range.  In order for you to change a VSAN to interop mode 1, you have to set the domain ID to a value of decimal 97 to 127 and do an fcdomain restart.  This would be distuprtive to any devices currently logged into that VSAN as their FCID would change.  The message below indicated that VSAN 1 currentluy does not have a domain ID that is in the interop 1 range.
MDS2-98(config-vsan-db)# vsan 1 interop 1
vsan 1:interoperability mode 1 allowed domain list [97-127] does not include all assigned and configured domains or conflicts with existing allowed domain lists
The command to see the current domain ID is
show fcdomain vsan 1
The config command to set it to 124 is
fcdomain domain 124 static van 1
Then to restart the VSAN to make the new domain ID effective
fcdomain restart vsan 1
If you are using a newly created VSAN, I then I believe that when you create the VSAN in interop mode 1, it will automatically use one of the needed domain IDs.  When you change it back to default, the domain ID should remain the same.
In interop 1, I believe that you can only zone by PWWN, so migrating the VSAN back to default should not be an issue with zoning.
Hope this helps,
Mike

Similar Messages

  • How do I change font and colors back to default?

    I have changed the font and color of the text through the tools button and the options button and the content tab. I find nothing telling me how to change the font and colors back to default font and colors. Can you advise me? I'm using Windows 7 Home Premium OS. Thanks.

    Hi Brenda19605,
    You can use this article to set the fonts and colors: https://support.mozilla.org/en-US/kb/change-fonts-and-colors-websites-use?esab=a&s=font&r=0&as=s
    The default settings for the font are in this article:
    https://support.mozilla.org/en-US/kb/Some%20text%20shows%20up%20bold%20after%20upgrade
    Unfortunately for the default colors has no good reference. But for text it is black (most lower left) color, background is white (most upper left color). Unvisited links is blue (column 8, row 5) and visited link is purple (column 9, row 5).
    Let me know if you need anymore help!
    Lordfreak

  • Changing your contacts names back to default.

    At the moment there is no possibility to give a person their default name back after you changed it.For example, I have SuperUb0rPet0r in my contacts and just rename him to Peter but now I won't know if he changed his name to something else.

    I found a way to change it back to default. Right click on the name in the contacts list, click Rename..., delete the name in there, hit enter, delete the name again in the window that pops up, hit ok.

  • CHANGING F1-F12 KEYS BACK TO DEFAULT, THEY CHANGED THEMSELVES AROUND....

    Has anyone had a problem with the F keys changing functions all by themselves? i.e.: my volume keys make the dashboard come up?....how do I fix this..i've had my macbook for 4 days...no clue

    try looking in system preferences>keyboard & mouse
    click the keyboard shortcuts tab, then restore defaults (bottom left)
    hope this helps.

  • Change sided printer back to default single sided printing on hp Officejet Pro 8600 printer

    How to change 2-sided printer back to default single sided printing on hp Officejet Pro 8600 printer.

    Hi @rdwill13 
    You can change the default back to single sided in the preferences. I can help you with this. What operating system and version do you have? Mac or Windows?
    Please click the Thumbs up icon below to thank me for responding.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Sunshyn2005 - I work on behalf of HP

  • ScriptUI: Change element back to default color

    I have a script in which I am changing the color of StaticText, but later want to change it back to the default color. Is there a way to set it back to "default", or do I need to hard code in a color that is the same as the default? The problem is that hard coding in a number will no longer dynamically react to changes in the UI color.
    var myWindGfx = myWind.grp.bottom.eight.update.graphics;
    myWindGfx.foregroundColor = myWindGfx.newPen (myWindGfx.PenType.SOLID_COLOR, [1, 0, 0], 1);

    Yep you're right.
    I had the && for some purpose but made changes to the script so they became redundant.
    In fact the script should remove the "if"s and be as follows.  This will make sure the values are reset to undefined when they should.
    // Theme Color Snippet by Trevor creative-scripts.com (Coming soonish!)
    // https://forums.adobe.com/message/7139857#7139857
    // Credits to Loic Aigon http://www.ozalto.com for the Basic Idea
    function addBiState (_parent, UIType, themeStateDetails, modifiedStateDetails, groupDetails) {
        var bounds, _string, setupProperties, newGroup;
        // Set theme group setup properties
        bounds = groupDetails && groupDetails[0];
        _string = groupDetails && groupDetails[1];
        setupProperties = groupDetails && groupDetails[2];
        newGroup = _parent.add('group', bounds, _string, setupProperties);
        newGroup.margins = [0,0,0,0];
        newGroup.orientation='stack';
        // Set theme state setup properties
        bounds = themeStateDetails && themeStateDetails[0];
        _string = themeStateDetails && themeStateDetails[1];
        setupProperties = themeStateDetails && themeStateDetails[2];
        newGroup[0] = newGroup.add(UIType, bounds, _string, setupProperties);
        // Set modified state setup properties
        bounds = modifiedStateDetails && modifiedStateDetails[0];
        _string = modifiedStateDetails && modifiedStateDetails[1];
        setupProperties = modifiedStateDetails && modifiedStateDetails[2];
        newGroup[1] = newGroup.add(UIType, bounds, _string, setupProperties);
        newGroup[1].visible = false;
        return newGroup;
    Group.prototype.biStateChange = function (state) {
        if (state) {
            this[+state].visible = true;
            this[+!state].visible = false;
        else {
            this[0].visible = !this[0].visible;
            this[1].visible = !this[1].visible;
    /********** Example Usage *************/
    var w = new Window('dialog'),
        greenPen = w.graphics.newPen(w.graphics.PenType.SOLID_COLOR,[0, .6, .2],1),
        yellowBrush =w.graphics.newBrush(w.graphics.BrushType.SOLID_COLOR,[1, 1, 0],1),
        myBiStateButton = addBiState (w, 'button', [undefined, "Theme"], [undefined, "Green"]),
        myBiStateStaticText = addBiState (w, 'staticText', [undefined, "Theme"], [undefined, "Green"]),
        stGroup = w.add('group'),
        st = stGroup.add('statictext', undefined, "Toggle"),
        highlightGroup = addBiState(stGroup, 'group');
    st = highlightGroup[0].add('statictext', undefined, "highlight")
    st = highlightGroup[1].add('statictext', undefined, "highlight")
    myBiStateButton[1].graphics.foregroundColor = greenPen;
    myBiStateStaticText[1].graphics.foregroundColor = greenPen;
    highlightGroup[1].graphics.backgroundColor = yellowBrush;
    highlightGroup[0].margins = highlightGroup[1].margins = [3, 3, 3, 3];
    stGroup.spacing = 4;
    myBiStateButton.addEventListener ('mousedown', function () {
        myBiStateButton.biStateChange();
        myBiStateStaticText.biStateChange();
        highlightGroup.biStateChange();
    w.show();

  • Change Mailbox Behavior - Can it be changed back to default?

    I mistakenly changed the setting and want to change it back to default, i.e. keep sent box on the server rather than on my iPhone. Is it possible? If not, does not mean the messages in my sent box will stay on my server AS WELL AS on my iPhone? Thanks.
    I was a blackberry user and find I can not set the mail account as my blackberry. I want my iPhone to just check new emails when I am by my desktop. I do not want it to sync with my mail system which take too much space. Can anybody here help me?

    # Click the orange Firefox button or, if the application menu is enabled, click '''Tools''' followed by '''Options'''
    # Click on the '''Content''' icon/category
    # Next to where it says ''Block popup windows ''click the '''Exceptions''' button
    # Select the site for which you wish to revoke the exception then click the '''Remove Site''' button

  • Cursor does not change back to default after resize

    Hi all,
    I have a modal decorated JDialog, in normal situation, i put the cursor on the border, the curosr will change to resize cursor, so i drag it and the dialog is resized, after resized, the cursor should change back to default cursor when i enter the dialog again, but i found that somotimes after several resizes, the cursor fail to change back to default and remain as the resize cursor.

    Hi
    I think there is nothing so strange to cause the problem so I did not put it before, but if someone can help me I will be thankful.
    public class TestFrame extends JPanel
         private static TestFrame testFrame;
         private JFrame frame;
         public static void main(String args[])
              JDialog.setDefaultLookAndFeelDecorated(true);
              testFrame = new TestFrame();
              testFrame.mainImplementation();
         private void mainImplementation()
              JButton jButton = new JButton("Show dialog");
              jButton.addActionListener(new ButtonActionListener());
              add(jButton);
              frame = new JFrame();
              frame.setContentPane(this);
              frame.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
              WindowListener l = new WindowAdapter()
                   public void windowClosing(WindowEvent e)
                        System.exit(0);
              frame.addWindowListener(l);
              frame.setBounds(0, 0, 500, 500);
              frame.setTitle("Test");
              frame.show();
         class ButtonActionListener implements ActionListener
              public void actionPerformed(ActionEvent e)
                   MyDialog jDialog = new MyDialog(frame);
                   jDialog.setVisible(true);
         class MyDialog extends JDialog
              public MyDialog(Frame owner)
                   super(owner);
                   setModal(true);
                   getRootPane().setWindowDecorationStyle(JRootPane.FRAME);
                   JLabel label1 = new JLabel("Label1");
                   JTextField textField1 = new JTextField();
                   textField1.setEnabled(false);
                   textField1.setMinimumSize(new Dimension(100, 25));
                   textField1.setPreferredSize(new Dimension(200, 25));
                   JLabel label2 = new JLabel("Label2");
                   JTextField textField2 = new JTextField();
                   textField2.setEnabled(false);
                   textField2.setMinimumSize(new Dimension(100, 25));
                   textField1.setPreferredSize(new Dimension(200, 25));
                   JLabel label3 = new JLabel("Label3");
                   JTextField textField3 = new JTextField();
                   textField3.setEnabled(false);
                   textField3.setMinimumSize(new Dimension(100, 25));
                   textField1.setPreferredSize(new Dimension(200, 25));
                   JPanel panel = new JPanel(new GridLayout(3, 2));
                   panel.add(label1);
                   panel.add(textField1);
                   panel.add(label2);
                   panel.add(textField2);
                   panel.add(label3);
                   panel.add(textField3);
                   getContentPane().add(panel);
                   pack();
    }

  • Users have to change GW mode every morning

    Hello,
    I hope someone can help me. I'm a level 1 IT support guy in a governmental institution
    (5000 employees). I'm responsable for level 1 support for 550 users. We've been using Groupwise 7 and Webaccess for a few years now.
    Recently, I've had 3 users who have to change their mode each morning. 2 of them want to work with cached mode, but have to change this each morning from online, the other is a manager who travels a lot. He has to change cached to online each morning. I've tried a few things (checked the settings and the rights) but can't find an answer. Our level 2 guys can't find the answer either.
    Do any of you have an idea?
    Thanks a lot in advance.
    Marc Vanstraelen

    I have seen this also with GW 7.0.4 and WIN xp, when I switch to another
    mode and then restart GW, sometimes the Windows registry setting gets
    "stuck" (for lack of a better term) and will not default to the last used
    mode. Since it was just me doing some testing, I went into the registry and
    changed it back manually. Unfortunately, I canot help with why it happens
    or a fix.
    HKEY_Current_User/Software/Novell/Groupwise/Login Parameters/Mode
    "DE" <[email protected]> wrote in message
    news:Y2QLo.6432$[email protected]..
    > mvstrael wrote:
    >> Hello,
    >> I hope someone can help me. I'm a level 1 IT support guy in a
    >> governmental institution (5000 employees). I'm responsable for level 1
    >> support for 550 users.
    >> We've been using Groupwise 7 and Webaccess for a few years now.
    >>
    >> Recently, I've had 3 users who have to change their mode each morning.
    >> 2 of them want to work with cached mode, but have to change this each
    >> morning from online, the other is a manager who travels a lot. He has to
    >> change cached to online each morning. I've tried a few things (checked
    >> the settings and the rights) but can't find an answer. Our level 2 guys
    >> can't find the answer either.
    >>
    >> Do any of you have an idea?
    >>
    >> Thanks a lot in advance.
    >>
    >> Marc Vanstraelen
    >>
    >>
    > Look at the shortcuts and make sure they don't have any settings other
    > than the program itself.
    >
    > Close Notify first and then start Groupwise. Change Notify to not run on
    > startup.
    >

  • Hi, how can i return back safari default search engine?

    How can I return back safari default search engine? It has been changed after trying to download adobe flash player.

    You may have installed one or more of the common types of ad-injection malware. Follow the instructions on this Apple Support page to remove it. It's been reported that some variants of the "VSearch" malware block access to the page. If that happens, start in safe mode by holding down the shift key at the startup chime, then try again.
    Back up all data before making any changes.
    One of the steps in the article is to remove malicious Safari extensions. Do the equivalent in the Chrome and Firefox browsers, if you use either of those. If Safari crashes on launch, skip that step and come back to it after you've done everything else.
    If you don't find any of the files or extensions listed, or if removing them doesn't stop the ad injection, ask for further instructions.
    Make sure you don't repeat the mistake that led you to install the malware. It may have come from an Internet cesspit such as "Softonic" or "CNET Download." Never visit either of those sites again. You might also have downloaded it from an ad in a page on some other site. The ad would probably have included a large green button labeled "Download" or "Download Now" in white letters. The button is designed to confuse people who intend to download something else on the same page. If you ever download a file that isn't obviously what you expected, delete it immediately.
    Malware is also found on websites that traffic in pirated content such as video. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect more of the same, and worse, to follow. Never install any software that you downloaded from a bittorrent, or that was downloaded by someone else from an unknown source.
    In the Security & Privacy pane of System Preferences, select the General tab. The radio button marked Anywhere  should not be selected. If it is, click the lock icon to unlock the settings, then select one of the other buttons. After that, don't ignore a warning that you are about to run or install an application from an unknown developer.
    Still in System Preferences, open the App Store or Software Update pane and check the box marked
              Install system data files and security updates (OS X 10.10 or later)
    or
              Download updates automatically (OS X 10.9 or earlier)
    if it's not already checked.

  • Why do system preferences revert back to default every time computer is restarted

    Cannot keep changes to System preferences.  All revert back to default every time computer is restarted.
    Also, all extensions, e.g. adblock, reinstall every time computer is restarted.
    <Personal information edited by Host>

    Back up all data before proceeding.
    This procedure will unlock all your user files (not system files) and reset their ownership, permissions, and access controls to the default. If you've intentionally set special values for those attributes on any of your files, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it, but you do need to follow the instructions below.
    Step 1
    If you have more than one user, and the one in question is not an administrator, then go to Step 2.
    Triple-click anywhere in the following line on this page to select it:
    sudo find ~ $TMPDIR.. -exec chflags -h nouchg,nouappnd,noschg,nosappnd {} + -exec chown -h $UID {} + -exec chmod +rw {} + -exec chmod -h -N {} + -type d -exec chmod -h +x {} + 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window by pressing command-V. I've tested these instructions only with the Safari web browser. If you use another browser, you may have to press the return key after pasting.
    You'll be prompted for your login password, which won't be displayed when you type it. Type carefully and then press return. You may get a one-time warning to be careful. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command may take several minutes to run, depending on how many files you have. Wait for a new line ending in a dollar sign ($) to appear, then quit Terminal.
    Step 2 (optional)
    Take this step only if you have trouble with Step 1, if you prefer not to take it, or if it doesn't solve the problem.
    Start up in Recovery mode. When the OS X Utilities screen appears, select
              Utilities ▹ Terminal
    from the menu bar. A Terminal window will open. In that window, type this:
    res
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window will open. You’re not going to reset a password.
    Select your startup volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select
               ▹ Restart
    from the menu bar.

  • Printer Queue Settings Mysteriously Reverting Back to Default Settings on 2008 R2 print servers

    Printer Queue Settings Mysteriously Reverting Back to Default Settings on 2008 R2 print servers
    We have 4 Windows Server 2008 R2 print servers, all of which has the same printer queues installed on them that are utilized by a 3rd party printing program that does a round-robin load balancing scheme.  
    All printers are a combination of HP and Xerox all running some variation of the HP UPD and the Xerox UPD.  Some use the PCL 5 and some use the PCL 6 version determined by age of printer and need.  
    There are typically two printer queues for each physical printer.  
    Example:
    LOCATION_ROOM
    LOCATION_ROOM_TRAY2
    The regular queue is ok being left with default setting,
    The _TRAY2 queues are set to print to "labels" or "pre-printed" paper type or a specific tray.
    From time to time, these _TRAY2 queues will revert back to a factory default state and lose the setting to print to a specific paper type or tray.  Sometimes it happens to the _TRAY2 queue on all 4 servers, sometimes just 1 server, etc.  No rhyme
    or reason.
    Disabled Bi-directional options on both the HP and Xerox UPDs per another article on the internet that said bi-directional could cause the printer to send back settings to the driver and cause this issue.  Even with this option off, we continue to see
    printer _TRAY2 queue settings revert back to factory default and lose their specific paper and tray settings.  We have ruled out the possibility that users or other technicians are the ones making these changes so we suspect it is some interaction between
    the servers, printer drivers and printers themselves causing the issue.  
    Any insight would be greatly appreciated.

    I'd start by using one of the print drivers included in Windows for a few of the printers and confirm it's the universal driver that is causing the issue.
    HP installs some other processes and services on the machine which communicate with the HP devices. 
    PML and something else.  You might want to shut those down and see if these processes are the ones modifying the settings.
    Run process monitor to truly identify which processes is causing the modifications. 
    Alan Morris formerly with Windows Printing Team

  • Changing Screen Modes Quirk

    This issue comes up randomly and I can't really troubleshoot it enough to find a pattern.
    When I open a document and hit "f" to change screen modes, sometimes the nextscreen mode (not full screen - it's the one where your canvas extends to the full dimensions of the application window) doesn't dipsplay the menus at the top (nor any panels for that matter) here is a screen shot of the first screen mode (default)
    then when I press "f" the first time, I sometimes get this
    the next screen mode appears to be as it should, but I can't figure out whether this could be a graphics driver issue, a preferences issue (that needs to be reset), a problem internally (Photoshop versus RAM), etc. This seems to happen when I'm working on large file sizes (100MB+), but like I said - it's all a little random. In the past I've reset preferences, made sure my graphics drivers were updated - all that I know to try.
    What else could be the problem? Rebooting Photoshop fixes it 20% of the time (or less), sometimes I can "log off" and that fixes it, but mainly I have to reboot.

    Bottom line is this:  It is WAY too complicated a problem to answer simply.  It's a lot like "Ford" vs. "Chevy".
    Generally speaking, I'm seeing fewer bad reports from ATI users, but that doesn't mean individual cards are all better.
    People on this forum report, for example, that they sometimes cannot get Photoshop's OpenGL to work with an ATI 5670, and that the expensive nVidia Quadro cards are causing more problems with Photoshop than the reasonably priced "gamer" models.
    Right now, today, considering the last year's worth of experience, it appears that ATI is releasing better drivers, particularly for several year old models, than nVidia is.  Will that keep up?  Who can say.
    Might be a good idea to pick a specific model you like then just ask whether folks are already using it with good results.
    FYI, in the grand scheme of things Photoshop doesn't demand all that much from the video card, so even inexpensive cards CAN work well with it.  Whether they actually DO on any given day with any given model, well, that's what's hard to nail down.
    -Noel

  • How to Document mode to EDGE by default

    Windows 7 x64 SP1 enviroment, IE11 patched via WSUS to all Computers. In F12 developer tools, document mode is not EDGE as default. Our Customer requires to be EDGE on all Computers. This is something I´m not femiliar with and there is no Policy or Preferences
    to set on.
    Any ideas? I´ve looked around, some suggest scripts to change it, some are talking about the new enterprice mode, but I don´t see how it helps.

    Hi,
    In my opinion, enforce Document Mode to Edge by default in IE isn't a good choice. Because not all website are compatible with Edge Mode in Internet Explorer. According to the description from MSDN:
    How Internet Explorer Chooses Between Document Modes:
    By default, Windows Internet Explorer 8 uses IE8 mode, Windows Internet Explorer 9 uses IE9 mode, etc. However, Windows Internet Explorer
    uses several criteria to determine which document mode to use. For example, if an HTML page contains a valid <!DOCTYPE> declaration
    (see [HTML5]),
    Internet Explorer uses one of the standards-based document modes. But, if there is no valid<!DOCTYPE> declaration, Internet
    Explorer uses quirks mode.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • HT5569 How do I set iphone back to default or factory setting?

    How do I set iphone back to default or factory setting?

    There's some confusion here. Do you mean the code to visit settings/general/restrictions, or the Apple ID and password to deactivate Activation Lock? Here's how to test.
    First, go to settings/General/Restrictions. Do you need to enter a 4 digit code? If you do, then connect the phone to your computer and restore the phone from Recovery Mode as described here: http://support.apple.com/kb/HT1808.
    If no code is required to get into Restrictions what you need is the Apple ID and passcode that was used to set Find my iPhone. To verify that this is what is needed go to Settings/iCloud and turn off Find my iPhone. You will be prompted for your Apple ID and passcode. If you don't have them your phone is permanently disabled. You can contact Apple Account Security to prove you are the owner of the Apple ID and get the password reset. See: http://support.apple.com/kb/HT5699

Maybe you are looking for

  • Automatic reset on iPod Touch

    Hey has anyone had their iPod Touch randomly reset and lose all their info? Is there a hard reset that can bring it back without the restore from iTunes? There was no back-up file created. Trying to assist a teenager from having her world end as she

  • Is it possible to do this ?

    Hi, i am using adobe livecycle and a java-web based application running in a jboss server. What i want is to submit the full pdf, and in the action servlet , do somethings and return an xml with the data that has to fill the form. I have 2 possibilit

  • I tunes not opening, please help

    First, I am running I tunes on windows. Anyway. Every time that I click on my I tunes icon, the loading hour glass will apear for about 5 seconds, then dissapear without loading I tunes. I worked before but not anymore. Also I am not sure this matter

  • OEL5 on Virtual PC 2007 - dislpay problems

    Hi, I have a Windows Vista PC with Virtual PC 2007 and installed Oracle Enterprise Linux 5 on a VM to use as Oracle 10g lab. The installation completed fine, but I cannot use GUI(Gnome) because when I issue X command, the screen turns black and I can

  • OS X Lion Bridge CS6 keeps freezing up

    Upon entering certain folders Bridge will freeze up. There is nothing I know of in these folders to cause this kind of reaction. Sometimes if I leave it long enough it will enter the folder, then that folder works. If I force quit then bridge will fr