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

الموضوع: How to build FTP site behind cisco router ?

  1. #1
    عضو
    تاريخ التسجيل
    Jun 2006
    المشاركات
    835
    الدولة: France
    معدل تقييم المستوى
    21

    How to build FTP site behind cisco router ?

    Hello guys ,

    I want to build FTP site behind my cisco router could you pls. advice me about the best method to do that and be note the following :
    1 ) I have free public IP lets say 10.1.1.1
    2) the FTP server has this private IP on the LAN 192.168.1.2
    3 ) I want the outside user to access the FTP site using this URL
    ftp:\\ftpcompanysite

    thnx in advance to all

  2. #2
    عضو الصورة الرمزية EsLaMxBoSS
    تاريخ التسجيل
    Jan 2008
    المشاركات
    77
    معدل تقييم المستوى
    0

    رد: How to build FTP site behind cisco router ?

    hey man
    u must open FTP port on ur router
    go to router ip
    and add FTP port 21 TCP
    its easy
    Eslam.NET Servers
    Microsoft ISA Server & MikroTik OS
    www.eslam-servers.co.cc or eslam.homeip.net
    Contact: eslam.isa@hotmail.com

  3. #3
    عضو
    تاريخ التسجيل
    Jun 2006
    المشاركات
    835
    الدولة: France
    معدل تقييم المستوى
    21

    رد: How to build FTP site behind cisco router ?

    ya man i know that but the question how i will do that, my propsal to write ACL like this

    ip access-list extended INBOUND

    permit tcp any 10.1.1.1 eq 21

    this ACL will applied as inbound in the outside router interface

    but what about NATing i think we need to connect the private IP with Public IP, I need the commands to do that ?

    and what info i have to give to ISP

  4. #4
    عضو
    تاريخ التسجيل
    Jun 2006
    المشاركات
    835
    الدولة: France
    معدل تقييم المستوى
    21

    رد: How to build FTP site behind cisco router ?

    i have to explain something extra
    the server that host the FTP site is hosting ISA and in the router configuration i have NAT statement
    to link another public IP ( i.e 10.1.1.2 ) with 192.168.1.2
    So i need another NAT statement to link the same private IP 192.168.1.2 to another public IP 10.1.1.1 but based on port 21 to distinguish it from the previous statement ??

  5. #5
    عضو الصورة الرمزية EsLaMxBoSS
    تاريخ التسجيل
    Jan 2008
    المشاركات
    77
    معدل تقييم المستوى
    0

    رد: How to build FTP site behind cisco router ?

    e.g
    my router ip is 192.168.1.254
    i go to 192.168.1.254
    and go to ports
    and add
    name: FTP Server
    port: 21 - TCP
    its only
    Eslam.NET Servers
    Microsoft ISA Server & MikroTik OS
    www.eslam-servers.co.cc or eslam.homeip.net
    Contact: eslam.isa@hotmail.com

  6. #6
    عضو
    تاريخ التسجيل
    Jun 2006
    المشاركات
    835
    الدولة: France
    معدل تقييم المستوى
    21

    رد: How to build FTP site behind cisco router ?

    i am speaking about Cisco router 2600 series

  7. #7
    عضو الصورة الرمزية EsLaMxBoSS
    تاريخ التسجيل
    Jan 2008
    المشاركات
    77
    معدل تقييم المستوى
    0

    رد: How to build FTP site behind cisco router ?

    idk this model 2600 series
    i know
    Cisco675
    Cisco677
    Cisco678
    Cisco800Series
    Eslam.NET Servers
    Microsoft ISA Server & MikroTik OS
    www.eslam-servers.co.cc or eslam.homeip.net
    Contact: eslam.isa@hotmail.com

  8. #8
    عضو الصورة الرمزية EsLaMxBoSS
    تاريخ التسجيل
    Jan 2008
    المشاركات
    77
    معدل تقييم المستوى
    0

    رد: How to build FTP site behind cisco router ?

    click on the Start button, and then click Run. This will bring up a Run program box. In the textbox in that window type Command or Cmd depending upon which version of windows you are running. Then click the Ok button. A black msdos prompt window should be open in front of you. Type telnet 1.0.0.1 (ROUER IP) , and then press the enter key on your keyboard. Type en at the prompt. You should prompted for your password. Enter your password now. By default the password is blank.
    The following will give you a couple examples of the commands you can type to setup port forwarding in your router.

    Forward port FTP 21 tcp traffic from the current outside ip address.

    set nat entry add 10.0.0.2 (UR IP) 21 tcp
    Forward port 2000-3000 tcp traffic from the current outside ip address. The 0.0.0.0 is use when you are not on a static external ip. set nat entry add (UR IP) 2000-3000 0.0.0.0 2000-3000 tcp

    Change the tcp portion to udp to forward udp traffic. set nat entry add 10.0.0.2 (UR IP) 21 udp set nat entry add (UR IP) 2000-3000 0.0.0.0 2000-3000 udp
    Type write at the prompt. Type reboot at the prompt.

    10.0.0.1 = Router IP
    10.0.0.2 = UR Router
    Eslam.NET Servers
    Microsoft ISA Server & MikroTik OS
    www.eslam-servers.co.cc or eslam.homeip.net
    Contact: eslam.isa@hotmail.com

  9. #9
    عضو
    تاريخ التسجيل
    Jun 2006
    المشاركات
    835
    الدولة: France
    معدل تقييم المستوى
    21

    رد: How to build FTP site behind cisco router ?

    are you mean this NATing command :

    ip nat inside destination static tcp 10.1.1.1 ( public ip) 21 192.168.1.2 ( private ip) 21 ??

  10. #10
    عضو الصورة الرمزية EsLaMxBoSS
    تاريخ التسجيل
    Jan 2008
    المشاركات
    77
    معدل تقييم المستوى
    0

    رد: How to build FTP site behind cisco router ?

    its edited
    Eslam.NET Servers
    Microsoft ISA Server & MikroTik OS
    www.eslam-servers.co.cc or eslam.homeip.net
    Contact: eslam.isa@hotmail.com

  11. #11
    عضو
    تاريخ التسجيل
    Jun 2006
    المشاركات
    835
    الدولة: France
    معدل تقييم المستوى
    21

    رد: How to build FTP site behind cisco router ?

    what you mean by UR Router?

  12. #12
    عضو
    تاريخ التسجيل
    Jun 2006
    المشاركات
    835
    الدولة: France
    معدل تقييم المستوى
    21

    رد: How to build FTP site behind cisco router ?

    Dear EsLaMxBoSS

    The command have to be apply like this

    ip nat inside source static tcp PRIVATE_IP 21 PUBLIC_IP 21 extendable

    thnx a lot for ur great help

  13. #13
    عضو الصورة الرمزية EsLaMxBoSS
    تاريخ التسجيل
    Jan 2008
    المشاركات
    77
    معدل تقييم المستوى
    0

    رد: How to build FTP site behind cisco router ?

    UR IP = الاي بية بتاعة الي في الشبكة
    Eslam.NET Servers
    Microsoft ISA Server & MikroTik OS
    www.eslam-servers.co.cc or eslam.homeip.net
    Contact: eslam.isa@hotmail.com

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

  1. مشاركات: 4
    آخر مشاركة: 18-06-2012, 09:15
  2. عاجل جدا المطلوب تصميم شبكة cisco voice site to site
    بواسطة haithem230 في المنتدى الأرشيف
    مشاركات: 2
    آخر مشاركة: 22-08-2010, 14:24
  3. معلومات عن cisco Router 7600 & Router 7200
    بواسطة hamdy_dc في المنتدى الأرشيف
    مشاركات: 13
    آخر مشاركة: 27-05-2009, 21:05
  4. Cisco IP Communicator ,Cisco Unified Video Advantagean router 2821
    بواسطة cc1397na في المنتدى الأرشيف
    مشاركات: 8
    آخر مشاركة: 11-04-2009, 20:12
  5. cisco site
    بواسطة Protocol في المنتدى الأرشيف
    مشاركات: 2
    آخر مشاركة: 27-02-2007, 15:23

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

المفضلات

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

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