نمایش نتایج: از شماره 1 تا 7 از مجموع 7
سپاس ها 2سپاس
  • 1 توسط hamid khan
  • 1 توسط als_1360

موضوع: سوال در مورد san

  
  1. #1
    نام حقيقي: negar

    عضو غیر فعال
    تاریخ عضویت
    Dec 2010
    محل سکونت
    TEH
    نوشته
    14
    سپاسگزاری شده
    0
    سپاسگزاری کرده
    8

    سوال در مورد san

    سلام
    من یه سوال داشتم. من در مورد san یه سری اطلاعات دارم اما چندتا سوال برام پیش اومده !!!
    تو یکی از این فروم ها داشتم میگشتم یه مطلب در مورد پیاده سازی san دیدم و اون این بود که برای پیاده سازی
    از یک سوییچ های دیگه مثل mds و یا nexsus استفاده میشه
    من فکر میکردم که SAN به سوییچمعمولی وصل میشه !! میشه یکم برام توضیح بدین؟؟؟
    خود SAN چطور کانفیگ میشه ؟؟؟ایا به وسیله سویچچ ؟؟؟؟ و یه چیره دیگه فیبر چنل چیه؟؟؟؟
    ببخشید که سوال هام زیاد شد.خیلییی ممنون میشم اگه جوب بدین



    موضوعات مشابه:

  2. #2
    نام حقيقي: حمید قنبریان

    خواننده
    تاریخ عضویت
    Oct 2009
    محل سکونت
    کرج
    نوشته
    501
    سپاسگزاری شده
    522
    سپاسگزاری کرده
    203
    از پست زیر بازدید فرمایید .

    آینده SAN در دیتا سنتر ها


    negar-ss سپاسگزاری کرده است.

  3. #3
    نام حقيقي: negar

    عضو غیر فعال
    تاریخ عضویت
    Dec 2010
    محل سکونت
    TEH
    نوشته
    14
    سپاسگزاری شده
    0
    سپاسگزاری کرده
    8
    مرسی خوب بود اما در مورد سوییچ توضیح نداده !!!

    از دوستان اگر کسی اطلاعی داره لطفآ بزاره خیلیییی ضروریه . . .



  4. #4
    نام حقيقي: negar

    عضو غیر فعال
    تاریخ عضویت
    Dec 2010
    محل سکونت
    TEH
    نوشته
    14
    سپاسگزاری شده
    0
    سپاسگزاری کرده
    8
    ببخشید یعنییی کسی با SAN کار نکرده ؟؟؟؟؟

    یا کلآ جواب تازه کار ها رو نمیدن ؟؟؟؟؟



  5. #5
    نام حقيقي: حمید قنبریان

    خواننده
    تاریخ عضویت
    Oct 2009
    محل سکونت
    کرج
    نوشته
    501
    سپاسگزاری شده
    522
    سپاسگزاری کرده
    203

    SAN Port Channels from Nexus 5010 to MDS 9134

    Tuesday, November 30, 2010 in Networking, Storage by slowe | 15 comments

    As part of an ongoing effort to expand the functionality of the vSpecialist lab in the EMC RTP facility, we recently added a pair of Cisco MDS 9134 Fibre Channel switches. These Fibre Channel switches are connected to a pair of Cisco Nexus 5010 switches, which handle Unified Fabric connections from a collection of CNA-equipped servers. To connect the Nexus switches to the MDS switches, we used SAN port channels to bond multiple Fibre Channel interfaces together for both redundancy and increased aggregate throughput. Here is how to configure SAN port channels to connect a Cisco Nexus switch to a Cisco MDS switch.
    If you are interested, more in-depth information can be found here on Cisco’s web site.
    Although I’ve broken out the configuration for the MDS and the Nexus into separate sections, the commands are very similar. In my situation, the MDS 9134 was running NX-OS 5.0(1a) and the Nexus 5010 was running NX-OS 4.2(1)N1(1).
    Configuring the Cisco MDS 9134

    To configure the MDS 9134 with a SAN port channel, use the following commands.
    First, create the SAN port channel with the interface port-channel command, like this:
    mds(config)# interface port-channel 1
    You can replace the “1″ at the end of that command with any number from 1 to 256; it’s just the numeric identifier for that SAN port channel. The SAN port channel number does not have to match on both ends.
    Once you’ve created the SAN port channel, then add individual interfaces with the channel-group command:
    mds(config)# interface fc1/16
    mds(config-if)# channel-group 1
    The “1″ specified in the channel-group command has to match the number specified in the earlier interface port-channel command. This might seem obvious, but I wanted to point it out nevertheless.
    Repeat this process for each interface you want to add to the SAN port channel. In my example, I used two interfaces.
    When you add an interface to the SAN port channel, NX-OS reminds you to perform a matching configuration on the switch at the other end, then use the no shutdown command to make the interfaces (and the SAN port channel) active. Let’s look first at the commands for configuring the Nexus, then we’ll examine what it looks like when we bring the SAN port channel online.
    Configuring the Cisco Nexus 5010

    The commands here are very similar to the MDS 9134. First, you need to create the SAN port channel using the interface san-port-channel command (note the slight difference in commands between the MDS and the Nexus here):
    nexus(config)# interface san-port-channel 1
    As with the MDS, the number at the end simply serves as a unique identifier for the SAN port channel and can range from 1 to 256.
    Then add interfaces to the SAN port channel using the channel-group command:
    nexus(config)# interface fc2/1
    nexus(config-if)# channel-group 1
    nexus(config-if)# interface fc2/2
    nexus(config-if)# channel-group 1
    As I’ve shown above, simply repeat the process for each interface you want to add to the SAN port channel. As on the MDS, NX-OS reminds you to perform a matching configuration on the opposite end of the link and then issue the no shutdown command.
    Bringing Up the SAN Port Channel

    Once a matching configuration is performed on both ends, then you can use the no shutdown command (which you can abbreviate to simply no shut) to activate the interfaces and the SAN port channel. After activating the interfaces, a show interface port-channel (on the MDS) or a show interface san-port-channel (on the Nexus) will show you the status of the SAN port channel. Only the first few lines of output are shown below (this output is taken from the Nexus):
    nexus# sh int san-port-channel 1
    san-port-channel 1 is trunking (Not all VSANs UP on the trunk)
    Hardware is Fibre Channel
    Port WWN is 24:01:00:05:9b:7b:0c:80
    Admin port mode is auto, trunk mode is on
    snmp link state traps are enabled
    Port mode is TE
    Port vsan is 1
    Speed is 4 Gbps
    Trunk vsans (admin allowed and active) (1)
    Trunk vsans (up) ()
    Trunk vsans (isolated) ()
    Trunk vsans (initializing) (1)


    A couple of useful pieces of information are available here:
    • First, you can see that the SAN port channel is not fully up; it’s still initializing. This is shown by the “Not all VSANs UP on the trunk” message, as well as by the “Trunk vsans (initializing)” line.
    • Second, you can see the only a single member is up. Note the speed of the SAN port channel is listed as 4 Gbps.
    • Third, note that this is a trunking port, meaning that it could carry multiple VSANs. This is noted by the “Port mode is TE” line as well as the first line of the output (“san-port-channel 1 is trunking”).
    As it turns out, I’d cabled the connections wrong; after I fixed the connections and gave the SAN port channel a small amount of time to initialize, the output was different (this output is taken from the MDS):

    nexus# sh int port-channel 1
    port-channel 1 is trunking
    Hardware is Fibre Channel
    Port WWN is 24:01:00:05:73:a7:72:00
    Admin port mode is auto, trunk mode is on
    snmp link state traps are enabled
    Port mode is TE
    Port vsan is 1
    Speed is 8 Gbps
    Trunk vsans (admin allowed and active) (1)
    Trunk vsans (up) (1)
    Trunk vsans (isolated) ()
    Trunk vsans (initializing) ()
    Now you can see that both members of the SAN port channel are active (“Speed is 8 Gbps”) and that all VSANs are trunking across the SAN port channel.
    At this point, you are now ready to proceed with creating VSANs, zones, and zonesets. Refer to these articles for more information on MDS zone creation and management via CLI:
    New User’s Guide to Configuring Cisco MDS Zones via CLI
    New User’s Guide to Managing Cisco MDS Zones via CLI
    As always, questions, clarifications, or corrections are welcome—just add them below in the comments. Thanks!

    Tags: Cisco, FibreChannel, Nexus, SAN, Storage


    کد:
    http://blog.scottlowe.org/2010/11/30/san-port-channels-from-nexus-5010-to-mds-9134/



    ویرایش توسط hamid khan : 2011-02-16 در ساعت 01:54 PM

  6. #6
    نام حقيقي: علی رضا

    خواننده شناسه تصویری als_1360
    تاریخ عضویت
    Jul 2003
    محل سکونت
    Tehran
    نوشته
    782
    سپاسگزاری شده
    154
    سپاسگزاری کرده
    22
    نقل قول نوشته اصلی توسط negar-ss نمایش پست ها
    سلام
    من یه سوال داشتم. من در مورد san یه سری اطلاعات دارم اما چندتا سوال برام پیش اومده !!!
    تو یکی از این فروم ها داشتم میگشتم یه مطلب در مورد پیاده سازی san دیدم و اون این بود که برای پیاده سازی
    از یک سوییچ های دیگه مثل mds و یا nexsus استفاده میشه
    من فکر میکردم که SAN به سوییچمعمولی وصل میشه !! میشه یکم برام توضیح بدین؟؟؟
    خود SAN چطور کانفیگ میشه ؟؟؟ایا به وسیله سویچچ ؟؟؟؟ و یه چیره دیگه فیبر چنل چیه؟؟؟؟
    ببخشید که سوال هام زیاد شد.خیلییی ممنون میشم اگه جوب بدین
    هر گردی گردو نیست
    هر جا سئویچ بود منظور سوئیچ شبکه نیست

    سن سوئیچ در واقع سوئیچی است دیتا رو بین تعدادی هارد سوئیچ می کنه .(خیلی ساده گفتم)
    و می تونه با فیبر نوری و یا کابل به هاردها () متصل بشه
    سن سوئیچ همچنین ارتباط بین سن و کامپیوتر (سرور) رو بر عهده داره
    تصویر زیر یه سن سوئیچ رو نشون می ده که با فیبر به هاردها و سرور ها متصل شده



    negar-ss سپاسگزاری کرده است.

  7. #7
    نام حقيقي: negar

    عضو غیر فعال
    تاریخ عضویت
    Dec 2010
    محل سکونت
    TEH
    نوشته
    14
    سپاسگزاری شده
    0
    سپاسگزاری کرده
    8
    ییخشید میشه عکی رو دوباره بزارین ؟؟؟؟
    ایا فیبر چنل همون ارتباط بین سوییچ و SaN است ؟؟؟



کلمات کلیدی در جستجوها:

سن سوئیچ

سن سوئیچ چیست

san switchسوئیچسوئیچ کامپیوترسن سئویچ هاسن سوئیچ هافیبر سوئیچدر مورد sanفيبر نوريپیاده سازی san سن سوئیچپورت فیبر نوری سوئیچسن سویچ EMCsan سوییچسن سوییچسن سوییچ چیستکانفیگ سوئیچ sansan switch چیستفیبر نوریكابل نوري اپتيكالدر مورد san سوییچ هااتصال دو switch به وسیله فیبرکانفیگ switch sanسن سوييچ

برچسب برای این موضوع

مجوز های ارسال و ویرایش

  • شما نمی توانید موضوع جدید ارسال کنید
  • شما نمی توانید به پست ها پاسخ دهید
  • شما نمی توانید فایل پیوست ضمیمه کنید
  • شما نمی توانید پست های خود را ویرایش کنید
  •