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

الموضوع: متطلبات عمل VPN

  1. #1
    عضو
    تاريخ التسجيل
    Dec 2007
    المشاركات
    36
    معدل تقييم المستوى
    0

    متطلبات عمل VPN

    السلام عليكم ورحمة الله وبركاته
    يا إخوتي عندنا شركه فيها فرعين كل فرع في مدينه وكل شركة فيها خدمة ال DSL فقط
    نريد عمل شبكة VPN بين الفرعين ونريد إستخدام راوتر سيسكو 1841 أرجو أن تفيدوني ما هي
    المتطلبات الأخرى لعمل هذه الشبكة وهل لازم يكون هناك leased line أو ممكن عملها بخط ال DSL فقط
    وشكرا

  2. #2
    عضو الصورة الرمزية Eng.MagoooD
    تاريخ التسجيل
    Aug 2008
    المشاركات
    723
    الدولة: Egypt
    معدل تقييم المستوى
    16

    رد: متطلبات عمل VPN

    هذه المتطلبات كافية لعمل Site-to-Site VPN بال DSL فقط ، لكن انتبه عشان اكيد هياثر على سرعة الانترنت .

    كل اللي عليك فعله هو ال Configuration المناسبة على كل راوتر .

    و الحل الافضل انك تكلم مزود الخدمة في بلدك و تطلب منه الربط بين الفرعين باستخدام IP-VPN لكن اكيد التكلفة هتكون اعلى .


    لا اله الا انت سبحانك اني كنت من الظالمين

    https://www.quranflash.com/

    https://www.ualberta.ca/%7Eesa106/images/egypt-flag.jpg

  3. #3
    عضو برونزي
    تاريخ التسجيل
    May 2007
    المشاركات
    1,475
    معدل تقييم المستوى
    18

    رد: متطلبات عمل VPN

    اخي العزيز يمكنك عمل Site To Site VPN
    بكل سهوله ويسر

    https://www.tek-tips.com/viewthread....1516228&page=2

    https://www.ciscosystems.com/en/US/d...de/vpngre.html

    شوف هذه الاشياء ويوم او يومين وقولي وصلت لائيه يا باشا
    -------------------------------------------
    [B][SIZE=4]فين الاسئله يا شباب في اقسام Cisco
    عاوزين اسئله في الVoice و الData
    عاوزين نقدر نفدكم [/SIZE][/B]

  4. #4
    عضو برونزي
    تاريخ التسجيل
    May 2007
    المشاركات
    1,475
    معدل تقييم المستوى
    18

    رد: متطلبات عمل VPN

    شوف يا باشا ده
    https://www.articlesbase.com/compute...rs-677948.html

    اهه محتوه الموقع

    Sample phase one configuration:
    tukwila(config)#crypto isakmp policy 10
    tukwila(config-isakmp)#hash sha
    tukwila(config-isakmp)#authentication pre-share
    tukwila(config-isakmp)#crypto isakmp key vpnkey address 192.168.16.105

    Phase Two configuration involves configuring the encrypted tunnel. In Phase Two configuration, you create and name a transform set which identifies the encrypting protocols used to create the secure tunnel. You must also create a crypto map in which you identify the peer at the opposite end of the tunnel, specify the transform-set to be used, and specify which access control list will identify permitted traffic flows. In this example, we chose AES due to its heightened security and enhanced [COLOR=#009900 !important][COLOR=#009900 !important]performance[/COLOR][/COLOR]. The statement "set peer 192.168.16.25" identifies the outside interface of the router at the opposite end of the tunnel. The statement "set transform-set vpnset" tells the router to use the parameters specified in the transform-set vpnset in this tunnel. The "match address 100" statement is used to associate the tunnel with access-list 100 which will be defined later.

    Sample phase two configuration:
    tukwila(config)#crypto ipsec transform-set vpnset esp-aes esp-sha-hmac
    tukwila(cfg-crypto-trans)#exit
    tukwila(config)#crypto map vpnset 10 ipsec-isakmp
    % NOTE: This new crypto map will remain disabled until a peer
    and a valid access list have been configured.
    tukwila(config-crypto-map)#set peer 192.168.16.105
    tukwila(config-crypto-map)#set transform-set vpnset
    tukwila(config-crypto-map)#match address 100

    The crypto map must be applied to your outside interface (in this example, interface FastEthernet 4):

    tukwila(config)#int f4
    tukwila(config-if)#crypto map vpnset

    You must create an access control list to explicitly allow traffic from the router's inside LAN across the tunnel to the other router's inside LAN (in this example, the router tukwila's inside LAN network address is 10.10.10.0/24 and the other router's inside LAN network address is 10.20.0.0/24):

    tukwila(config)#access-list 100 permit ip 10.10.10.0 0.0.0.255 10.20.0.0 0.0.0.255

    (For more information about the syntax of access-control lists, see my other articles on creating and managing Cisco router access-control lists.)

    You must also create a default gateway (also known as the "gateway of last resort"). In this example, the default gateway is at 192.168.16.1:

    tukwila(config)#ip route 0.0.0.0 0.0.0.0 192.168.16.1

    Verifying VPN Connections

    The following two commands can be used to verify VPN connections:

    Router#show crypto ipsec sa
    This command displays the settings used by the current Security Associations ([COLOR=#009900 !important][COLOR=#009900 !important]SAs[/COLOR][/COLOR]).

    Router#show crypto isakmp sa
    This command displays current IKE Security Associations.

    Troubleshooting VPN Connections

    After confirming physical connectivity, [COLOR=#009900 !important][COLOR=#009900 !important]audit[/COLOR][/COLOR] both ends of the VPN connection to ensure they mirror each other.

    Use debugging to analyze VPN connection difficulties:

    Router#debug crypto isakmp
    This command allows you to observe Phase 1 ISAKMP negotiations.

    Router#debug crypto ipsec
    This command allows you to observe Phase 2 IPSec negotiations

    بالتوفيق اخي العزيز بتهيقلي الرد ده هينفعك جدا
    بالتوفيق اخي العزيز
    -------------------------------------------
    [B][SIZE=4]فين الاسئله يا شباب في اقسام Cisco
    عاوزين اسئله في الVoice و الData
    عاوزين نقدر نفدكم [/SIZE][/B]

  5. #5
    عضو الصورة الرمزية BENDAOUD7
    تاريخ التسجيل
    Jul 2007
    المشاركات
    793
    الدولة: Algeria
    معدل تقييم المستوى
    17

    رد: متطلبات عمل VPN


    اللهم وفقني لحفظ القرآن
    موضوعي حول ال virtualisation مع VMware
    https://www.arabhardware.net/forum/s...d.php?t=215569
    تعرف على شهادة الأنستركتور CCSI
    https://www.arabhardware.net/forum/s...54#post1851054

  6. #6
    عضوية جديدة
    تاريخ التسجيل
    Nov 2010
    المشاركات
    9
    معدل تقييم المستوى
    0

    رد: متطلبات عمل VPN

    الله يديك العافية ويكرم والديك...

  7. #7
    عضو
    تاريخ التسجيل
    Aug 2010
    المشاركات
    31
    الدولة: Saudi Arabia
    معدل تقييم المستوى
    0

    رد: متطلبات عمل VPN

    السلام عليكم

    صاحب الموضوع اذا ماخاب ضني انت صالح حسن


    اذا صح اكيييييييد ماعرفتني معاك .... ولا اقولك بعدين

    تصدق عرفتك من اليوزر نيم نفس اللي بالمسنجر وكمان من اليمن اكيد انت صالح

    لا اوصيك عرب هارد ويير ماراح تحصل افضل منو ،،، الافضل والاحسن والاجمل

    تحياتي

  8. #8
    عضوية جديدة
    تاريخ التسجيل
    Dec 2009
    المشاركات
    7
    معدل تقييم المستوى
    0

    رد: متطلبات عمل VPN

    ياجماعه انا ماعندي اي معلومه عن الموضوع هاذه الرجاء اعطائي اساس النعلومات هاذه مع العلم اني امكمل دورة CCNA

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

  1. متطلبات وظيفة NOC
    بواسطة Foadd في المنتدى الأرشيف
    مشاركات: 0
    آخر مشاركة: 28-09-2012, 06:44
  2. متطلبات اشترك DSl
    بواسطة ZaStava في المنتدى الأرشيف
    مشاركات: 2
    آخر مشاركة: 31-10-2006, 21:11
  3. متطلبات Nx6600 GT
    بواسطة Abdulhadi في المنتدى الأرشيف
    مشاركات: 2
    آخر مشاركة: 19-06-2005, 17:06

المفضلات

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

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