النتائج 1 إلى 10 من 10

الموضوع: حساب ويلد كارد بطريقة مبسطة Calculating Wildcard Masks

  1. #1
    عضو فضي الصورة الرمزية okaenrique
    تاريخ التسجيل
    Jun 2005
    المشاركات
    513
    الدولة: Suriname
    معدل تقييم المستوى
    0

    Thumbs up حساب ويلد كارد بطريقة مبسطة Calculating Wildcard Masks

    السلام عليكم ...

    كتبت لكم اليوم حساب wildcard masks بطريقة مبسطة وبالغة الانكليزية وحضرته من احد مراجع
    تعليم ccna


    Calculating Wildcard Masks
    The wildcard mask is used with access list statements to identify a range of IP addresses (such as all addresses on a specific network). When used to identify network addresses in access list statements, wildcard masks are the exact opposite of a subnet mask. To calculate the wildcard mask:

    Identify the decimal value of the subnet mask.
    Subtract each octet in the subnet mask from 255.
    For example, suppose you wanted to allow all traffic on network 10.12.16.0/21. To find the wildcard mask:

    A mask that covers 21 bits converts to 255.255.248.0
    The wildcard mask would be:
    First octet: 255 - 255 = 0
    Second octet: 255 - 255 = 0
    Third octet: 255 - 248 = 7
    Fourth octet: 255 - 0 = 255
    This gives you the mask of: 0.0.7.255
    Like subnet masks, wildcard masks operate at the bit level. Any bit in the wildcard mask with a 0 value means that the bit must match to match the access list statement. A bit with a 1 value means that the bit does not have to match. For example, let's examine the subnet address, subnet mask, and wildcard mask in binary form for the preceding example.

    Address Type Decimal Values Binary Values
    Subnet address 10.12.16.0 00001010.00001100.00010000.00000000

    Subnet mask 255.255.248.0 11111111.11111111.11111000.00000000
    Wildcard mask 0.0.7.255 00000000.00000000.00000111.11111111

    Notice how the bits in the wildcard mask are exactly opposite of the bits in the subnet mask. Suppose an access list were created with a statement as follows:

    access-list 12 deny 10.12.16.0 0.0.7.255

    Suppose that a packet addressed to 10.12.16.15 was received. The router uses the wildcard mask to compare the bits in the address to the bits in the subnet address.

    Address Type Decimal Values Binary Values
    Subnet address 10.12.16.0 00001010.00001100.00010000.00000000

    Wildcard mask 0.0.7.255 00000000.00000000.00000111.11111111
    Target address #1 10.12.16.15 00001010.00001100.00010000.00001111
    How the router applies the mask to the address
    m=match
    i=ignored
    x=doesn't match mmmmmmmm.mmmmmmmm.mmmmmiii.iiiiiiii

    In this example, all bits identified with a 0 in the wildcard mask must match between the address and the network address. Any bit identified with a 1 is ignored. In this example, 10.12.16.15 matches the access list statement and the traffic is denied.

    Now suppose that a packet addressed to 10.13.17.15 was received. The router uses the wildcard mask to compare the bits in the address to the bits in the subnet address.

    Address Type Decimal Values Binary Values
    Subnet address 10.12.16.0 00001010.00001100.00010000.00000000

    Wildcard mask 0.0.7.255 00000000.00000000.00000111.11111111
    Target address #1 10.13.17.15 00001010.00001101.00010001.00001111
    How the router applies the mask to the address
    m=match
    i=ignored
    x=doesn't match
    mmmmmmmm.mmmmmmmx.mmmmmiii.iiiiiiii


    Notice that this address does not match the access list statement as identified with the wildcard mask. In this case, traffic would be permitted
    "Rise and rise again, until lambs become lions

  2. #2
    عضو فضي الصورة الرمزية okaenrique
    تاريخ التسجيل
    Jun 2005
    المشاركات
    513
    الدولة: Suriname
    معدل تقييم المستوى
    0

    Thumbs up Monitoring Access Lists

    The following list summarizes the commands to use for viewing specific access list information on the router.

    If you want to view... Use...
    All access lists that exist on the router show run
    show access-lists
    All access lists applied to an interface show ip int
    show run
    Rejected traffic information show log
    IP access lists configured on the router show run
    show ip access-lists
    A specific access list show access-lists <number>
    "Rise and rise again, until lambs become lions

  3. #3
    عضو الصورة الرمزية moh-amin
    تاريخ التسجيل
    Aug 2006
    المشاركات
    280
    الدولة: Sri Lanka
    معدل تقييم المستوى
    18

    رد: حساب ويلد كارد بطريقة مبسطة Calculating Wildcard Masks

    مش بقولك انت فنان ، حقيقي درس جميل

    جزاك الله كل خير
    https://img262.imageshack.us/img262/1552/do3aans5.gif

    سبحان الله وبحمده ** سبحان الله العظيم

  4. #4
    عضو
    تاريخ التسجيل
    Sep 2007
    المشاركات
    705
    الدولة: Egypt
    معدل تقييم المستوى
    17

    رد: حساب ويلد كارد بطريقة مبسطة Calculating Wildcard Masks

    جزاك الله كل خير اخى الكريم و ربنا يباركلك بما افدتنا و علمتنا

  5. #5
    عضو فضي الصورة الرمزية okaenrique
    تاريخ التسجيل
    Jun 2005
    المشاركات
    513
    الدولة: Suriname
    معدل تقييم المستوى
    0

    رد: حساب ويلد كارد بطريقة مبسطة Calculating Wildcard Masks

    عفوا اخي
    "Rise and rise again, until lambs become lions

  6. #6
    عضو
    تاريخ التسجيل
    Apr 2007
    المشاركات
    532
    معدل تقييم المستوى
    0

    رد: حساب ويلد كارد بطريقة مبسطة Calculating Wildcard Masks

    الف شكر ليك اخي على المواضيع المتميزه

    واصل ومنتظرين كل جديد منك

    ويعطيك ربي الف عافيه

  7. #7

  8. #8
    عضو فضي الصورة الرمزية okaenrique
    تاريخ التسجيل
    Jun 2005
    المشاركات
    513
    الدولة: Suriname
    معدل تقييم المستوى
    0

    رد: حساب ويلد كارد بطريقة مبسطة Calculating Wildcard Masks

    عفواااااااااا
    "Rise and rise again, until lambs become lions

  9. #9
    عضو
    تاريخ التسجيل
    Sep 2007
    المشاركات
    100
    الدولة: Jordan
    معدل تقييم المستوى
    0

    رد: حساب ويلد كارد بطريقة مبسطة Calculating Wildcard Masks

    ماشاء الله لاقوة الابالله عليك

  10. #10
    عضو فضي الصورة الرمزية okaenrique
    تاريخ التسجيل
    Jun 2005
    المشاركات
    513
    الدولة: Suriname
    معدل تقييم المستوى
    0

    رد: حساب ويلد كارد بطريقة مبسطة Calculating Wildcard Masks

    عفوا اخي ...........
    "Rise and rise again, until lambs become lions

المواضيع المتشابهه

  1. شرح بطريقة مبسطة كيفية عمل Rest password administrator domain
    بواسطة مزرعة الاشباح في المنتدى منتدى الشهادات العام
    مشاركات: 2
    آخر مشاركة: 14-01-2012, 11:34
  2. Wildcard mask
    بواسطة الفارس المتعلم في المنتدى الأرشيف
    مشاركات: 4
    آخر مشاركة: 13-02-2010, 14:11

الكلمات الدلالية لهذا الموضوع

المفضلات

ضوابط المشاركة

  • لا تستطيع إضافة مواضيع جديدة
  • لا تستطيع الرد على المواضيع
  • لا تستطيع إرفاق ملفات
  • لا تستطيع تعديل مشاركاتك
  •