Guys,
I've got to convert some filers from single links to VIFs to my cisco switches. I know I can do this with some edit to the rc file and a reboot.
Can I do it with the system up and with minimal disruption to NFS traffic? Or should I just look for some downtime and reboot?
Basically, I've got a single link on e11a now. I'd like to vif e11a and e11d. So, from the console could I do:
ifconfig e11a down vif create multi v1 -b ip e11a e11d ifconfig v1 <hostname>
And be done with it? I assume I might have to make some changes on the Cisco side as well, but I'd like to minimize my outage if possible.
Thanks, John John Stoffel - Senior Staff Systems Administrator - System LSI Group Toshiba America Electronic Components, Inc. - http://www.toshiba.com/taec john.stoffel@taec.toshiba.com - 508-486-1087
You can do it all on the command line as you stated below. You'll need a full ifconfig line for the VIF, probably more than just the hostname, but it should work. You'll have to set up an EtherChannel on the Cisco side as well. Just be sure to change /etc/rc before your next reboot or it will all go away.
Also, be aware, if you do this manually, you may have to re-enter your default route as well, especially if this was your only interface. I would not expect it to come back automatically.
-- Adam Fox adamfox@netapp.com
-----Original Message----- From: John Stoffel [mailto:john.stoffel@taec.toshiba.com] Sent: Tuesday, January 08, 2008 4:21 PM To: toasters@mathworks.com Subject: convert from plain link to vif with minimal downtime?
Guys,
I've got to convert some filers from single links to VIFs to my cisco switches. I know I can do this with some edit to the rc file and a reboot.
Can I do it with the system up and with minimal disruption to NFS traffic? Or should I just look for some downtime and reboot?
Basically, I've got a single link on e11a now. I'd like to vif e11a and e11d. So, from the console could I do:
ifconfig e11a down vif create multi v1 -b ip e11a e11d ifconfig v1 <hostname>
And be done with it? I assume I might have to make some changes on the Cisco side as well, but I'd like to minimize my outage if possible.
Thanks, John John Stoffel - Senior Staff Systems Administrator - System LSI Group Toshiba America Electronic Components, Inc. - http://www.toshiba.com/taec john.stoffel@taec.toshiba.com - 508-486-1087
If you do it with ifconfig, you will have to manually edit your /etc/rc and /etc/hosts files to make the settings permanent. Other options are to run setup or use FilerView to create it. These should both update all necessary files for you.
Either way you have to take the existing link down and bring up the new one, so there will be service interruption on that network.
----- Original Message ----- From: "John Stoffel" john.stoffel@taec.toshiba.com To: toasters@mathworks.com Sent: Tuesday, January 08, 2008 4:20 PM Subject: convert from plain link to vif with minimal downtime?
Guys,
I've got to convert some filers from single links to VIFs to my cisco switches. I know I can do this with some edit to the rc file and a reboot.
Can I do it with the system up and with minimal disruption to NFS traffic? Or should I just look for some downtime and reboot?
Basically, I've got a single link on e11a now. I'd like to vif e11a and e11d. So, from the console could I do:
ifconfig e11a down vif create multi v1 -b ip e11a e11d ifconfig v1 <hostname>
And be done with it? I assume I might have to make some changes on the Cisco side as well, but I'd like to minimize my outage if possible.
Thanks, John John Stoffel - Senior Staff Systems Administrator - System LSI Group Toshiba America Electronic Components, Inc. - http://www.toshiba.com/taec john.stoffel@taec.toshiba.com - 508-486-1087
I would not attempt this with filerview
Too many bugs in that part of the code...can leave you without a network after reboot.
--tmac Sent from my Verizon Wireless BlackBerry
-----Original Message----- From: "Bill Holland" hollandwl@gmail.com
Date: Tue, 8 Jan 2008 18:26:14 To:"John Stoffel" john.stoffel@taec.toshiba.com, toasters@mathworks.com Subject: Re: convert from plain link to vif with minimal downtime?
If you do it with ifconfig, you will have to manually edit your /etc/rc and /etc/hosts files to make the settings permanent. Other options are to run setup or use FilerView to create it. These should both update all necessary files for you.
Either way you have to take the existing link down and bring up the new one, so there will be service interruption on that network.
----- Original Message ----- From: "John Stoffel" john.stoffel@taec.toshiba.com To: toasters@mathworks.com Sent: Tuesday, January 08, 2008 4:20 PM Subject: convert from plain link to vif with minimal downtime?
Guys,
I've got to convert some filers from single links to VIFs to my cisco switches. I know I can do this with some edit to the rc file and a reboot.
Can I do it with the system up and with minimal disruption to NFS traffic? Or should I just look for some downtime and reboot?
Basically, I've got a single link on e11a now. I'd like to vif e11a and e11d. So, from the console could I do:
ifconfig e11a down vif create multi v1 -b ip e11a e11d ifconfig v1 <hostname>
And be done with it? I assume I might have to make some changes on the Cisco side as well, but I'd like to minimize my outage if possible.
Thanks, John John Stoffel - Senior Staff Systems Administrator - System LSI Group Toshiba America Electronic Components, Inc. - http://www.toshiba.com/taec john.stoffel@taec.toshiba.com - 508-486-1087
When I do this, I check and double check my command and make sure it is all one line... something like this:
(remember, this is one continuous line) route -f ; ifconfig e11a down ; vif create lacp vif0 -b ip e11a e11b ; ifconfig vif0 192.168.1.10 netmask 255.255.255.0 up ; route add default 192.168.1.254 1
Notes: If your switch and ONTAP (7.2.1 and higher, I think) supports it, use LACP. It has much better and faster fail over capabilities. Otherwise, try multi mode. Make sure to use the "up" at the end of the ifconfig line. I also think, when using vifs, mediatype is automatically set to auto and flowcontrol is set to full.
--tmac
On Jan 8, 2008 4:20 PM, John Stoffel john.stoffel@taec.toshiba.com wrote:
Guys,
I've got to convert some filers from single links to VIFs to my cisco switches. I know I can do this with some edit to the rc file and a reboot.
Can I do it with the system up and with minimal disruption to NFS traffic? Or should I just look for some downtime and reboot?
Basically, I've got a single link on e11a now. I'd like to vif e11a and e11d. So, from the console could I do:
ifconfig e11a down vif create multi v1 -b ip e11a e11d ifconfig v1 <hostname>
And be done with it? I assume I might have to make some changes on the Cisco side as well, but I'd like to minimize my outage if possible.
Thanks, John John Stoffel - Senior Staff Systems Administrator - System LSI Group Toshiba America Electronic Components, Inc. - http://www.toshiba.com/taec john.stoffel@taec.toshiba.com - 508-486-1087
Guys,
Thanks for all the feedback. We're going to schedule the downtime with the users, and do the work during a quiet time, so we should be all ok. Famous last words!
I'll have updated the rc file beforehand, so a simple reboot will also get me out of trouble, with just a little more of a burble.
John
Does anyone know if there is a way to configure a unique qtree alert to email a user when a specific amount of quota space is left? ie: /vol/vol5/qtree has 700MB left -> email joe@user.com. I know I can globally set thresholds, but didn't know if you can do individual qtree's. Thanks!
This message and any attachments (the "message") is intended solely for the addressees and is confidential. If you receive this message in error, please delete it and immediately notify the sender. Any use not in accord with its purpose, any dissemination or disclosure, either whole or partial, is prohibited except formal approval. The internet can not guarantee the integrity of this message. BNP PARIBAS (and its subsidiaries) shall (will) not therefore be liable for the message if modified. Please note that certain functions and services for BNP Paribas may be performed by BNP Paribas RCC, Inc.